@abaplint/cli 2.113.60 → 2.113.62
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 +52 -18
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -7539,7 +7539,8 @@ class SelectLoop extends combi_1.Expression {
|
|
|
7539
7539
|
const into = (0, combi_1.altPrio)(sql_into_structure_1.SQLIntoStructure, _1.SQLIntoList);
|
|
7540
7540
|
const perm = (0, combi_1.per)(_1.SQLFrom, where, sql_up_to_1.SQLUpTo, sql_order_by_1.SQLOrderBy, sql_having_1.SQLHaving, _1.SQLClient, bypass, _1.SQLGroupBy, _1.SQLForAllEntries, (0, combi_1.alt)(tab, into, packTab));
|
|
7541
7541
|
const strict = (0, combi_1.seq)(_1.SQLFrom, (0, combi_1.ver)(version_1.Version.v750, sql_fields_loop_1.SQLFieldsLoop), (0, combi_1.optPrio)(_1.SQLForAllEntries), (0, combi_1.optPrio)((0, combi_1.seq)(where, (0, combi_1.optPrio)(sql_order_by_1.SQLOrderBy), into, (0, combi_1.optPrio)(sql_up_to_1.SQLUpTo))));
|
|
7542
|
-
const
|
|
7542
|
+
const aggr = (0, combi_1.seq)(_1.SQLAggregation, into, _1.SQLFrom, where, _1.SQLGroupBy);
|
|
7543
|
+
const ret = (0, combi_1.seq)("SELECT", (0, combi_1.altPrio)((0, combi_1.seq)((0, combi_1.optPrio)("DISTINCT"), sql_field_list_loop_1.SQLFieldListLoop, perm), strict, aggr), (0, combi_1.optPrio)(sql_hints_1.SQLHints));
|
|
7543
7544
|
return ret;
|
|
7544
7545
|
}
|
|
7545
7546
|
}
|
|
@@ -9625,7 +9626,7 @@ class WriteOffsetLength extends combi_1.Expression {
|
|
|
9625
9626
|
getRunnable() {
|
|
9626
9627
|
const post = (0, combi_1.seq)((0, combi_1.alt)(simple_field_chain2_1.SimpleFieldChain2, (0, combi_1.regex)(/^[\d]+$/), (0, combi_1.regex)(/^\*$/)), (0, combi_1.alt)((0, combi_1.tok)(tokens_1.ParenRightW), (0, combi_1.tok)(tokens_1.ParenRight)));
|
|
9627
9628
|
const wlength = (0, combi_1.seq)((0, combi_1.tok)(tokens_1.WParenLeft), post);
|
|
9628
|
-
const length = (0, combi_1.seq)((0, combi_1.tok)(tokens_1.ParenLeft), post);
|
|
9629
|
+
const length = (0, combi_1.seq)((0, combi_1.alt)((0, combi_1.tok)(tokens_1.WParenLeft), (0, combi_1.tok)(tokens_1.ParenLeft)), post);
|
|
9629
9630
|
const complex = (0, combi_1.alt)(wlength, (0, combi_1.seq)((0, combi_1.alt)(simple_field_chain2_1.SimpleFieldChain2, (0, combi_1.regex)(/^\/?[\w\d]+$/), "/"), (0, combi_1.opt)(length)));
|
|
9630
9631
|
const at = (0, combi_1.seq)((0, combi_1.opt)("AT"), complex);
|
|
9631
9632
|
return at;
|
|
@@ -10040,7 +10041,8 @@ const expressions_1 = __webpack_require__(/*! ../expressions */ "./node_modules/
|
|
|
10040
10041
|
class Add {
|
|
10041
10042
|
getMatcher() {
|
|
10042
10043
|
const to = (0, combi_1.seq)("TO", expressions_1.Target);
|
|
10043
|
-
const
|
|
10044
|
+
const giving = (0, combi_1.seq)("GIVING", expressions_1.FieldSub);
|
|
10045
|
+
const then = (0, combi_1.seq)("THEN", expressions_1.FieldSub, "UNTIL", expressions_1.FieldSub, (0, combi_1.alt)(giving, to));
|
|
10044
10046
|
const ret = (0, combi_1.seq)("ADD", expressions_1.Source, (0, combi_1.altPrio)(to, then));
|
|
10045
10047
|
return ret;
|
|
10046
10048
|
}
|
|
@@ -10300,6 +10302,28 @@ exports.AtLineSelection = AtLineSelection;
|
|
|
10300
10302
|
|
|
10301
10303
|
/***/ }),
|
|
10302
10304
|
|
|
10305
|
+
/***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/at_pf.js":
|
|
10306
|
+
/*!*************************************************************************************!*\
|
|
10307
|
+
!*** ./node_modules/@abaplint/core/build/src/abap/2_statements/statements/at_pf.js ***!
|
|
10308
|
+
\*************************************************************************************/
|
|
10309
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
10310
|
+
|
|
10311
|
+
"use strict";
|
|
10312
|
+
|
|
10313
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
10314
|
+
exports.AtPF = void 0;
|
|
10315
|
+
const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/core/build/src/abap/2_statements/combi.js");
|
|
10316
|
+
const version_1 = __webpack_require__(/*! ../../../version */ "./node_modules/@abaplint/core/build/src/version.js");
|
|
10317
|
+
class AtPF {
|
|
10318
|
+
getMatcher() {
|
|
10319
|
+
return (0, combi_1.verNot)(version_1.Version.Cloud, (0, combi_1.seq)("AT", (0, combi_1.regex)(/^PF\d\d?$/i)));
|
|
10320
|
+
}
|
|
10321
|
+
}
|
|
10322
|
+
exports.AtPF = AtPF;
|
|
10323
|
+
//# sourceMappingURL=at_pf.js.map
|
|
10324
|
+
|
|
10325
|
+
/***/ }),
|
|
10326
|
+
|
|
10303
10327
|
/***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/at_selection_screen.js":
|
|
10304
10328
|
/*!***************************************************************************************************!*\
|
|
10305
10329
|
!*** ./node_modules/@abaplint/core/build/src/abap/2_statements/statements/at_selection_screen.js ***!
|
|
@@ -12001,8 +12025,9 @@ class Describe {
|
|
|
12001
12025
|
const index = (0, combi_1.seq)("INDEX", expressions_1.Source);
|
|
12002
12026
|
const top = (0, combi_1.seq)("TOP-LINES", expressions_1.Target);
|
|
12003
12027
|
const lineSize = (0, combi_1.seq)("LINE-SIZE", expressions_1.Target);
|
|
12028
|
+
const lineCount = (0, combi_1.seq)("LINE-COUNT", expressions_1.Target);
|
|
12004
12029
|
const first = (0, combi_1.seq)("FIRST-LINE", expressions_1.Target);
|
|
12005
|
-
const list = (0, combi_1.seq)("LIST", (0, combi_1.per)(lines, pages, index, line, page, top, first, lineSize));
|
|
12030
|
+
const list = (0, combi_1.seq)("LIST", (0, combi_1.per)(lines, pages, index, line, page, top, first, lineSize, lineCount));
|
|
12006
12031
|
const ret = (0, combi_1.seq)("DESCRIBE", (0, combi_1.altPrio)(table, field, distance, list));
|
|
12007
12032
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
12008
12033
|
}
|
|
@@ -12884,7 +12909,7 @@ class Export {
|
|
|
12884
12909
|
const database = (0, combi_1.seq)("DATABASE", cluster, (0, combi_1.per)(from, client, id, using));
|
|
12885
12910
|
const target = (0, combi_1.alt)(buffer, memory, database, table, shared);
|
|
12886
12911
|
const left = (0, combi_1.alt)(expressions_1.FieldSub, expressions_1.FieldSymbol);
|
|
12887
|
-
const source = (0, combi_1.alt)((0, combi_1.plus)((0, combi_1.altPrio)(expressions_1.ParameterS, (0, combi_1.seq)(left, from), left)), expressions_1.Dynamic);
|
|
12912
|
+
const source = (0, combi_1.alt)((0, combi_1.plus)((0, combi_1.altPrio)(expressions_1.ParameterS, (0, combi_1.seq)(left, from), left)), expressions_1.Dynamic, expressions_1.Constant);
|
|
12888
12913
|
const compression = (0, combi_1.seq)("COMPRESSION", (0, combi_1.alt)("ON", "OFF"));
|
|
12889
12914
|
const hint = (0, combi_1.seq)("CODE PAGE HINT", expressions_1.Source);
|
|
12890
12915
|
return (0, combi_1.seq)("EXPORT", source, "TO", target, (0, combi_1.opt)(compression), (0, combi_1.opt)(hint));
|
|
@@ -13747,7 +13772,7 @@ class Import {
|
|
|
13747
13772
|
const using = (0, combi_1.seq)("USING", expressions_1.Source);
|
|
13748
13773
|
const cluster = (0, combi_1.seq)(expressions_1.NamespaceSimpleName, (0, combi_1.tok)(tokens_1.ParenLeft), (0, combi_1.regex)(/^[\w$%\^]{2}$/), (0, combi_1.tok)(tokens_1.ParenRightW));
|
|
13749
13774
|
const buffer = (0, combi_1.seq)("DATA BUFFER", expressions_1.Source);
|
|
13750
|
-
const memory = (0, combi_1.seq)("MEMORY ID", expressions_1.Source);
|
|
13775
|
+
const memory = (0, combi_1.seq)("MEMORY", (0, combi_1.opt)((0, combi_1.seq)("ID", expressions_1.Source)));
|
|
13751
13776
|
const table = (0, combi_1.seq)("INTERNAL TABLE", expressions_1.Source);
|
|
13752
13777
|
const shared = (0, combi_1.seq)((0, combi_1.alt)("SHARED MEMORY", "SHARED BUFFER"), cluster, (0, combi_1.per)(dto, client, id));
|
|
13753
13778
|
const database = (0, combi_1.seq)("DATABASE", cluster, (0, combi_1.per)(dto, client, id, using));
|
|
@@ -14076,6 +14101,7 @@ __exportStar(__webpack_require__(/*! ./export */ "./node_modules/@abaplint/core/
|
|
|
14076
14101
|
__exportStar(__webpack_require__(/*! ./import */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/import.js"), exports);
|
|
14077
14102
|
__exportStar(__webpack_require__(/*! ./at_first */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/at_first.js"), exports);
|
|
14078
14103
|
__exportStar(__webpack_require__(/*! ./at_last */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/at_last.js"), exports);
|
|
14104
|
+
__exportStar(__webpack_require__(/*! ./at_pf */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/at_pf.js"), exports);
|
|
14079
14105
|
__exportStar(__webpack_require__(/*! ./at */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/at.js"), exports);
|
|
14080
14106
|
__exportStar(__webpack_require__(/*! ./put */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/put.js"), exports);
|
|
14081
14107
|
__exportStar(__webpack_require__(/*! ./endat */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/endat.js"), exports);
|
|
@@ -14211,8 +14237,10 @@ const version_1 = __webpack_require__(/*! ../../../version */ "./node_modules/@a
|
|
|
14211
14237
|
class Infotypes {
|
|
14212
14238
|
getMatcher() {
|
|
14213
14239
|
const occurs = (0, combi_1.seq)("OCCURS", expressions_1.Constant);
|
|
14214
|
-
const name = (0, combi_1.seq)("NAME", expressions_1.
|
|
14215
|
-
const
|
|
14240
|
+
const name = (0, combi_1.seq)("NAME", expressions_1.FieldSub);
|
|
14241
|
+
const mode = "MODE N";
|
|
14242
|
+
const valid = (0, combi_1.seq)("VALID FROM", expressions_1.Source, "TO", expressions_1.Source);
|
|
14243
|
+
const ret = (0, combi_1.seq)("INFOTYPES", (0, combi_1.regex)(/^\d\d\d\d$/), (0, combi_1.optPrio)(valid), (0, combi_1.optPrio)(name), (0, combi_1.optPrio)(occurs), (0, combi_1.optPrio)(mode));
|
|
14216
14244
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
14217
14245
|
}
|
|
14218
14246
|
}
|
|
@@ -15264,7 +15292,7 @@ class Parameter {
|
|
|
15264
15292
|
const length = (0, combi_1.seq)("LENGTH", expressions_1.Constant);
|
|
15265
15293
|
const match = (0, combi_1.seq)("MATCHCODE OBJECT", expressions_1.Field);
|
|
15266
15294
|
const decimals = (0, combi_1.seq)("DECIMALS", expressions_1.Source);
|
|
15267
|
-
const forTable = (0, combi_1.seq)("FOR TABLE", expressions_1.DatabaseTable);
|
|
15295
|
+
const forTable = (0, combi_1.seq)("FOR TABLE", expressions_1.DatabaseTable, (0, combi_1.opt)("VALUE-REQUEST"));
|
|
15268
15296
|
const perm = (0, combi_1.per)(type, def, "OBLIGATORY", match, cmd, length, decimals, radio, memory, modif, listbox, visible, forTable, "VALUE CHECK", "NO-DISPLAY", "AS CHECKBOX", "LOWER CASE");
|
|
15269
15297
|
const ret = (0, combi_1.seq)(para, expressions_1.FieldSub, (0, combi_1.opt)(expressions_1.FieldLength), (0, combi_1.opt)(perm));
|
|
15270
15298
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
@@ -15402,7 +15430,7 @@ class Program {
|
|
|
15402
15430
|
const message = (0, combi_1.seq)("MESSAGE-ID", expressions_1.MessageClass);
|
|
15403
15431
|
const size = (0, combi_1.seq)("LINE-SIZE", expressions_1.Source);
|
|
15404
15432
|
const heading = (0, combi_1.str)("NO STANDARD PAGE HEADING");
|
|
15405
|
-
const line = (0, combi_1.seq)("LINE-COUNT", expressions_1.Source);
|
|
15433
|
+
const line = (0, combi_1.seq)("LINE-COUNT", expressions_1.Source, (0, combi_1.opt)(expressions_1.FieldLength));
|
|
15406
15434
|
const options = (0, combi_1.per)(message, size, heading, line);
|
|
15407
15435
|
const ret = (0, combi_1.seq)("PROGRAM", (0, combi_1.opt)(expressions_1.ReportName), (0, combi_1.opt)(options));
|
|
15408
15436
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
@@ -15624,7 +15652,7 @@ const expressions_1 = __webpack_require__(/*! ../expressions */ "./node_modules/
|
|
|
15624
15652
|
const version_1 = __webpack_require__(/*! ../../../version */ "./node_modules/@abaplint/core/build/src/version.js");
|
|
15625
15653
|
class ReadDataset {
|
|
15626
15654
|
getMatcher() {
|
|
15627
|
-
const ret = (0, combi_1.seq)("READ DATASET", expressions_1.Source, "INTO", expressions_1.Target, (0, combi_1.opt)((0, combi_1.seq)("MAXIMUM LENGTH", expressions_1.Source)
|
|
15655
|
+
const ret = (0, combi_1.seq)("READ DATASET", expressions_1.Source, "INTO", expressions_1.Target, (0, combi_1.opt)((0, combi_1.per)((0, combi_1.seq)("MAXIMUM LENGTH", expressions_1.Source), (0, combi_1.seq)("ACTUAL LENGTH", expressions_1.Target), (0, combi_1.seq)("LENGTH", expressions_1.Target))));
|
|
15628
15656
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
15629
15657
|
}
|
|
15630
15658
|
}
|
|
@@ -16264,10 +16292,13 @@ class SelectionScreen {
|
|
|
16264
16292
|
const pos = (0, combi_1.seq)("POSITION", (0, combi_1.altPrio)(posIntegers, posSymbols), (0, combi_1.opt)((0, combi_1.seq)("FOR TABLE", expressions_1.Field)));
|
|
16265
16293
|
const incl = (0, combi_1.seq)("INCLUDE BLOCKS", expressions_1.BlockName);
|
|
16266
16294
|
const tabbed = (0, combi_1.seq)("BEGIN OF TABBED BLOCK", expressions_1.BlockName, "FOR", expressions_1.Integer, "LINES", (0, combi_1.optPrio)("NO INTERVALS"));
|
|
16267
|
-
const uline = (0, combi_1.seq)("ULINE", (0, combi_1.opt)(position));
|
|
16295
|
+
const uline = (0, combi_1.seq)("ULINE", (0, combi_1.opt)(position), (0, combi_1.opt)(modif));
|
|
16268
16296
|
const param = (0, combi_1.seq)("INCLUDE PARAMETERS", expressions_1.Field);
|
|
16269
16297
|
const iso = (0, combi_1.seq)("INCLUDE SELECT-OPTIONS", expressions_1.Field);
|
|
16270
|
-
const
|
|
16298
|
+
const exclude = (0, combi_1.seq)("EXCLUDE", (0, combi_1.alt)("IDS", "PARAMETERS"), (0, combi_1.regex)(/^\w+$/));
|
|
16299
|
+
const beginVersion = (0, combi_1.seq)("BEGIN OF VERSION", (0, combi_1.regex)(/^\w+$/), expressions_1.TextElement);
|
|
16300
|
+
const endVersion = (0, combi_1.seq)("END OF VERSION", (0, combi_1.regex)(/^\w+$/));
|
|
16301
|
+
const ret = (0, combi_1.seq)("SELECTION-SCREEN", (0, combi_1.altPrio)(comment, func, skip, pos, incl, iso, push, tab, uline, beginBlock, tabbed, endBlock, beginLine, endLine, param, beginScreen, endScreen, exclude, beginVersion, endVersion));
|
|
16271
16302
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
16272
16303
|
}
|
|
16273
16304
|
}
|
|
@@ -18080,8 +18111,8 @@ class Write {
|
|
|
18080
18111
|
const dateFormat = (0, combi_1.altPrio)("DD/MM/YY", "MM/DD/YY", "DD/MM/YYYY", "MM/DD/YYYY", "DDMMYY", "MMDDYY", "YYMMDD");
|
|
18081
18112
|
const as = (0, combi_1.seq)("AS", (0, combi_1.altPrio)("LINE", "ICON", "CHECKBOX", "SYMBOL"));
|
|
18082
18113
|
const to = (0, combi_1.seq)("TO", expressions_1.Target);
|
|
18083
|
-
const options = (0, combi_1.per)(mask, to, (0, combi_1.seq)("EXPONENT", expressions_1.Source), "NO-GROUPING", "NO-ZERO", "CENTERED", (0, combi_1.seq)("INPUT", (0, combi_1.opt)(onOff)), "NO-GAP", "LEFT-JUSTIFIED", as, (0, combi_1.seq)("FRAMES", onOff), (0, combi_1.seq)("HOTSPOT", (0, combi_1.opt)(onOff)), "RIGHT-JUSTIFIED", (0, combi_1.seq)("TIME ZONE", expressions_1.Source), (0, combi_1.seq)("UNDER", expressions_1.Source), (0, combi_1.seq)("STYLE", expressions_1.Source), (0, combi_1.seq)("ROUND", expressions_1.Source), (0, combi_1.seq)("QUICKINFO", expressions_1.Source), "ENVIRONMENT TIME FORMAT", dateFormat, (0, combi_1.seq)("UNIT", expressions_1.Source), (0, combi_1.seq)("INTENSIFIED", (0, combi_1.opt)(onOff)), (0, combi_1.seq)("INDEX", expressions_1.Source), (0, combi_1.seq)("DECIMALS", expressions_1.Source), (0, combi_1.seq)("INVERSE", (0, combi_1.opt)(onOff)), expressions_1.Color, (0, combi_1.seq)("CURRENCY", expressions_1.Source), "NO-SIGN");
|
|
18084
|
-
const ret = (0, combi_1.seq)("WRITE", (0, combi_1.alt)("AT /", (0, combi_1.seq)((0, combi_1.opt)(expressions_1.WriteOffsetLength), (0, combi_1.
|
|
18114
|
+
const options = (0, combi_1.per)(mask, to, (0, combi_1.seq)("EXPONENT", expressions_1.Source), "NO-GROUPING", "NO-ZERO", "CENTERED", (0, combi_1.seq)("INPUT", (0, combi_1.opt)(onOff)), "NO-GAP", "LEFT-JUSTIFIED", as, (0, combi_1.seq)("FRAMES", onOff), (0, combi_1.seq)("HOTSPOT", (0, combi_1.opt)(onOff)), "RIGHT-JUSTIFIED", (0, combi_1.seq)("TIME ZONE", expressions_1.Source), (0, combi_1.seq)("UNDER", expressions_1.Source), (0, combi_1.seq)("STYLE", expressions_1.Source), (0, combi_1.seq)("ROUND", expressions_1.Source), (0, combi_1.seq)("QUICKINFO", expressions_1.Source), "ENVIRONMENT TIME FORMAT", dateFormat, (0, combi_1.seq)("UNIT", expressions_1.Source), (0, combi_1.seq)("INTENSIFIED", (0, combi_1.opt)(onOff)), (0, combi_1.seq)("INDEX", expressions_1.Source), (0, combi_1.seq)("DECIMALS", expressions_1.Source), (0, combi_1.seq)("INVERSE", (0, combi_1.opt)(onOff)), expressions_1.Color, (0, combi_1.seq)("CURRENCY", expressions_1.Source), "RESET", "NO-SIGN");
|
|
18115
|
+
const ret = (0, combi_1.seq)("WRITE", (0, combi_1.alt)("AT /", (0, combi_1.seq)((0, combi_1.opt)(expressions_1.WriteOffsetLength), (0, combi_1.alt)(expressions_1.Source, expressions_1.Dynamic, "/"), (0, combi_1.opt)(options))));
|
|
18085
18116
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
18086
18117
|
}
|
|
18087
18118
|
}
|
|
@@ -18522,7 +18553,7 @@ const Structures = __webpack_require__(/*! . */ "./node_modules/@abaplint/core/b
|
|
|
18522
18553
|
const Statements = __webpack_require__(/*! ../../2_statements/statements */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/index.js");
|
|
18523
18554
|
class Any {
|
|
18524
18555
|
getMatcher() {
|
|
18525
|
-
return (0, _combi_1.star)((0, _combi_1.alt)((0, _combi_1.sta)(Statements.ClassLocalFriends), (0, _combi_1.sta)(Statements.ClassDeferred), (0, _combi_1.sta)(Statements.Report), (0, _combi_1.sta)(Statements.Program), (0, _combi_1.sta)(Statements.Parameter), (0, _combi_1.sta)(Statements.CheckSelectOptions), (0, _combi_1.sta)(Statements.Get), (0, _combi_1.sta)(Statements.Initialization), (0, _combi_1.sta)(Statements.InterfaceDeferred), (0, _combi_1.sta)(Statements.SelectionScreen), (0, _combi_1.sta)(Statements.SelectOption), (0, _combi_1.sta)(Statements.AtSelectionScreen), (0, _combi_1.sta)(Statements.AtLineSelection), (0, _combi_1.sta)(Statements.AtUserCommand), (0, _combi_1.sta)(Statements.StartOfSelection), (0, _combi_1.sta)(Statements.EndOfSelection), (0, _combi_1.sta)(Statements.LoadOfProgram), (0, _combi_1.sta)(Statements.TopOfPage), (0, _combi_1.sta)(Statements.EndOfPage), (0, _combi_1.sta)(Statements.Controls), (0, _combi_1.sta)(Statements.TypePools), (0, _combi_1.sta)(Statements.TypePool), (0, _combi_1.sta)(Statements.FunctionPool), (0, _combi_1.sub)(Structures.Normal), (0, _combi_1.sub)(Structures.Form), (0, _combi_1.sub)(Structures.Module), (0, _combi_1.sub)(Structures.FunctionModule), (0, _combi_1.sub)(Structures.Interface), (0, _combi_1.sub)(Structures.ClassDefinition), (0, _combi_1.sub)(Structures.ClassImplementation)));
|
|
18556
|
+
return (0, _combi_1.star)((0, _combi_1.alt)((0, _combi_1.sta)(Statements.ClassLocalFriends), (0, _combi_1.sta)(Statements.ClassDeferred), (0, _combi_1.sta)(Statements.Report), (0, _combi_1.sta)(Statements.Program), (0, _combi_1.sta)(Statements.Parameter), (0, _combi_1.sta)(Statements.CheckSelectOptions), (0, _combi_1.sta)(Statements.Get), (0, _combi_1.sta)(Statements.Initialization), (0, _combi_1.sta)(Statements.InterfaceDeferred), (0, _combi_1.sta)(Statements.SelectionScreen), (0, _combi_1.sta)(Statements.SelectOption), (0, _combi_1.sta)(Statements.AtSelectionScreen), (0, _combi_1.sta)(Statements.AtLineSelection), (0, _combi_1.sta)(Statements.AtPF), (0, _combi_1.sta)(Statements.AtUserCommand), (0, _combi_1.sta)(Statements.StartOfSelection), (0, _combi_1.sta)(Statements.EndOfSelection), (0, _combi_1.sta)(Statements.LoadOfProgram), (0, _combi_1.sta)(Statements.TopOfPage), (0, _combi_1.sta)(Statements.EndOfPage), (0, _combi_1.sta)(Statements.Controls), (0, _combi_1.sta)(Statements.TypePools), (0, _combi_1.sta)(Statements.TypePool), (0, _combi_1.sta)(Statements.FunctionPool), (0, _combi_1.sub)(Structures.Normal), (0, _combi_1.sub)(Structures.Form), (0, _combi_1.sub)(Structures.Module), (0, _combi_1.sub)(Structures.FunctionModule), (0, _combi_1.sub)(Structures.Interface), (0, _combi_1.sub)(Structures.ClassDefinition), (0, _combi_1.sub)(Structures.ClassImplementation)));
|
|
18526
18557
|
}
|
|
18527
18558
|
}
|
|
18528
18559
|
exports.Any = Any;
|
|
@@ -18636,9 +18667,10 @@ const Statements = __webpack_require__(/*! ../../2_statements/statements */ "./n
|
|
|
18636
18667
|
const _combi_1 = __webpack_require__(/*! ./_combi */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/_combi.js");
|
|
18637
18668
|
const when_1 = __webpack_require__(/*! ./when */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/when.js");
|
|
18638
18669
|
const _statement_1 = __webpack_require__(/*! ../../2_statements/statements/_statement */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/_statement.js");
|
|
18670
|
+
const normal_1 = __webpack_require__(/*! ./normal */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/normal.js");
|
|
18639
18671
|
class Case {
|
|
18640
18672
|
getMatcher() {
|
|
18641
|
-
return (0, _combi_1.beginEnd)((0, _combi_1.sta)(Statements.Case), (0, _combi_1.star)((0, _combi_1.alt)((0, _combi_1.sub)(when_1.When), (0, _combi_1.sta)(_statement_1.MacroCall), (0, _combi_1.sta)(Statements.Include))), (0, _combi_1.sta)(Statements.EndCase));
|
|
18673
|
+
return (0, _combi_1.beginEnd)((0, _combi_1.sta)(Statements.Case), (0, _combi_1.seq)((0, _combi_1.star)((0, _combi_1.sub)(normal_1.Normal)), (0, _combi_1.star)((0, _combi_1.alt)((0, _combi_1.sub)(when_1.When), (0, _combi_1.sta)(_statement_1.MacroCall), (0, _combi_1.sta)(Statements.Include)))), (0, _combi_1.sta)(Statements.EndCase));
|
|
18642
18674
|
}
|
|
18643
18675
|
}
|
|
18644
18676
|
exports.Case = Case;
|
|
@@ -35424,6 +35456,7 @@ exports.SELECTION_EVENTS = [
|
|
|
35424
35456
|
Statements.StartOfSelection,
|
|
35425
35457
|
Statements.AtSelectionScreen,
|
|
35426
35458
|
Statements.AtLineSelection,
|
|
35459
|
+
Statements.AtPF,
|
|
35427
35460
|
Statements.AtUserCommand,
|
|
35428
35461
|
Statements.EndOfSelection,
|
|
35429
35462
|
Statements.Initialization,
|
|
@@ -52891,6 +52924,7 @@ class Indent {
|
|
|
52891
52924
|
else if (type instanceof Statements.StartOfSelection
|
|
52892
52925
|
|| type instanceof Statements.AtSelectionScreen
|
|
52893
52926
|
|| type instanceof Statements.AtLineSelection
|
|
52927
|
+
|| type instanceof Statements.AtPF
|
|
52894
52928
|
|| type instanceof Statements.Initialization
|
|
52895
52929
|
|| type instanceof Statements.AtUserCommand
|
|
52896
52930
|
|| type instanceof Statements.TopOfPage
|
|
@@ -53174,7 +53208,7 @@ class Registry {
|
|
|
53174
53208
|
}
|
|
53175
53209
|
static abaplintVersion() {
|
|
53176
53210
|
// magic, see build script "version.sh"
|
|
53177
|
-
return "2.113.
|
|
53211
|
+
return "2.113.62";
|
|
53178
53212
|
}
|
|
53179
53213
|
getDDICReferences() {
|
|
53180
53214
|
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.62",
|
|
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.113.
|
|
41
|
+
"@abaplint/core": "^2.113.62",
|
|
42
42
|
"@types/chai": "^4.3.20",
|
|
43
43
|
"@types/glob": "^8.1.0",
|
|
44
44
|
"@types/minimist": "^1.2.5",
|