@abaplint/cli 2.113.76 → 2.113.78
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/cli.js +74 -4
- package/package.json +3 -3
package/build/cli.js
CHANGED
|
@@ -10918,6 +10918,28 @@ exports.CatchSystemExceptions = CatchSystemExceptions;
|
|
|
10918
10918
|
|
|
10919
10919
|
/***/ }),
|
|
10920
10920
|
|
|
10921
|
+
/***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/chain.js":
|
|
10922
|
+
/*!*************************************************************************************!*\
|
|
10923
|
+
!*** ./node_modules/@abaplint/core/build/src/abap/2_statements/statements/chain.js ***!
|
|
10924
|
+
\*************************************************************************************/
|
|
10925
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
10926
|
+
|
|
10927
|
+
"use strict";
|
|
10928
|
+
|
|
10929
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
10930
|
+
exports.Chain = void 0;
|
|
10931
|
+
const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/core/build/src/abap/2_statements/combi.js");
|
|
10932
|
+
const version_1 = __webpack_require__(/*! ../../../version */ "./node_modules/@abaplint/core/build/src/version.js");
|
|
10933
|
+
class Chain {
|
|
10934
|
+
getMatcher() {
|
|
10935
|
+
return (0, combi_1.verNot)(version_1.Version.Cloud, "CHAIN");
|
|
10936
|
+
}
|
|
10937
|
+
}
|
|
10938
|
+
exports.Chain = Chain;
|
|
10939
|
+
//# sourceMappingURL=chain.js.map
|
|
10940
|
+
|
|
10941
|
+
/***/ }),
|
|
10942
|
+
|
|
10921
10943
|
/***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/check.js":
|
|
10922
10944
|
/*!*************************************************************************************!*\
|
|
10923
10945
|
!*** ./node_modules/@abaplint/core/build/src/abap/2_statements/statements/check.js ***!
|
|
@@ -12230,6 +12252,28 @@ exports.ElseIf = ElseIf;
|
|
|
12230
12252
|
|
|
12231
12253
|
/***/ }),
|
|
12232
12254
|
|
|
12255
|
+
/***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/end_chain.js":
|
|
12256
|
+
/*!*****************************************************************************************!*\
|
|
12257
|
+
!*** ./node_modules/@abaplint/core/build/src/abap/2_statements/statements/end_chain.js ***!
|
|
12258
|
+
\*****************************************************************************************/
|
|
12259
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
12260
|
+
|
|
12261
|
+
"use strict";
|
|
12262
|
+
|
|
12263
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
12264
|
+
exports.EndChain = void 0;
|
|
12265
|
+
const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/core/build/src/abap/2_statements/combi.js");
|
|
12266
|
+
const version_1 = __webpack_require__(/*! ../../../version */ "./node_modules/@abaplint/core/build/src/version.js");
|
|
12267
|
+
class EndChain {
|
|
12268
|
+
getMatcher() {
|
|
12269
|
+
return (0, combi_1.verNot)(version_1.Version.Cloud, "ENDCHAIN");
|
|
12270
|
+
}
|
|
12271
|
+
}
|
|
12272
|
+
exports.EndChain = EndChain;
|
|
12273
|
+
//# sourceMappingURL=end_chain.js.map
|
|
12274
|
+
|
|
12275
|
+
/***/ }),
|
|
12276
|
+
|
|
12233
12277
|
/***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/end_enhancement.js":
|
|
12234
12278
|
/*!***********************************************************************************************!*\
|
|
12235
12279
|
!*** ./node_modules/@abaplint/core/build/src/abap/2_statements/statements/end_enhancement.js ***!
|
|
@@ -13063,7 +13107,7 @@ const expressions_1 = __webpack_require__(/*! ../expressions */ "./node_modules/
|
|
|
13063
13107
|
const version_1 = __webpack_require__(/*! ../../../version */ "./node_modules/@abaplint/core/build/src/version.js");
|
|
13064
13108
|
class Field {
|
|
13065
13109
|
getMatcher() {
|
|
13066
|
-
const ret = (0, combi_1.seq)("FIELD", expressions_1.
|
|
13110
|
+
const ret = (0, combi_1.seq)("FIELD", expressions_1.FieldChain, (0, combi_1.opt)((0, combi_1.seq)("MODULE", expressions_1.FormName, (0, combi_1.opt)((0, combi_1.alt)("ON INPUT", "ON REQUEST")))));
|
|
13067
13111
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
13068
13112
|
}
|
|
13069
13113
|
}
|
|
@@ -14295,6 +14339,8 @@ __exportStar(__webpack_require__(/*! ./end_test_seam */ "./node_modules/@abaplin
|
|
|
14295
14339
|
__exportStar(__webpack_require__(/*! ./delete_memory */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/delete_memory.js"), exports);
|
|
14296
14340
|
__exportStar(__webpack_require__(/*! ./provide */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/provide.js"), exports);
|
|
14297
14341
|
__exportStar(__webpack_require__(/*! ./endexec */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/endexec.js"), exports);
|
|
14342
|
+
__exportStar(__webpack_require__(/*! ./chain */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/chain.js"), exports);
|
|
14343
|
+
__exportStar(__webpack_require__(/*! ./end_chain */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/end_chain.js"), exports);
|
|
14298
14344
|
__exportStar(__webpack_require__(/*! ./call_subscreen */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/call_subscreen.js"), exports);
|
|
14299
14345
|
__exportStar(__webpack_require__(/*! ./sort_dataset */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/sort_dataset.js"), exports);
|
|
14300
14346
|
__exportStar(__webpack_require__(/*! ./get_permissions */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/get_permissions.js"), exports);
|
|
@@ -15044,7 +15090,7 @@ const expressions_1 = __webpack_require__(/*! ../expressions */ "./node_modules/
|
|
|
15044
15090
|
const version_1 = __webpack_require__(/*! ../../../version */ "./node_modules/@abaplint/core/build/src/version.js");
|
|
15045
15091
|
class Module {
|
|
15046
15092
|
getMatcher() {
|
|
15047
|
-
const ret = (0, combi_1.seq)("MODULE", expressions_1.FormName, (0, combi_1.opt)((0, combi_1.alt)("INPUT", "OUTPUT")));
|
|
15093
|
+
const ret = (0, combi_1.seq)("MODULE", expressions_1.FormName, (0, combi_1.opt)((0, combi_1.alt)("INPUT", "OUTPUT", "ON CHAIN-REQUEST")));
|
|
15048
15094
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
15049
15095
|
}
|
|
15050
15096
|
}
|
|
@@ -18913,6 +18959,28 @@ exports.CatchSystemExceptions = CatchSystemExceptions;
|
|
|
18913
18959
|
|
|
18914
18960
|
/***/ }),
|
|
18915
18961
|
|
|
18962
|
+
/***/ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/chain.js":
|
|
18963
|
+
/*!*************************************************************************************!*\
|
|
18964
|
+
!*** ./node_modules/@abaplint/core/build/src/abap/3_structures/structures/chain.js ***!
|
|
18965
|
+
\*************************************************************************************/
|
|
18966
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
18967
|
+
|
|
18968
|
+
"use strict";
|
|
18969
|
+
|
|
18970
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
18971
|
+
exports.Chain = void 0;
|
|
18972
|
+
const Statements = __webpack_require__(/*! ../../2_statements/statements */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/index.js");
|
|
18973
|
+
const _combi_1 = __webpack_require__(/*! ./_combi */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/_combi.js");
|
|
18974
|
+
class Chain {
|
|
18975
|
+
getMatcher() {
|
|
18976
|
+
return (0, _combi_1.beginEnd)((0, _combi_1.sta)(Statements.Chain), (0, _combi_1.star)((0, _combi_1.alt)((0, _combi_1.sta)(Statements.Field), (0, _combi_1.sta)(Statements.Module))), (0, _combi_1.sta)(Statements.EndChain));
|
|
18977
|
+
}
|
|
18978
|
+
}
|
|
18979
|
+
exports.Chain = Chain;
|
|
18980
|
+
//# sourceMappingURL=chain.js.map
|
|
18981
|
+
|
|
18982
|
+
/***/ }),
|
|
18983
|
+
|
|
18916
18984
|
/***/ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/class_data.js":
|
|
18917
18985
|
/*!******************************************************************************************!*\
|
|
18918
18986
|
!*** ./node_modules/@abaplint/core/build/src/abap/3_structures/structures/class_data.js ***!
|
|
@@ -19139,9 +19207,10 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
19139
19207
|
exports.DynproLogic = void 0;
|
|
19140
19208
|
const Statements = __webpack_require__(/*! ../../2_statements/statements */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/index.js");
|
|
19141
19209
|
const _combi_1 = __webpack_require__(/*! ./_combi */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/_combi.js");
|
|
19210
|
+
const chain_1 = __webpack_require__(/*! ./chain */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/chain.js");
|
|
19142
19211
|
class DynproLogic {
|
|
19143
19212
|
getMatcher() {
|
|
19144
|
-
const pai = (0, _combi_1.star)((0, _combi_1.alt)((0, _combi_1.sta)(Statements.Module), (0, _combi_1.sta)(Statements.CallSubscreen)));
|
|
19213
|
+
const pai = (0, _combi_1.star)((0, _combi_1.alt)((0, _combi_1.sta)(Statements.Module), (0, _combi_1.sta)(Statements.Field), (0, _combi_1.sta)(Statements.CallSubscreen), (0, _combi_1.sub)(chain_1.Chain)));
|
|
19145
19214
|
const pbo = (0, _combi_1.star)((0, _combi_1.alt)((0, _combi_1.sta)(Statements.Module), (0, _combi_1.sta)(Statements.Field), (0, _combi_1.sta)(Statements.CallSubscreen)));
|
|
19146
19215
|
const pov = (0, _combi_1.star)((0, _combi_1.sta)(Statements.Field));
|
|
19147
19216
|
return (0, _combi_1.seq)((0, _combi_1.sta)(Statements.ProcessBeforeOutput), pbo, (0, _combi_1.sta)(Statements.ProcessAfterInput), pai, (0, _combi_1.opt)((0, _combi_1.seq)((0, _combi_1.sta)(Statements.ProcessOnValueRequest), pov)));
|
|
@@ -19378,6 +19447,7 @@ __exportStar(__webpack_require__(/*! ./catch */ "./node_modules/@abaplint/core/b
|
|
|
19378
19447
|
__exportStar(__webpack_require__(/*! ./class_data */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/class_data.js"), exports);
|
|
19379
19448
|
__exportStar(__webpack_require__(/*! ./class_definition */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/class_definition.js"), exports);
|
|
19380
19449
|
__exportStar(__webpack_require__(/*! ./class_global */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/class_global.js"), exports);
|
|
19450
|
+
__exportStar(__webpack_require__(/*! ./chain */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/chain.js"), exports);
|
|
19381
19451
|
__exportStar(__webpack_require__(/*! ./class_implementation */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/class_implementation.js"), exports);
|
|
19382
19452
|
__exportStar(__webpack_require__(/*! ./cleanup */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/cleanup.js"), exports);
|
|
19383
19453
|
__exportStar(__webpack_require__(/*! ./constants */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/constants.js"), exports);
|
|
@@ -53506,7 +53576,7 @@ class Registry {
|
|
|
53506
53576
|
}
|
|
53507
53577
|
static abaplintVersion() {
|
|
53508
53578
|
// magic, see build script "version.sh"
|
|
53509
|
-
return "2.113.
|
|
53579
|
+
return "2.113.78";
|
|
53510
53580
|
}
|
|
53511
53581
|
getDDICReferences() {
|
|
53512
53582
|
return this.ddicReferences;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.113.
|
|
3
|
+
"version": "2.113.78",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://abaplint.org",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@abaplint/core": "^2.113.
|
|
41
|
+
"@abaplint/core": "^2.113.78",
|
|
42
42
|
"@types/chai": "^4.3.20",
|
|
43
43
|
"@types/glob": "^8.1.0",
|
|
44
44
|
"@types/minimist": "^1.2.5",
|
|
45
45
|
"@types/mocha": "^10.0.10",
|
|
46
|
-
"@types/node": "^22.10.
|
|
46
|
+
"@types/node": "^22.10.2",
|
|
47
47
|
"@types/progress": "^2.0.7",
|
|
48
48
|
"chai": "^4.5.0",
|
|
49
49
|
"chalk": "^5.3.0",
|