@abaplint/transpiler-cli 2.13.63 → 2.13.64
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 +110 -0
- package/package.json +2 -2
package/build/bundle.js
CHANGED
|
@@ -110996,6 +110996,27 @@ exports.AtLineSelectionTranspiler = AtLineSelectionTranspiler;
|
|
|
110996
110996
|
|
|
110997
110997
|
/***/ },
|
|
110998
110998
|
|
|
110999
|
+
/***/ "./node_modules/@abaplint/transpiler/build/src/statements/at_pf.js"
|
|
111000
|
+
/*!*************************************************************************!*\
|
|
111001
|
+
!*** ./node_modules/@abaplint/transpiler/build/src/statements/at_pf.js ***!
|
|
111002
|
+
\*************************************************************************/
|
|
111003
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
111004
|
+
|
|
111005
|
+
"use strict";
|
|
111006
|
+
|
|
111007
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
111008
|
+
exports.AtPFTranspiler = void 0;
|
|
111009
|
+
const chunk_1 = __webpack_require__(/*! ../chunk */ "./node_modules/@abaplint/transpiler/build/src/chunk.js");
|
|
111010
|
+
class AtPFTranspiler {
|
|
111011
|
+
transpile(_node, _traversal) {
|
|
111012
|
+
return new chunk_1.Chunk(`throw new Error("AT PFnn, not supported, transpiler");`);
|
|
111013
|
+
}
|
|
111014
|
+
}
|
|
111015
|
+
exports.AtPFTranspiler = AtPFTranspiler;
|
|
111016
|
+
//# sourceMappingURL=at_pf.js.map
|
|
111017
|
+
|
|
111018
|
+
/***/ },
|
|
111019
|
+
|
|
110999
111020
|
/***/ "./node_modules/@abaplint/transpiler/build/src/statements/at_selection_screen.js"
|
|
111000
111021
|
/*!***************************************************************************************!*\
|
|
111001
111022
|
!*** ./node_modules/@abaplint/transpiler/build/src/statements/at_selection_screen.js ***!
|
|
@@ -111017,6 +111038,27 @@ exports.AtSelectionScreenTranspiler = AtSelectionScreenTranspiler;
|
|
|
111017
111038
|
|
|
111018
111039
|
/***/ },
|
|
111019
111040
|
|
|
111041
|
+
/***/ "./node_modules/@abaplint/transpiler/build/src/statements/at_user_command.js"
|
|
111042
|
+
/*!***********************************************************************************!*\
|
|
111043
|
+
!*** ./node_modules/@abaplint/transpiler/build/src/statements/at_user_command.js ***!
|
|
111044
|
+
\***********************************************************************************/
|
|
111045
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
111046
|
+
|
|
111047
|
+
"use strict";
|
|
111048
|
+
|
|
111049
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
111050
|
+
exports.AtUserCommandTranspiler = void 0;
|
|
111051
|
+
const chunk_1 = __webpack_require__(/*! ../chunk */ "./node_modules/@abaplint/transpiler/build/src/chunk.js");
|
|
111052
|
+
class AtUserCommandTranspiler {
|
|
111053
|
+
transpile(_node, _traversal) {
|
|
111054
|
+
return new chunk_1.Chunk(`throw new Error("AT USER-COMMAND, not supported, transpiler");`);
|
|
111055
|
+
}
|
|
111056
|
+
}
|
|
111057
|
+
exports.AtUserCommandTranspiler = AtUserCommandTranspiler;
|
|
111058
|
+
//# sourceMappingURL=at_user_command.js.map
|
|
111059
|
+
|
|
111060
|
+
/***/ },
|
|
111061
|
+
|
|
111020
111062
|
/***/ "./node_modules/@abaplint/transpiler/build/src/statements/authority_check.js"
|
|
111021
111063
|
/*!***********************************************************************************!*\
|
|
111022
111064
|
!*** ./node_modules/@abaplint/transpiler/build/src/statements/authority_check.js ***!
|
|
@@ -111487,6 +111529,27 @@ exports.CallScreenTranspiler = CallScreenTranspiler;
|
|
|
111487
111529
|
|
|
111488
111530
|
/***/ },
|
|
111489
111531
|
|
|
111532
|
+
/***/ "./node_modules/@abaplint/transpiler/build/src/statements/call_selection_screen.js"
|
|
111533
|
+
/*!*****************************************************************************************!*\
|
|
111534
|
+
!*** ./node_modules/@abaplint/transpiler/build/src/statements/call_selection_screen.js ***!
|
|
111535
|
+
\*****************************************************************************************/
|
|
111536
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
111537
|
+
|
|
111538
|
+
"use strict";
|
|
111539
|
+
|
|
111540
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
111541
|
+
exports.CallSelectionScreenTranspiler = void 0;
|
|
111542
|
+
const chunk_1 = __webpack_require__(/*! ../chunk */ "./node_modules/@abaplint/transpiler/build/src/chunk.js");
|
|
111543
|
+
class CallSelectionScreenTranspiler {
|
|
111544
|
+
transpile(_node, _traversal) {
|
|
111545
|
+
return new chunk_1.Chunk(`throw new Error("CALL SELECTION-SCREEN, not supported, transpiler");`);
|
|
111546
|
+
}
|
|
111547
|
+
}
|
|
111548
|
+
exports.CallSelectionScreenTranspiler = CallSelectionScreenTranspiler;
|
|
111549
|
+
//# sourceMappingURL=call_selection_screen.js.map
|
|
111550
|
+
|
|
111551
|
+
/***/ },
|
|
111552
|
+
|
|
111490
111553
|
/***/ "./node_modules/@abaplint/transpiler/build/src/statements/call_transaction.js"
|
|
111491
111554
|
/*!************************************************************************************!*\
|
|
111492
111555
|
!*** ./node_modules/@abaplint/transpiler/build/src/statements/call_transaction.js ***!
|
|
@@ -114699,6 +114762,27 @@ exports.GetTimeTranspiler = GetTimeTranspiler;
|
|
|
114699
114762
|
|
|
114700
114763
|
/***/ },
|
|
114701
114764
|
|
|
114765
|
+
/***/ "./node_modules/@abaplint/transpiler/build/src/statements/hide.js"
|
|
114766
|
+
/*!************************************************************************!*\
|
|
114767
|
+
!*** ./node_modules/@abaplint/transpiler/build/src/statements/hide.js ***!
|
|
114768
|
+
\************************************************************************/
|
|
114769
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
114770
|
+
|
|
114771
|
+
"use strict";
|
|
114772
|
+
|
|
114773
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
114774
|
+
exports.HideTranspiler = void 0;
|
|
114775
|
+
const chunk_1 = __webpack_require__(/*! ../chunk */ "./node_modules/@abaplint/transpiler/build/src/chunk.js");
|
|
114776
|
+
class HideTranspiler {
|
|
114777
|
+
transpile(_node, _traversal) {
|
|
114778
|
+
return new chunk_1.Chunk(`throw new Error("HIDE, not supported, transpiler");`);
|
|
114779
|
+
}
|
|
114780
|
+
}
|
|
114781
|
+
exports.HideTranspiler = HideTranspiler;
|
|
114782
|
+
//# sourceMappingURL=hide.js.map
|
|
114783
|
+
|
|
114784
|
+
/***/ },
|
|
114785
|
+
|
|
114702
114786
|
/***/ "./node_modules/@abaplint/transpiler/build/src/statements/if.js"
|
|
114703
114787
|
/*!**********************************************************************!*\
|
|
114704
114788
|
!*** ./node_modules/@abaplint/transpiler/build/src/statements/if.js ***!
|
|
@@ -114883,14 +114967,17 @@ __exportStar(__webpack_require__(/*! ./add */ "./node_modules/@abaplint/transpil
|
|
|
114883
114967
|
__exportStar(__webpack_require__(/*! ./append */ "./node_modules/@abaplint/transpiler/build/src/statements/append.js"), exports);
|
|
114884
114968
|
__exportStar(__webpack_require__(/*! ./assert */ "./node_modules/@abaplint/transpiler/build/src/statements/assert.js"), exports);
|
|
114885
114969
|
__exportStar(__webpack_require__(/*! ./assign */ "./node_modules/@abaplint/transpiler/build/src/statements/assign.js"), exports);
|
|
114970
|
+
__exportStar(__webpack_require__(/*! ./at_pf */ "./node_modules/@abaplint/transpiler/build/src/statements/at_pf.js"), exports);
|
|
114886
114971
|
__exportStar(__webpack_require__(/*! ./at_selection_screen */ "./node_modules/@abaplint/transpiler/build/src/statements/at_selection_screen.js"), exports);
|
|
114887
114972
|
__exportStar(__webpack_require__(/*! ./at */ "./node_modules/@abaplint/transpiler/build/src/statements/at.js"), exports);
|
|
114973
|
+
__exportStar(__webpack_require__(/*! ./at_user_command */ "./node_modules/@abaplint/transpiler/build/src/statements/at_user_command.js"), exports);
|
|
114888
114974
|
__exportStar(__webpack_require__(/*! ./authority_check */ "./node_modules/@abaplint/transpiler/build/src/statements/authority_check.js"), exports);
|
|
114889
114975
|
__exportStar(__webpack_require__(/*! ./break_id */ "./node_modules/@abaplint/transpiler/build/src/statements/break_id.js"), exports);
|
|
114890
114976
|
__exportStar(__webpack_require__(/*! ./break */ "./node_modules/@abaplint/transpiler/build/src/statements/break.js"), exports);
|
|
114891
114977
|
__exportStar(__webpack_require__(/*! ./call_function */ "./node_modules/@abaplint/transpiler/build/src/statements/call_function.js"), exports);
|
|
114892
114978
|
__exportStar(__webpack_require__(/*! ./call_kernel */ "./node_modules/@abaplint/transpiler/build/src/statements/call_kernel.js"), exports);
|
|
114893
114979
|
__exportStar(__webpack_require__(/*! ./call_screen */ "./node_modules/@abaplint/transpiler/build/src/statements/call_screen.js"), exports);
|
|
114980
|
+
__exportStar(__webpack_require__(/*! ./call_selection_screen */ "./node_modules/@abaplint/transpiler/build/src/statements/call_selection_screen.js"), exports);
|
|
114894
114981
|
__exportStar(__webpack_require__(/*! ./call_transaction */ "./node_modules/@abaplint/transpiler/build/src/statements/call_transaction.js"), exports);
|
|
114895
114982
|
__exportStar(__webpack_require__(/*! ./call_transformation */ "./node_modules/@abaplint/transpiler/build/src/statements/call_transformation.js"), exports);
|
|
114896
114983
|
__exportStar(__webpack_require__(/*! ./call */ "./node_modules/@abaplint/transpiler/build/src/statements/call.js"), exports);
|
|
@@ -114958,6 +115045,7 @@ __exportStar(__webpack_require__(/*! ./get_parameter */ "./node_modules/@abaplin
|
|
|
114958
115045
|
__exportStar(__webpack_require__(/*! ./get_reference */ "./node_modules/@abaplint/transpiler/build/src/statements/get_reference.js"), exports);
|
|
114959
115046
|
__exportStar(__webpack_require__(/*! ./get_run_time */ "./node_modules/@abaplint/transpiler/build/src/statements/get_run_time.js"), exports);
|
|
114960
115047
|
__exportStar(__webpack_require__(/*! ./get_time */ "./node_modules/@abaplint/transpiler/build/src/statements/get_time.js"), exports);
|
|
115048
|
+
__exportStar(__webpack_require__(/*! ./hide */ "./node_modules/@abaplint/transpiler/build/src/statements/hide.js"), exports);
|
|
114961
115049
|
__exportStar(__webpack_require__(/*! ./if */ "./node_modules/@abaplint/transpiler/build/src/statements/if.js"), exports);
|
|
114962
115050
|
__exportStar(__webpack_require__(/*! ./import */ "./node_modules/@abaplint/transpiler/build/src/statements/import.js"), exports);
|
|
114963
115051
|
__exportStar(__webpack_require__(/*! ./include */ "./node_modules/@abaplint/transpiler/build/src/statements/include.js"), exports);
|
|
@@ -114979,6 +115067,7 @@ __exportStar(__webpack_require__(/*! ./modify_internal */ "./node_modules/@abapl
|
|
|
114979
115067
|
__exportStar(__webpack_require__(/*! ./modify_screen */ "./node_modules/@abaplint/transpiler/build/src/statements/modify_screen.js"), exports);
|
|
114980
115068
|
__exportStar(__webpack_require__(/*! ./move_corresponding */ "./node_modules/@abaplint/transpiler/build/src/statements/move_corresponding.js"), exports);
|
|
114981
115069
|
__exportStar(__webpack_require__(/*! ./move */ "./node_modules/@abaplint/transpiler/build/src/statements/move.js"), exports);
|
|
115070
|
+
__exportStar(__webpack_require__(/*! ./new_page */ "./node_modules/@abaplint/transpiler/build/src/statements/new_page.js"), exports);
|
|
114982
115071
|
__exportStar(__webpack_require__(/*! ./open_cursor */ "./node_modules/@abaplint/transpiler/build/src/statements/open_cursor.js"), exports);
|
|
114983
115072
|
__exportStar(__webpack_require__(/*! ./open_dataset */ "./node_modules/@abaplint/transpiler/build/src/statements/open_dataset.js"), exports);
|
|
114984
115073
|
__exportStar(__webpack_require__(/*! ./overlay */ "./node_modules/@abaplint/transpiler/build/src/statements/overlay.js"), exports);
|
|
@@ -116393,6 +116482,27 @@ exports.MoveCorrespondingTranspiler = MoveCorrespondingTranspiler;
|
|
|
116393
116482
|
|
|
116394
116483
|
/***/ },
|
|
116395
116484
|
|
|
116485
|
+
/***/ "./node_modules/@abaplint/transpiler/build/src/statements/new_page.js"
|
|
116486
|
+
/*!****************************************************************************!*\
|
|
116487
|
+
!*** ./node_modules/@abaplint/transpiler/build/src/statements/new_page.js ***!
|
|
116488
|
+
\****************************************************************************/
|
|
116489
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
116490
|
+
|
|
116491
|
+
"use strict";
|
|
116492
|
+
|
|
116493
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
116494
|
+
exports.NewPageTranspiler = void 0;
|
|
116495
|
+
const chunk_1 = __webpack_require__(/*! ../chunk */ "./node_modules/@abaplint/transpiler/build/src/chunk.js");
|
|
116496
|
+
class NewPageTranspiler {
|
|
116497
|
+
transpile(_node, _traversal) {
|
|
116498
|
+
return new chunk_1.Chunk(`throw new Error("NEW-PAGE, not supported, transpiler");`);
|
|
116499
|
+
}
|
|
116500
|
+
}
|
|
116501
|
+
exports.NewPageTranspiler = NewPageTranspiler;
|
|
116502
|
+
//# sourceMappingURL=new_page.js.map
|
|
116503
|
+
|
|
116504
|
+
/***/ },
|
|
116505
|
+
|
|
116396
116506
|
/***/ "./node_modules/@abaplint/transpiler/build/src/statements/open_cursor.js"
|
|
116397
116507
|
/*!*******************************************************************************!*\
|
|
116398
116508
|
!*** ./node_modules/@abaplint/transpiler/build/src/statements/open_cursor.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.64",
|
|
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.64",
|
|
32
32
|
"@types/glob": "^8.1.0",
|
|
33
33
|
"@types/node": "^24.13.3",
|
|
34
34
|
"@types/progress": "^2.0.7",
|