@abaplint/transpiler-cli 2.11.66 → 2.11.67
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 +26 -1
- package/package.json +2 -2
package/build/bundle.js
CHANGED
|
@@ -86344,6 +86344,7 @@ __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);
|
|
86347
86348
|
__exportStar(__webpack_require__(/*! ./collect */ "./node_modules/@abaplint/transpiler/build/src/statements/collect.js"), exports);
|
|
86348
86349
|
__exportStar(__webpack_require__(/*! ./commit */ "./node_modules/@abaplint/transpiler/build/src/statements/commit.js"), exports);
|
|
86349
86350
|
__exportStar(__webpack_require__(/*! ./compute */ "./node_modules/@abaplint/transpiler/build/src/statements/compute.js"), exports);
|
|
@@ -89102,6 +89103,27 @@ exports.TablesTranspiler = TablesTranspiler;
|
|
|
89102
89103
|
|
|
89103
89104
|
/***/ }),
|
|
89104
89105
|
|
|
89106
|
+
/***/ "./node_modules/@abaplint/transpiler/build/src/statements/transfer.js":
|
|
89107
|
+
/*!****************************************************************************!*\
|
|
89108
|
+
!*** ./node_modules/@abaplint/transpiler/build/src/statements/transfer.js ***!
|
|
89109
|
+
\****************************************************************************/
|
|
89110
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
89111
|
+
|
|
89112
|
+
"use strict";
|
|
89113
|
+
|
|
89114
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
89115
|
+
exports.TransferTranspiler = void 0;
|
|
89116
|
+
const chunk_1 = __webpack_require__(/*! ../chunk */ "./node_modules/@abaplint/transpiler/build/src/chunk.js");
|
|
89117
|
+
class TransferTranspiler {
|
|
89118
|
+
transpile(_node, _traversal) {
|
|
89119
|
+
return new chunk_1.Chunk(`throw new Error("Transfer, not supported, transpiler");`);
|
|
89120
|
+
}
|
|
89121
|
+
}
|
|
89122
|
+
exports.TransferTranspiler = TransferTranspiler;
|
|
89123
|
+
//# sourceMappingURL=transfer.js.map
|
|
89124
|
+
|
|
89125
|
+
/***/ }),
|
|
89126
|
+
|
|
89105
89127
|
/***/ "./node_modules/@abaplint/transpiler/build/src/statements/translate.js":
|
|
89106
89128
|
/*!*****************************************************************************!*\
|
|
89107
89129
|
!*** ./node_modules/@abaplint/transpiler/build/src/statements/translate.js ***!
|
|
@@ -92210,8 +92232,8 @@ exports.config = {
|
|
|
92210
92232
|
"DTEL",
|
|
92211
92233
|
"ENHS",
|
|
92212
92234
|
"ENQU",
|
|
92213
|
-
"HTTP",
|
|
92214
92235
|
"FUGR",
|
|
92236
|
+
"HTTP",
|
|
92215
92237
|
"INTF",
|
|
92216
92238
|
"IWMO",
|
|
92217
92239
|
"IWOM",
|
|
@@ -92229,7 +92251,9 @@ exports.config = {
|
|
|
92229
92251
|
"SICF",
|
|
92230
92252
|
"SMIM",
|
|
92231
92253
|
"SMIM",
|
|
92254
|
+
"SPLO",
|
|
92232
92255
|
"SRFC",
|
|
92256
|
+
"SUSC",
|
|
92233
92257
|
"SUSH",
|
|
92234
92258
|
"SUSO",
|
|
92235
92259
|
"TABL",
|
|
@@ -92237,6 +92261,7 @@ exports.config = {
|
|
|
92237
92261
|
"TRAN",
|
|
92238
92262
|
"TTYP",
|
|
92239
92263
|
"TYPE",
|
|
92264
|
+
"VCLS",
|
|
92240
92265
|
"VIEW",
|
|
92241
92266
|
"W3MI",
|
|
92242
92267
|
"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.67",
|
|
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.67",
|
|
32
32
|
"@types/glob": "^8.1.0",
|
|
33
33
|
"@types/node": "^24.3.0",
|
|
34
34
|
"@types/progress": "^2.0.7",
|