@abaplint/cli 2.119.3 → 2.119.5
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 +40 -1
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -32804,6 +32804,42 @@ exports.GetParameter = GetParameter;
|
|
|
32804
32804
|
|
|
32805
32805
|
/***/ },
|
|
32806
32806
|
|
|
32807
|
+
/***/ "./node_modules/@abaplint/core/build/src/abap/5_syntax/statements/get_pf_status.js"
|
|
32808
|
+
/*!*****************************************************************************************!*\
|
|
32809
|
+
!*** ./node_modules/@abaplint/core/build/src/abap/5_syntax/statements/get_pf_status.js ***!
|
|
32810
|
+
\*****************************************************************************************/
|
|
32811
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
32812
|
+
|
|
32813
|
+
"use strict";
|
|
32814
|
+
|
|
32815
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32816
|
+
exports.GetPFStatus = void 0;
|
|
32817
|
+
const Expressions = __webpack_require__(/*! ../../2_statements/expressions */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/index.js");
|
|
32818
|
+
const source_1 = __webpack_require__(/*! ../expressions/source */ "./node_modules/@abaplint/core/build/src/abap/5_syntax/expressions/source.js");
|
|
32819
|
+
const target_1 = __webpack_require__(/*! ../expressions/target */ "./node_modules/@abaplint/core/build/src/abap/5_syntax/expressions/target.js");
|
|
32820
|
+
const basic_1 = __webpack_require__(/*! ../../types/basic */ "./node_modules/@abaplint/core/build/src/abap/types/basic/index.js");
|
|
32821
|
+
const inline_data_1 = __webpack_require__(/*! ../expressions/inline_data */ "./node_modules/@abaplint/core/build/src/abap/5_syntax/expressions/inline_data.js");
|
|
32822
|
+
class GetPFStatus {
|
|
32823
|
+
runSyntax(node, input) {
|
|
32824
|
+
for (const s of node.findDirectExpressions(Expressions.Source)) {
|
|
32825
|
+
source_1.Source.runSyntax(s, input);
|
|
32826
|
+
}
|
|
32827
|
+
for (const t of node.findDirectExpressions(Expressions.Target)) {
|
|
32828
|
+
const inline = t === null || t === void 0 ? void 0 : t.findDirectExpression(Expressions.InlineData);
|
|
32829
|
+
if (inline) {
|
|
32830
|
+
inline_data_1.InlineData.runSyntax(inline, input, basic_1.VoidType.get("GET_PF_STATUS"));
|
|
32831
|
+
}
|
|
32832
|
+
else {
|
|
32833
|
+
target_1.Target.runSyntax(t, input);
|
|
32834
|
+
}
|
|
32835
|
+
}
|
|
32836
|
+
}
|
|
32837
|
+
}
|
|
32838
|
+
exports.GetPFStatus = GetPFStatus;
|
|
32839
|
+
//# sourceMappingURL=get_pf_status.js.map
|
|
32840
|
+
|
|
32841
|
+
/***/ },
|
|
32842
|
+
|
|
32807
32843
|
/***/ "./node_modules/@abaplint/core/build/src/abap/5_syntax/statements/get_reference.js"
|
|
32808
32844
|
/*!*****************************************************************************************!*\
|
|
32809
32845
|
!*** ./node_modules/@abaplint/core/build/src/abap/5_syntax/statements/get_reference.js ***!
|
|
@@ -36621,6 +36657,7 @@ const read_report_1 = __webpack_require__(/*! ./statements/read_report */ "./nod
|
|
|
36621
36657
|
const authority_check_1 = __webpack_require__(/*! ./statements/authority_check */ "./node_modules/@abaplint/core/build/src/abap/5_syntax/statements/authority_check.js");
|
|
36622
36658
|
const insert_report_1 = __webpack_require__(/*! ./statements/insert_report */ "./node_modules/@abaplint/core/build/src/abap/5_syntax/statements/insert_report.js");
|
|
36623
36659
|
const get_reference_1 = __webpack_require__(/*! ./statements/get_reference */ "./node_modules/@abaplint/core/build/src/abap/5_syntax/statements/get_reference.js");
|
|
36660
|
+
const get_pf_status_1 = __webpack_require__(/*! ./statements/get_pf_status */ "./node_modules/@abaplint/core/build/src/abap/5_syntax/statements/get_pf_status.js");
|
|
36624
36661
|
const insert_database_1 = __webpack_require__(/*! ./statements/insert_database */ "./node_modules/@abaplint/core/build/src/abap/5_syntax/statements/insert_database.js");
|
|
36625
36662
|
const delete_database_1 = __webpack_require__(/*! ./statements/delete_database */ "./node_modules/@abaplint/core/build/src/abap/5_syntax/statements/delete_database.js");
|
|
36626
36663
|
const import_dynpro_1 = __webpack_require__(/*! ./statements/import_dynpro */ "./node_modules/@abaplint/core/build/src/abap/5_syntax/statements/import_dynpro.js");
|
|
@@ -36775,6 +36812,7 @@ if (Object.keys(map).length === 0) {
|
|
|
36775
36812
|
addToMap(new if_1.If());
|
|
36776
36813
|
addToMap(new log_point_1.LogPoint());
|
|
36777
36814
|
addToMap(new while_1.While());
|
|
36815
|
+
addToMap(new get_pf_status_1.GetPFStatus());
|
|
36778
36816
|
addToMap(new with_1.With());
|
|
36779
36817
|
addToMap(new with_loop_1.WithLoop());
|
|
36780
36818
|
addToMap(new call_transformation_1.CallTransformation());
|
|
@@ -37046,6 +37084,7 @@ class SyntaxLogic {
|
|
|
37046
37084
|
isSelectionEventBoundary(statement) {
|
|
37047
37085
|
return stuff_1.SELECTION_EVENTS.some(event => statement instanceof event)
|
|
37048
37086
|
|| statement instanceof Statements.Form
|
|
37087
|
+
|| statement instanceof Statements.Module
|
|
37049
37088
|
|| statement instanceof Statements.FunctionModule;
|
|
37050
37089
|
}
|
|
37051
37090
|
isSelectionEventBoundaryStructure(structure) {
|
|
@@ -56177,7 +56216,7 @@ class Registry {
|
|
|
56177
56216
|
}
|
|
56178
56217
|
static abaplintVersion() {
|
|
56179
56218
|
// magic, see build script "version.sh"
|
|
56180
|
-
return "2.119.
|
|
56219
|
+
return "2.119.5";
|
|
56181
56220
|
}
|
|
56182
56221
|
getDDICReferences() {
|
|
56183
56222
|
return this.ddicReferences;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.119.
|
|
3
|
+
"version": "2.119.5",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://abaplint.org",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@abaplint/core": "^2.119.
|
|
41
|
+
"@abaplint/core": "^2.119.5",
|
|
42
42
|
"@types/chai": "^4.3.20",
|
|
43
43
|
"@types/minimist": "^1.2.5",
|
|
44
44
|
"@types/mocha": "^10.0.10",
|