@abaplint/transpiler-cli 2.11.66 → 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 +50 -1
- package/package.json +2 -2
package/build/bundle.js
CHANGED
|
@@ -86460,11 +86460,13 @@ __exportStar(__webpack_require__(/*! ./subtract */ "./node_modules/@abaplint/tra
|
|
|
86460
86460
|
__exportStar(__webpack_require__(/*! ./syntax_check */ "./node_modules/@abaplint/transpiler/build/src/statements/syntax_check.js"), exports);
|
|
86461
86461
|
__exportStar(__webpack_require__(/*! ./system_call */ "./node_modules/@abaplint/transpiler/build/src/statements/system_call.js"), exports);
|
|
86462
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);
|
|
86463
86464
|
__exportStar(__webpack_require__(/*! ./translate */ "./node_modules/@abaplint/transpiler/build/src/statements/translate.js"), exports);
|
|
86464
86465
|
__exportStar(__webpack_require__(/*! ./truncate_dataset */ "./node_modules/@abaplint/transpiler/build/src/statements/truncate_dataset.js"), exports);
|
|
86465
86466
|
__exportStar(__webpack_require__(/*! ./try */ "./node_modules/@abaplint/transpiler/build/src/statements/try.js"), exports);
|
|
86466
86467
|
__exportStar(__webpack_require__(/*! ./type_pools */ "./node_modules/@abaplint/transpiler/build/src/statements/type_pools.js"), exports);
|
|
86467
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);
|
|
86468
86470
|
__exportStar(__webpack_require__(/*! ./unassign */ "./node_modules/@abaplint/transpiler/build/src/statements/unassign.js"), exports);
|
|
86469
86471
|
__exportStar(__webpack_require__(/*! ./unpack */ "./node_modules/@abaplint/transpiler/build/src/statements/unpack.js"), exports);
|
|
86470
86472
|
__exportStar(__webpack_require__(/*! ./update_database */ "./node_modules/@abaplint/transpiler/build/src/statements/update_database.js"), exports);
|
|
@@ -89102,6 +89104,27 @@ exports.TablesTranspiler = TablesTranspiler;
|
|
|
89102
89104
|
|
|
89103
89105
|
/***/ }),
|
|
89104
89106
|
|
|
89107
|
+
/***/ "./node_modules/@abaplint/transpiler/build/src/statements/transfer.js":
|
|
89108
|
+
/*!****************************************************************************!*\
|
|
89109
|
+
!*** ./node_modules/@abaplint/transpiler/build/src/statements/transfer.js ***!
|
|
89110
|
+
\****************************************************************************/
|
|
89111
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
89112
|
+
|
|
89113
|
+
"use strict";
|
|
89114
|
+
|
|
89115
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
89116
|
+
exports.TransferTranspiler = void 0;
|
|
89117
|
+
const chunk_1 = __webpack_require__(/*! ../chunk */ "./node_modules/@abaplint/transpiler/build/src/chunk.js");
|
|
89118
|
+
class TransferTranspiler {
|
|
89119
|
+
transpile(_node, _traversal) {
|
|
89120
|
+
return new chunk_1.Chunk(`throw new Error("Transfer, not supported, transpiler");`);
|
|
89121
|
+
}
|
|
89122
|
+
}
|
|
89123
|
+
exports.TransferTranspiler = TransferTranspiler;
|
|
89124
|
+
//# sourceMappingURL=transfer.js.map
|
|
89125
|
+
|
|
89126
|
+
/***/ }),
|
|
89127
|
+
|
|
89105
89128
|
/***/ "./node_modules/@abaplint/transpiler/build/src/statements/translate.js":
|
|
89106
89129
|
/*!*****************************************************************************!*\
|
|
89107
89130
|
!*** ./node_modules/@abaplint/transpiler/build/src/statements/translate.js ***!
|
|
@@ -89227,6 +89250,29 @@ exports.TypePoolsTranspiler = TypePoolsTranspiler;
|
|
|
89227
89250
|
|
|
89228
89251
|
/***/ }),
|
|
89229
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
|
+
|
|
89230
89276
|
/***/ "./node_modules/@abaplint/transpiler/build/src/statements/unassign.js":
|
|
89231
89277
|
/*!****************************************************************************!*\
|
|
89232
89278
|
!*** ./node_modules/@abaplint/transpiler/build/src/statements/unassign.js ***!
|
|
@@ -92210,8 +92256,8 @@ exports.config = {
|
|
|
92210
92256
|
"DTEL",
|
|
92211
92257
|
"ENHS",
|
|
92212
92258
|
"ENQU",
|
|
92213
|
-
"HTTP",
|
|
92214
92259
|
"FUGR",
|
|
92260
|
+
"HTTP",
|
|
92215
92261
|
"INTF",
|
|
92216
92262
|
"IWMO",
|
|
92217
92263
|
"IWOM",
|
|
@@ -92229,7 +92275,9 @@ exports.config = {
|
|
|
92229
92275
|
"SICF",
|
|
92230
92276
|
"SMIM",
|
|
92231
92277
|
"SMIM",
|
|
92278
|
+
"SPLO",
|
|
92232
92279
|
"SRFC",
|
|
92280
|
+
"SUSC",
|
|
92233
92281
|
"SUSH",
|
|
92234
92282
|
"SUSO",
|
|
92235
92283
|
"TABL",
|
|
@@ -92237,6 +92285,7 @@ exports.config = {
|
|
|
92237
92285
|
"TRAN",
|
|
92238
92286
|
"TTYP",
|
|
92239
92287
|
"TYPE",
|
|
92288
|
+
"VCLS",
|
|
92240
92289
|
"VIEW",
|
|
92241
92290
|
"W3MI",
|
|
92242
92291
|
"XSLT",
|
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",
|