@abaplint/transpiler-cli 2.13.62 → 2.13.63
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 +22 -0
- package/package.json +2 -2
package/build/bundle.js
CHANGED
|
@@ -114998,6 +114998,7 @@ __exportStar(__webpack_require__(/*! ./receive */ "./node_modules/@abaplint/tran
|
|
|
114998
114998
|
__exportStar(__webpack_require__(/*! ./refresh */ "./node_modules/@abaplint/transpiler/build/src/statements/refresh.js"), exports);
|
|
114999
114999
|
__exportStar(__webpack_require__(/*! ./replace */ "./node_modules/@abaplint/transpiler/build/src/statements/replace.js"), exports);
|
|
115000
115000
|
__exportStar(__webpack_require__(/*! ./report */ "./node_modules/@abaplint/transpiler/build/src/statements/report.js"), exports);
|
|
115001
|
+
__exportStar(__webpack_require__(/*! ./reserve */ "./node_modules/@abaplint/transpiler/build/src/statements/reserve.js"), exports);
|
|
115001
115002
|
__exportStar(__webpack_require__(/*! ./retry */ "./node_modules/@abaplint/transpiler/build/src/statements/retry.js"), exports);
|
|
115002
115003
|
__exportStar(__webpack_require__(/*! ./return */ "./node_modules/@abaplint/transpiler/build/src/statements/return.js"), exports);
|
|
115003
115004
|
__exportStar(__webpack_require__(/*! ./rollback */ "./node_modules/@abaplint/transpiler/build/src/statements/rollback.js"), exports);
|
|
@@ -117483,6 +117484,27 @@ exports.ReportTranspiler = ReportTranspiler;
|
|
|
117483
117484
|
|
|
117484
117485
|
/***/ },
|
|
117485
117486
|
|
|
117487
|
+
/***/ "./node_modules/@abaplint/transpiler/build/src/statements/reserve.js"
|
|
117488
|
+
/*!***************************************************************************!*\
|
|
117489
|
+
!*** ./node_modules/@abaplint/transpiler/build/src/statements/reserve.js ***!
|
|
117490
|
+
\***************************************************************************/
|
|
117491
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
117492
|
+
|
|
117493
|
+
"use strict";
|
|
117494
|
+
|
|
117495
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
117496
|
+
exports.ReserveTranspiler = void 0;
|
|
117497
|
+
const chunk_1 = __webpack_require__(/*! ../chunk */ "./node_modules/@abaplint/transpiler/build/src/chunk.js");
|
|
117498
|
+
class ReserveTranspiler {
|
|
117499
|
+
transpile(_node, _traversal) {
|
|
117500
|
+
return new chunk_1.Chunk(`throw new Error("RESERVE, not supported, transpiler");`);
|
|
117501
|
+
}
|
|
117502
|
+
}
|
|
117503
|
+
exports.ReserveTranspiler = ReserveTranspiler;
|
|
117504
|
+
//# sourceMappingURL=reserve.js.map
|
|
117505
|
+
|
|
117506
|
+
/***/ },
|
|
117507
|
+
|
|
117486
117508
|
/***/ "./node_modules/@abaplint/transpiler/build/src/statements/retry.js"
|
|
117487
117509
|
/*!*************************************************************************!*\
|
|
117488
117510
|
!*** ./node_modules/@abaplint/transpiler/build/src/statements/retry.js ***!
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.63",
|
|
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.120.37",
|
|
31
|
-
"@abaplint/transpiler": "^2.13.
|
|
31
|
+
"@abaplint/transpiler": "^2.13.63",
|
|
32
32
|
"@types/glob": "^8.1.0",
|
|
33
33
|
"@types/node": "^24.13.3",
|
|
34
34
|
"@types/progress": "^2.0.7",
|