@abaplint/transpiler-cli 2.11.67 → 2.11.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/bundle.js +25 -1
- package/package.json +2 -2
package/build/bundle.js
CHANGED
|
@@ -86344,7 +86344,6 @@ __exportStar(__webpack_require__(/*! ./class_local_friends */ "./node_modules/@a
|
|
|
86344
86344
|
__exportStar(__webpack_require__(/*! ./clear */ "./node_modules/@abaplint/transpiler/build/src/statements/clear.js"), exports);
|
|
86345
86345
|
__exportStar(__webpack_require__(/*! ./close_cursor */ "./node_modules/@abaplint/transpiler/build/src/statements/close_cursor.js"), exports);
|
|
86346
86346
|
__exportStar(__webpack_require__(/*! ./close_dataset */ "./node_modules/@abaplint/transpiler/build/src/statements/close_dataset.js"), exports);
|
|
86347
|
-
__exportStar(__webpack_require__(/*! ./transfer */ "./node_modules/@abaplint/transpiler/build/src/statements/transfer.js"), exports);
|
|
86348
86347
|
__exportStar(__webpack_require__(/*! ./collect */ "./node_modules/@abaplint/transpiler/build/src/statements/collect.js"), exports);
|
|
86349
86348
|
__exportStar(__webpack_require__(/*! ./commit */ "./node_modules/@abaplint/transpiler/build/src/statements/commit.js"), exports);
|
|
86350
86349
|
__exportStar(__webpack_require__(/*! ./compute */ "./node_modules/@abaplint/transpiler/build/src/statements/compute.js"), exports);
|
|
@@ -86461,11 +86460,13 @@ __exportStar(__webpack_require__(/*! ./subtract */ "./node_modules/@abaplint/tra
|
|
|
86461
86460
|
__exportStar(__webpack_require__(/*! ./syntax_check */ "./node_modules/@abaplint/transpiler/build/src/statements/syntax_check.js"), exports);
|
|
86462
86461
|
__exportStar(__webpack_require__(/*! ./system_call */ "./node_modules/@abaplint/transpiler/build/src/statements/system_call.js"), exports);
|
|
86463
86462
|
__exportStar(__webpack_require__(/*! ./tables */ "./node_modules/@abaplint/transpiler/build/src/statements/tables.js"), exports);
|
|
86463
|
+
__exportStar(__webpack_require__(/*! ./transfer */ "./node_modules/@abaplint/transpiler/build/src/statements/transfer.js"), exports);
|
|
86464
86464
|
__exportStar(__webpack_require__(/*! ./translate */ "./node_modules/@abaplint/transpiler/build/src/statements/translate.js"), exports);
|
|
86465
86465
|
__exportStar(__webpack_require__(/*! ./truncate_dataset */ "./node_modules/@abaplint/transpiler/build/src/statements/truncate_dataset.js"), exports);
|
|
86466
86466
|
__exportStar(__webpack_require__(/*! ./try */ "./node_modules/@abaplint/transpiler/build/src/statements/try.js"), exports);
|
|
86467
86467
|
__exportStar(__webpack_require__(/*! ./type_pools */ "./node_modules/@abaplint/transpiler/build/src/statements/type_pools.js"), exports);
|
|
86468
86468
|
__exportStar(__webpack_require__(/*! ./type */ "./node_modules/@abaplint/transpiler/build/src/statements/type.js"), exports);
|
|
86469
|
+
__exportStar(__webpack_require__(/*! ./uline */ "./node_modules/@abaplint/transpiler/build/src/statements/uline.js"), exports);
|
|
86469
86470
|
__exportStar(__webpack_require__(/*! ./unassign */ "./node_modules/@abaplint/transpiler/build/src/statements/unassign.js"), exports);
|
|
86470
86471
|
__exportStar(__webpack_require__(/*! ./unpack */ "./node_modules/@abaplint/transpiler/build/src/statements/unpack.js"), exports);
|
|
86471
86472
|
__exportStar(__webpack_require__(/*! ./update_database */ "./node_modules/@abaplint/transpiler/build/src/statements/update_database.js"), exports);
|
|
@@ -89249,6 +89250,29 @@ exports.TypePoolsTranspiler = TypePoolsTranspiler;
|
|
|
89249
89250
|
|
|
89250
89251
|
/***/ }),
|
|
89251
89252
|
|
|
89253
|
+
/***/ "./node_modules/@abaplint/transpiler/build/src/statements/uline.js":
|
|
89254
|
+
/*!*************************************************************************!*\
|
|
89255
|
+
!*** ./node_modules/@abaplint/transpiler/build/src/statements/uline.js ***!
|
|
89256
|
+
\*************************************************************************/
|
|
89257
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
89258
|
+
|
|
89259
|
+
"use strict";
|
|
89260
|
+
|
|
89261
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
89262
|
+
exports.UlineTranspiler = void 0;
|
|
89263
|
+
const chunk_1 = __webpack_require__(/*! ../chunk */ "./node_modules/@abaplint/transpiler/build/src/chunk.js");
|
|
89264
|
+
class UlineTranspiler {
|
|
89265
|
+
transpile(_node, _traversal) {
|
|
89266
|
+
const chunk = new chunk_1.Chunk();
|
|
89267
|
+
chunk.appendString(`abap.statements.write("--------------------------------------------------", {"newLine": true});`);
|
|
89268
|
+
return chunk;
|
|
89269
|
+
}
|
|
89270
|
+
}
|
|
89271
|
+
exports.UlineTranspiler = UlineTranspiler;
|
|
89272
|
+
//# sourceMappingURL=uline.js.map
|
|
89273
|
+
|
|
89274
|
+
/***/ }),
|
|
89275
|
+
|
|
89252
89276
|
/***/ "./node_modules/@abaplint/transpiler/build/src/statements/unassign.js":
|
|
89253
89277
|
/*!****************************************************************************!*\
|
|
89254
89278
|
!*** ./node_modules/@abaplint/transpiler/build/src/statements/unassign.js ***!
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.68",
|
|
4
4
|
"description": "Transpiler - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@abaplint/core": "^2.113.193",
|
|
31
|
-
"@abaplint/transpiler": "^2.11.
|
|
31
|
+
"@abaplint/transpiler": "^2.11.68",
|
|
32
32
|
"@types/glob": "^8.1.0",
|
|
33
33
|
"@types/node": "^24.3.0",
|
|
34
34
|
"@types/progress": "^2.0.7",
|