@abaplint/cli 2.113.114 → 2.113.116
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 +215 -17
- package/package.json +6 -6
package/build/cli.js
CHANGED
|
@@ -4155,7 +4155,7 @@ const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/co
|
|
|
4155
4155
|
const tokens_1 = __webpack_require__(/*! ../../1_lexer/tokens */ "./node_modules/@abaplint/core/build/src/abap/1_lexer/tokens/index.js");
|
|
4156
4156
|
class BlockName extends combi_1.Expression {
|
|
4157
4157
|
getRunnable() {
|
|
4158
|
-
const ret = (0, combi_1.seq)((0, combi_1.regex)(/^[\w%\$\*]+$/), (0, combi_1.starPrio)((0, combi_1.seq)((0, combi_1.tok)(tokens_1.Dash), (0, combi_1.regex)(/^[\w%\$\*]+$/))));
|
|
4158
|
+
const ret = (0, combi_1.seq)((0, combi_1.optPrio)((0, combi_1.tok)(tokens_1.WDash)), (0, combi_1.regex)(/^[\w%\$\*]+$/), (0, combi_1.starPrio)((0, combi_1.seq)((0, combi_1.tok)(tokens_1.Dash), (0, combi_1.regex)(/^[\w%\$\*]+$/))));
|
|
4159
4159
|
return ret;
|
|
4160
4160
|
}
|
|
4161
4161
|
}
|
|
@@ -8583,7 +8583,7 @@ const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/co
|
|
|
8583
8583
|
const _1 = __webpack_require__(/*! . */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/index.js");
|
|
8584
8584
|
class SQLHints extends combi_1.Expression {
|
|
8585
8585
|
getRunnable() {
|
|
8586
|
-
const type = (0, combi_1.altPrio)("ORACLE", "ADABAS", "AS400", "DB2", "HDB", "MSSQLNT", "SYBASE", "DB6");
|
|
8586
|
+
const type = (0, combi_1.altPrio)("ORACLE", "ADABAS", "AS400", "DB2", "HDB", "MSSQLNT", "SYBASE", "DB6", "INFORMIX");
|
|
8587
8587
|
const ret = (0, combi_1.seq)("%_HINTS", (0, combi_1.plus)((0, combi_1.seq)(type, (0, combi_1.alt)(_1.Constant, _1.FieldSub))));
|
|
8588
8588
|
return ret;
|
|
8589
8589
|
}
|
|
@@ -8958,7 +8958,8 @@ class StringTemplateFormatting extends combi_1.Expression {
|
|
|
8958
8958
|
const decimals = (0, combi_1.seq)("DECIMALS =", _1.Source);
|
|
8959
8959
|
const alpha = (0, combi_1.ver)(version_1.Version.v740sp02, (0, combi_1.seq)("ALPHA =", alphaOptions));
|
|
8960
8960
|
const xsd = (0, combi_1.ver)(version_1.Version.v740sp02, (0, combi_1.seq)("XSD =", zeroXSDOptions));
|
|
8961
|
-
const
|
|
8961
|
+
const country = (0, combi_1.seq)("COUNTRY =", _1.Source);
|
|
8962
|
+
const formatting = (0, combi_1.altPrio)((0, combi_1.seq)("TIME =", dateTimeOptions), (0, combi_1.seq)("DATE =", dateTimeOptions), (0, combi_1.seq)("CASE =", caseOptions), (0, combi_1.seq)("EXPONENT", _1.Source), (0, combi_1.seq)("ZERO =", zeroXSDOptions), xsd, (0, combi_1.seq)("STYLE =", styleOptions), (0, combi_1.seq)("CURRENCY =", _1.Source), (0, combi_1.per)(sign, number, decimals, width, pad, alpha, align, country), (0, combi_1.per)(timezone, timestamp));
|
|
8962
8963
|
return formatting;
|
|
8963
8964
|
}
|
|
8964
8965
|
}
|
|
@@ -9050,7 +9051,7 @@ const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/co
|
|
|
9050
9051
|
const tokens_1 = __webpack_require__(/*! ../../1_lexer/tokens */ "./node_modules/@abaplint/core/build/src/abap/1_lexer/tokens/index.js");
|
|
9051
9052
|
class TableBody extends combi_1.Expression {
|
|
9052
9053
|
getRunnable() {
|
|
9053
|
-
const ret = (0, combi_1.seq)((0, combi_1.tok)(tokens_1.BracketLeft), (0, combi_1.tok)(tokens_1.BracketRightW));
|
|
9054
|
+
const ret = (0, combi_1.seq)((0, combi_1.tok)(tokens_1.BracketLeft), (0, combi_1.altPrio)((0, combi_1.tok)(tokens_1.BracketRightW), (0, combi_1.tok)(tokens_1.BracketRight)));
|
|
9054
9055
|
return ret;
|
|
9055
9056
|
}
|
|
9056
9057
|
}
|
|
@@ -12115,7 +12116,7 @@ class Describe {
|
|
|
12115
12116
|
const lineSize = (0, combi_1.seq)("LINE-SIZE", expressions_1.Target);
|
|
12116
12117
|
const lineCount = (0, combi_1.seq)("LINE-COUNT", expressions_1.Target);
|
|
12117
12118
|
const first = (0, combi_1.seq)("FIRST-LINE", expressions_1.Target);
|
|
12118
|
-
const list = (0, combi_1.seq)("LIST", (0, combi_1.per)(lines, pages, index, line, page, top, first, lineSize, lineCount));
|
|
12119
|
+
const list = (0, combi_1.seq)("LIST", (0, combi_1.per)(lines, pages, index, line, page, top, first, tlines, lineSize, lineCount));
|
|
12119
12120
|
const ret = (0, combi_1.seq)("DESCRIBE", (0, combi_1.altPrio)(table, field, distance, list));
|
|
12120
12121
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
12121
12122
|
}
|
|
@@ -12195,6 +12196,32 @@ exports.Do = Do;
|
|
|
12195
12196
|
|
|
12196
12197
|
/***/ }),
|
|
12197
12198
|
|
|
12199
|
+
/***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/dynpro_loop.js":
|
|
12200
|
+
/*!*******************************************************************************************!*\
|
|
12201
|
+
!*** ./node_modules/@abaplint/core/build/src/abap/2_statements/statements/dynpro_loop.js ***!
|
|
12202
|
+
\*******************************************************************************************/
|
|
12203
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
12204
|
+
|
|
12205
|
+
"use strict";
|
|
12206
|
+
|
|
12207
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
12208
|
+
exports.DynproLoop = void 0;
|
|
12209
|
+
const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/core/build/src/abap/2_statements/combi.js");
|
|
12210
|
+
const simple_source2_1 = __webpack_require__(/*! ../expressions/simple_source2 */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/simple_source2.js");
|
|
12211
|
+
class DynproLoop {
|
|
12212
|
+
getMatcher() {
|
|
12213
|
+
const into = (0, combi_1.seq)("INTO", simple_source2_1.SimpleSource2);
|
|
12214
|
+
const cursor = (0, combi_1.seq)("CURSOR", simple_source2_1.SimpleSource2);
|
|
12215
|
+
const withControl = (0, combi_1.seq)("WITH CONTROL", simple_source2_1.SimpleSource2);
|
|
12216
|
+
const fromTo = (0, combi_1.seq)("FROM", simple_source2_1.SimpleSource2, "TO", simple_source2_1.SimpleSource2);
|
|
12217
|
+
return (0, combi_1.seq)("LOOP AT", simple_source2_1.SimpleSource2, (0, combi_1.per)(into, withControl, cursor, fromTo));
|
|
12218
|
+
}
|
|
12219
|
+
}
|
|
12220
|
+
exports.DynproLoop = DynproLoop;
|
|
12221
|
+
//# sourceMappingURL=dynpro_loop.js.map
|
|
12222
|
+
|
|
12223
|
+
/***/ }),
|
|
12224
|
+
|
|
12198
12225
|
/***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/editor_call.js":
|
|
12199
12226
|
/*!*******************************************************************************************!*\
|
|
12200
12227
|
!*** ./node_modules/@abaplint/core/build/src/abap/2_statements/statements/editor_call.js ***!
|
|
@@ -13120,7 +13147,7 @@ const version_1 = __webpack_require__(/*! ../../../version */ "./node_modules/@a
|
|
|
13120
13147
|
const tokens_1 = __webpack_require__(/*! ../../1_lexer/tokens */ "./node_modules/@abaplint/core/build/src/abap/1_lexer/tokens/index.js");
|
|
13121
13148
|
class Field {
|
|
13122
13149
|
getMatcher() {
|
|
13123
|
-
const module = (0, combi_1.seq)("MODULE", expressions_1.FormName, (0, combi_1.opt)((0, combi_1.alt)("ON INPUT", "ON REQUEST")));
|
|
13150
|
+
const module = (0, combi_1.seq)("MODULE", expressions_1.FormName, (0, combi_1.opt)((0, combi_1.alt)("ON INPUT", "ON REQUEST", "ON CHAIN-REQUEST")));
|
|
13124
13151
|
const values = (0, combi_1.seq)("VALUES", (0, combi_1.tok)(tokens_1.WParenLeft), "BETWEEN", expressions_1.Constant, "AND", expressions_1.Constant, (0, combi_1.tok)(tokens_1.ParenRightW));
|
|
13125
13152
|
const ret = (0, combi_1.seq)("FIELD", expressions_1.FieldChain, (0, combi_1.opt)((0, combi_1.alt)(module, values)));
|
|
13126
13153
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
@@ -13915,7 +13942,8 @@ class Import {
|
|
|
13915
13942
|
const table = (0, combi_1.seq)("INTERNAL TABLE", expressions_1.Source);
|
|
13916
13943
|
const shared = (0, combi_1.seq)((0, combi_1.alt)("SHARED MEMORY", "SHARED BUFFER"), cluster, (0, combi_1.per)(dto, client, id));
|
|
13917
13944
|
const database = (0, combi_1.seq)("DATABASE", cluster, (0, combi_1.per)(dto, client, id, using));
|
|
13918
|
-
const
|
|
13945
|
+
const logfile = (0, combi_1.seq)("LOGFILE ID", expressions_1.Source);
|
|
13946
|
+
const source = (0, combi_1.alt)(buffer, memory, database, table, shared, logfile);
|
|
13919
13947
|
const to = (0, combi_1.plus)((0, combi_1.seq)(expressions_1.ComponentChainSimple, (0, combi_1.alt)("TO", "INTO"), expressions_1.Target));
|
|
13920
13948
|
const toeq = (0, combi_1.plus)((0, combi_1.seq)((0, combi_1.alt)(expressions_1.ComponentChainSimple, expressions_1.FieldSymbol), "=", expressions_1.Target));
|
|
13921
13949
|
const target = (0, combi_1.alt)(toeq, to, expressions_1.Dynamic, (0, combi_1.plus)(expressions_1.Target));
|
|
@@ -14273,6 +14301,7 @@ __exportStar(__webpack_require__(/*! ./raise_entity_event */ "./node_modules/@ab
|
|
|
14273
14301
|
__exportStar(__webpack_require__(/*! ./refresh_control */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/refresh_control.js"), exports);
|
|
14274
14302
|
__exportStar(__webpack_require__(/*! ./delete_dynpro */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/delete_dynpro.js"), exports);
|
|
14275
14303
|
__exportStar(__webpack_require__(/*! ./generate_dynpro */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/generate_dynpro.js"), exports);
|
|
14304
|
+
__exportStar(__webpack_require__(/*! ./process_on_help_request */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/process_on_help_request.js"), exports);
|
|
14276
14305
|
__exportStar(__webpack_require__(/*! ./detail */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/detail.js"), exports);
|
|
14277
14306
|
__exportStar(__webpack_require__(/*! ./editor_call */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/editor_call.js"), exports);
|
|
14278
14307
|
__exportStar(__webpack_require__(/*! ./break */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/break.js"), exports);
|
|
@@ -14311,6 +14340,7 @@ __exportStar(__webpack_require__(/*! ./get_parameter */ "./node_modules/@abaplin
|
|
|
14311
14340
|
__exportStar(__webpack_require__(/*! ./create_data */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/create_data.js"), exports);
|
|
14312
14341
|
__exportStar(__webpack_require__(/*! ./set_country */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/set_country.js"), exports);
|
|
14313
14342
|
__exportStar(__webpack_require__(/*! ./function_module */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/function_module.js"), exports);
|
|
14343
|
+
__exportStar(__webpack_require__(/*! ./dynpro_loop */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/dynpro_loop.js"), exports);
|
|
14314
14344
|
__exportStar(__webpack_require__(/*! ./type_pools */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/type_pools.js"), exports);
|
|
14315
14345
|
__exportStar(__webpack_require__(/*! ./type_pool */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/type_pool.js"), exports);
|
|
14316
14346
|
__exportStar(__webpack_require__(/*! ./wait */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/wait.js"), exports);
|
|
@@ -15366,7 +15396,7 @@ class OpenDataset {
|
|
|
15366
15396
|
const linetype = (0, combi_1.altPrio)("SMART", "NATIVE", "UNIX");
|
|
15367
15397
|
const feed = (0, combi_1.seq)("WITH", linetype, "LINEFEED");
|
|
15368
15398
|
const windows = (0, combi_1.str)("WITH WINDOWS LINEFEED");
|
|
15369
|
-
const ret = (0, combi_1.seq)("OPEN DATASET", expressions_1.Source, (0, combi_1.per)(direction, type, mode, wbom, replacement, filter, encoding, pos, message, ignoring, bom, code, feed, windows));
|
|
15399
|
+
const ret = (0, combi_1.seq)("OPEN DATASET", expressions_1.Source, (0, combi_1.opt)((0, combi_1.per)(direction, type, mode, wbom, replacement, filter, encoding, pos, message, ignoring, bom, code, feed, windows)));
|
|
15370
15400
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
15371
15401
|
}
|
|
15372
15402
|
}
|
|
@@ -15441,7 +15471,7 @@ class Parameter {
|
|
|
15441
15471
|
const para = (0, combi_1.altPrio)("PARAMETER", "PARAMETERS");
|
|
15442
15472
|
const def = (0, combi_1.seq)("DEFAULT", (0, combi_1.altPrio)(expressions_1.Constant, expressions_1.FieldChain));
|
|
15443
15473
|
const radio = (0, combi_1.seq)("RADIOBUTTON GROUP", expressions_1.RadioGroupName);
|
|
15444
|
-
const type = (0, combi_1.seq)((0, combi_1.altPrio)("TYPE", "LIKE"), (0, combi_1.altPrio)(expressions_1.TypeName, expressions_1.Dynamic));
|
|
15474
|
+
const type = (0, combi_1.seq)((0, combi_1.altPrio)("TYPE", "LIKE"), (0, combi_1.altPrio)(expressions_1.TypeName, expressions_1.Dynamic), (0, combi_1.optPrio)(expressions_1.FieldOffset), (0, combi_1.optPrio)(expressions_1.FieldLength));
|
|
15445
15475
|
const memory = (0, combi_1.seq)("MEMORY ID", expressions_1.SimpleSource1);
|
|
15446
15476
|
const listbox = (0, combi_1.str)("AS LISTBOX");
|
|
15447
15477
|
const cmd = (0, combi_1.seq)("USER-COMMAND", (0, combi_1.regex)(/^[\w\?\/]+$/));
|
|
@@ -15614,6 +15644,28 @@ exports.ProcessBeforeOutput = ProcessBeforeOutput;
|
|
|
15614
15644
|
|
|
15615
15645
|
/***/ }),
|
|
15616
15646
|
|
|
15647
|
+
/***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/process_on_help_request.js":
|
|
15648
|
+
/*!*******************************************************************************************************!*\
|
|
15649
|
+
!*** ./node_modules/@abaplint/core/build/src/abap/2_statements/statements/process_on_help_request.js ***!
|
|
15650
|
+
\*******************************************************************************************************/
|
|
15651
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
15652
|
+
|
|
15653
|
+
"use strict";
|
|
15654
|
+
|
|
15655
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
15656
|
+
exports.ProcessOnHelpRequest = void 0;
|
|
15657
|
+
const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/core/build/src/abap/2_statements/combi.js");
|
|
15658
|
+
const version_1 = __webpack_require__(/*! ../../../version */ "./node_modules/@abaplint/core/build/src/version.js");
|
|
15659
|
+
class ProcessOnHelpRequest {
|
|
15660
|
+
getMatcher() {
|
|
15661
|
+
return (0, combi_1.verNot)(version_1.Version.Cloud, "PROCESS ON HELP-REQUEST");
|
|
15662
|
+
}
|
|
15663
|
+
}
|
|
15664
|
+
exports.ProcessOnHelpRequest = ProcessOnHelpRequest;
|
|
15665
|
+
//# sourceMappingURL=process_on_help_request.js.map
|
|
15666
|
+
|
|
15667
|
+
/***/ }),
|
|
15668
|
+
|
|
15617
15669
|
/***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/process_on_value_request.js":
|
|
15618
15670
|
/*!********************************************************************************************************!*\
|
|
15619
15671
|
!*** ./node_modules/@abaplint/core/build/src/abap/2_statements/statements/process_on_value_request.js ***!
|
|
@@ -15852,7 +15904,7 @@ const version_1 = __webpack_require__(/*! ../../../version */ "./node_modules/@a
|
|
|
15852
15904
|
class Ranges {
|
|
15853
15905
|
getMatcher() {
|
|
15854
15906
|
const occurs = (0, combi_1.seq)("OCCURS", expressions_1.Source);
|
|
15855
|
-
const ret = (0, combi_1.seq)("RANGES", expressions_1.SimpleName, "FOR", expressions_1.SimpleFieldChain2, (0, combi_1.
|
|
15907
|
+
const ret = (0, combi_1.seq)("RANGES", expressions_1.SimpleName, "FOR", expressions_1.SimpleFieldChain2, (0, combi_1.optPrio)(occurs), (0, combi_1.optPrio)(expressions_1.FieldLength));
|
|
15856
15908
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
15857
15909
|
}
|
|
15858
15910
|
}
|
|
@@ -16925,7 +16977,7 @@ const expressions_1 = __webpack_require__(/*! ../expressions */ "./node_modules/
|
|
|
16925
16977
|
const version_1 = __webpack_require__(/*! ../../../version */ "./node_modules/@abaplint/core/build/src/version.js");
|
|
16926
16978
|
class SetProperty {
|
|
16927
16979
|
getMatcher() {
|
|
16928
|
-
const ret = (0, combi_1.seq)("SET PROPERTY OF", expressions_1.Source, (0, combi_1.alt)(expressions_1.Constant, expressions_1.Field), "=", expressions_1.Source, (0, combi_1.optPrio)("NO FLUSH"), (0, combi_1.opt)(expressions_1.OLEExporting));
|
|
16980
|
+
const ret = (0, combi_1.seq)("SET PROPERTY OF", expressions_1.Source, (0, combi_1.alt)(expressions_1.Constant, expressions_1.Field), "=", expressions_1.Source, (0, combi_1.optPrio)("NO FLUSH"), (0, combi_1.opt)(expressions_1.OLEExporting), (0, combi_1.opt)("QUEUEONLY"));
|
|
16929
16981
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
16930
16982
|
}
|
|
16931
16983
|
}
|
|
@@ -17227,7 +17279,7 @@ class Static {
|
|
|
17227
17279
|
getMatcher() {
|
|
17228
17280
|
const p = (0, combi_1.opt)((0, combi_1.per)(Expressions.Type, Expressions.Value, Expressions.Length, Expressions.Decimals));
|
|
17229
17281
|
const type = (0, combi_1.seq)((0, combi_1.opt)(Expressions.ConstantFieldLength), p);
|
|
17230
|
-
const ret = (0, combi_1.seq)((0, combi_1.alt)("STATIC", "STATICS"), Expressions.DefinitionName, (0, combi_1.alt)(type, Expressions.TypeTable));
|
|
17282
|
+
const ret = (0, combi_1.seq)((0, combi_1.alt)("STATIC", "STATICS"), Expressions.DefinitionName, (0, combi_1.optPrio)(Expressions.ConstantFieldLength), (0, combi_1.alt)(type, Expressions.TypeTable));
|
|
17231
17283
|
return ret;
|
|
17232
17284
|
}
|
|
17233
17285
|
}
|
|
@@ -17341,11 +17393,13 @@ class Submit {
|
|
|
17341
17393
|
const newList = (0, combi_1.seq)("NEW LIST IDENTIFICATION", expressions_1.Source);
|
|
17342
17394
|
const layout = (0, combi_1.seq)("LAYOUT", expressions_1.Source);
|
|
17343
17395
|
const cover = (0, combi_1.seq)("SAP COVER PAGE", expressions_1.Source);
|
|
17396
|
+
const copies = (0, combi_1.seq)("COPIES", expressions_1.Source);
|
|
17397
|
+
const datasetExpiration = (0, combi_1.seq)("DATASET EXPIRATION", expressions_1.Source);
|
|
17344
17398
|
const keep = (0, combi_1.seq)("KEEP IN SPOOL", expressions_1.Source);
|
|
17345
17399
|
const imm = (0, combi_1.seq)("IMMEDIATELY", expressions_1.Source);
|
|
17346
17400
|
const dest = (0, combi_1.seq)("DESTINATION", expressions_1.Source);
|
|
17347
17401
|
const language = (0, combi_1.seq)("LANGUAGE", expressions_1.Source);
|
|
17348
|
-
const perm = (0, combi_1.per)((0, combi_1.plus)(awith), selectionTable, (0, combi_1.plus)(awith), spool, lineSize, lineCount, archive, user, sset, ssetp, keep, cover, imm, layout, dest, language, free, newList, uss, "TO SAP-SPOOL", "WITHOUT SPOOL DYNPRO", "VIA SELECTION-SCREEN", exporting, expressions_1.AndReturn, job);
|
|
17402
|
+
const perm = (0, combi_1.per)((0, combi_1.plus)(awith), selectionTable, (0, combi_1.plus)(awith), spool, lineSize, lineCount, archive, user, sset, ssetp, keep, cover, imm, layout, dest, language, free, newList, uss, copies, datasetExpiration, "TO SAP-SPOOL", "WITHOUT SPOOL DYNPRO", "VIA SELECTION-SCREEN", exporting, expressions_1.AndReturn, job);
|
|
17349
17403
|
const ret = (0, combi_1.seq)("SUBMIT", prog, (0, combi_1.opt)(perm));
|
|
17350
17404
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
17351
17405
|
}
|
|
@@ -19252,7 +19306,7 @@ const Structures = __webpack_require__(/*! ./ */ "./node_modules/@abaplint/core/
|
|
|
19252
19306
|
const _combi_1 = __webpack_require__(/*! ./_combi */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/_combi.js");
|
|
19253
19307
|
class DynproLogic {
|
|
19254
19308
|
getMatcher() {
|
|
19255
|
-
return (0, _combi_1.seq)((0, _combi_1.sub)(Structures.ProcessBeforeOutput), (0, _combi_1.sub)(Structures.ProcessAfterInput), (0, _combi_1.opt)((0, _combi_1.sub)(Structures.ProcessOnValueRequest)));
|
|
19309
|
+
return (0, _combi_1.seq)((0, _combi_1.sub)(Structures.ProcessBeforeOutput), (0, _combi_1.sub)(Structures.ProcessAfterInput), (0, _combi_1.opt)((0, _combi_1.sub)(Structures.ProcessOnValueRequest)), (0, _combi_1.opt)((0, _combi_1.sub)(Structures.ProcessOnHelpRequest)));
|
|
19256
19310
|
}
|
|
19257
19311
|
}
|
|
19258
19312
|
exports.DynproLogic = DynproLogic;
|
|
@@ -19260,6 +19314,28 @@ exports.DynproLogic = DynproLogic;
|
|
|
19260
19314
|
|
|
19261
19315
|
/***/ }),
|
|
19262
19316
|
|
|
19317
|
+
/***/ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/dynpro_loop.js":
|
|
19318
|
+
/*!*******************************************************************************************!*\
|
|
19319
|
+
!*** ./node_modules/@abaplint/core/build/src/abap/3_structures/structures/dynpro_loop.js ***!
|
|
19320
|
+
\*******************************************************************************************/
|
|
19321
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
19322
|
+
|
|
19323
|
+
"use strict";
|
|
19324
|
+
|
|
19325
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
19326
|
+
exports.DynproLoop = void 0;
|
|
19327
|
+
const Statements = __webpack_require__(/*! ../../2_statements/statements */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/index.js");
|
|
19328
|
+
const _combi_1 = __webpack_require__(/*! ./_combi */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/_combi.js");
|
|
19329
|
+
class DynproLoop {
|
|
19330
|
+
getMatcher() {
|
|
19331
|
+
return (0, _combi_1.beginEnd)((0, _combi_1.sta)(Statements.DynproLoop), (0, _combi_1.star)((0, _combi_1.sta)(Statements.Module)), (0, _combi_1.sta)(Statements.EndLoop));
|
|
19332
|
+
}
|
|
19333
|
+
}
|
|
19334
|
+
exports.DynproLoop = DynproLoop;
|
|
19335
|
+
//# sourceMappingURL=dynpro_loop.js.map
|
|
19336
|
+
|
|
19337
|
+
/***/ }),
|
|
19338
|
+
|
|
19263
19339
|
/***/ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/else.js":
|
|
19264
19340
|
/*!************************************************************************************!*\
|
|
19265
19341
|
!*** ./node_modules/@abaplint/core/build/src/abap/3_structures/structures/else.js ***!
|
|
@@ -19519,6 +19595,8 @@ __exportStar(__webpack_require__(/*! ./provide */ "./node_modules/@abaplint/core
|
|
|
19519
19595
|
__exportStar(__webpack_require__(/*! ./public_section */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/public_section.js"), exports);
|
|
19520
19596
|
__exportStar(__webpack_require__(/*! ./section_contents */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/section_contents.js"), exports);
|
|
19521
19597
|
__exportStar(__webpack_require__(/*! ./select */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/select.js"), exports);
|
|
19598
|
+
__exportStar(__webpack_require__(/*! ./process_on_help_request */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/process_on_help_request.js"), exports);
|
|
19599
|
+
__exportStar(__webpack_require__(/*! ./dynpro_loop */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/dynpro_loop.js"), exports);
|
|
19522
19600
|
__exportStar(__webpack_require__(/*! ./statics */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/statics.js"), exports);
|
|
19523
19601
|
__exportStar(__webpack_require__(/*! ./test_injection */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/test_injection.js"), exports);
|
|
19524
19602
|
__exportStar(__webpack_require__(/*! ./test_seam */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/test_seam.js"), exports);
|
|
@@ -19782,9 +19860,10 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
19782
19860
|
exports.ProcessBeforeOutput = void 0;
|
|
19783
19861
|
const Statements = __webpack_require__(/*! ../../2_statements/statements */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/index.js");
|
|
19784
19862
|
const _combi_1 = __webpack_require__(/*! ./_combi */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/_combi.js");
|
|
19863
|
+
const dynpro_loop_1 = __webpack_require__(/*! ./dynpro_loop */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/dynpro_loop.js");
|
|
19785
19864
|
class ProcessBeforeOutput {
|
|
19786
19865
|
getMatcher() {
|
|
19787
|
-
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)));
|
|
19866
|
+
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), (0, _combi_1.sub)(dynpro_loop_1.DynproLoop)));
|
|
19788
19867
|
return (0, _combi_1.seq)((0, _combi_1.sta)(Statements.ProcessBeforeOutput), pbo);
|
|
19789
19868
|
}
|
|
19790
19869
|
}
|
|
@@ -19793,6 +19872,29 @@ exports.ProcessBeforeOutput = ProcessBeforeOutput;
|
|
|
19793
19872
|
|
|
19794
19873
|
/***/ }),
|
|
19795
19874
|
|
|
19875
|
+
/***/ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/process_on_help_request.js":
|
|
19876
|
+
/*!*******************************************************************************************************!*\
|
|
19877
|
+
!*** ./node_modules/@abaplint/core/build/src/abap/3_structures/structures/process_on_help_request.js ***!
|
|
19878
|
+
\*******************************************************************************************************/
|
|
19879
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
19880
|
+
|
|
19881
|
+
"use strict";
|
|
19882
|
+
|
|
19883
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
19884
|
+
exports.ProcessOnHelpRequest = void 0;
|
|
19885
|
+
const Statements = __webpack_require__(/*! ../../2_statements/statements */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/index.js");
|
|
19886
|
+
const _combi_1 = __webpack_require__(/*! ./_combi */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/_combi.js");
|
|
19887
|
+
class ProcessOnHelpRequest {
|
|
19888
|
+
getMatcher() {
|
|
19889
|
+
const pov = (0, _combi_1.star)((0, _combi_1.sta)(Statements.Field));
|
|
19890
|
+
return (0, _combi_1.seq)((0, _combi_1.sta)(Statements.ProcessOnHelpRequest), pov);
|
|
19891
|
+
}
|
|
19892
|
+
}
|
|
19893
|
+
exports.ProcessOnHelpRequest = ProcessOnHelpRequest;
|
|
19894
|
+
//# sourceMappingURL=process_on_help_request.js.map
|
|
19895
|
+
|
|
19896
|
+
/***/ }),
|
|
19897
|
+
|
|
19796
19898
|
/***/ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/process_on_value_request.js":
|
|
19797
19899
|
/*!********************************************************************************************************!*\
|
|
19798
19900
|
!*** ./node_modules/@abaplint/core/build/src/abap/3_structures/structures/process_on_value_request.js ***!
|
|
@@ -46579,6 +46681,37 @@ exports.AuthorizationObjectExtension = AuthorizationObjectExtension;
|
|
|
46579
46681
|
|
|
46580
46682
|
/***/ }),
|
|
46581
46683
|
|
|
46684
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/badi_definition.js":
|
|
46685
|
+
/*!**************************************************************************!*\
|
|
46686
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/badi_definition.js ***!
|
|
46687
|
+
\**************************************************************************/
|
|
46688
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
46689
|
+
|
|
46690
|
+
"use strict";
|
|
46691
|
+
|
|
46692
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
46693
|
+
exports.BADIDefinition = void 0;
|
|
46694
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
46695
|
+
class BADIDefinition extends _abstract_object_1.AbstractObject {
|
|
46696
|
+
getType() {
|
|
46697
|
+
return "SXSD";
|
|
46698
|
+
}
|
|
46699
|
+
getAllowedNaming() {
|
|
46700
|
+
return {
|
|
46701
|
+
maxLength: 30,
|
|
46702
|
+
allowNamespace: true,
|
|
46703
|
+
};
|
|
46704
|
+
}
|
|
46705
|
+
getDescription() {
|
|
46706
|
+
// todo
|
|
46707
|
+
return undefined;
|
|
46708
|
+
}
|
|
46709
|
+
}
|
|
46710
|
+
exports.BADIDefinition = BADIDefinition;
|
|
46711
|
+
//# sourceMappingURL=badi_definition.js.map
|
|
46712
|
+
|
|
46713
|
+
/***/ }),
|
|
46714
|
+
|
|
46582
46715
|
/***/ "./node_modules/@abaplint/core/build/src/objects/behavior_definition.js":
|
|
46583
46716
|
/*!******************************************************************************!*\
|
|
46584
46717
|
!*** ./node_modules/@abaplint/core/build/src/objects/behavior_definition.js ***!
|
|
@@ -48246,6 +48379,37 @@ exports.EnhancementSpot = EnhancementSpot;
|
|
|
48246
48379
|
|
|
48247
48380
|
/***/ }),
|
|
48248
48381
|
|
|
48382
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/entity_type.js":
|
|
48383
|
+
/*!**********************************************************************!*\
|
|
48384
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/entity_type.js ***!
|
|
48385
|
+
\**********************************************************************/
|
|
48386
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
48387
|
+
|
|
48388
|
+
"use strict";
|
|
48389
|
+
|
|
48390
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
48391
|
+
exports.EntityType = void 0;
|
|
48392
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
48393
|
+
class EntityType extends _abstract_object_1.AbstractObject {
|
|
48394
|
+
getType() {
|
|
48395
|
+
return "UENO";
|
|
48396
|
+
}
|
|
48397
|
+
getAllowedNaming() {
|
|
48398
|
+
return {
|
|
48399
|
+
maxLength: 200,
|
|
48400
|
+
allowNamespace: true,
|
|
48401
|
+
};
|
|
48402
|
+
}
|
|
48403
|
+
getDescription() {
|
|
48404
|
+
// todo
|
|
48405
|
+
return undefined;
|
|
48406
|
+
}
|
|
48407
|
+
}
|
|
48408
|
+
exports.EntityType = EntityType;
|
|
48409
|
+
//# sourceMappingURL=entity_type.js.map
|
|
48410
|
+
|
|
48411
|
+
/***/ }),
|
|
48412
|
+
|
|
48249
48413
|
/***/ "./node_modules/@abaplint/core/build/src/objects/event_binding.js":
|
|
48250
48414
|
/*!************************************************************************!*\
|
|
48251
48415
|
!*** ./node_modules/@abaplint/core/build/src/objects/event_binding.js ***!
|
|
@@ -49362,6 +49526,8 @@ __exportStar(__webpack_require__(/*! ./business_function_set_assignment */ "./no
|
|
|
49362
49526
|
__exportStar(__webpack_require__(/*! ./business_object_model */ "./node_modules/@abaplint/core/build/src/objects/business_object_model.js"), exports);
|
|
49363
49527
|
__exportStar(__webpack_require__(/*! ./business_object_type */ "./node_modules/@abaplint/core/build/src/objects/business_object_type.js"), exports);
|
|
49364
49528
|
__exportStar(__webpack_require__(/*! ./cds_metadata_extension */ "./node_modules/@abaplint/core/build/src/objects/cds_metadata_extension.js"), exports);
|
|
49529
|
+
__exportStar(__webpack_require__(/*! ./badi_definition */ "./node_modules/@abaplint/core/build/src/objects/badi_definition.js"), exports);
|
|
49530
|
+
__exportStar(__webpack_require__(/*! ./entity_type */ "./node_modules/@abaplint/core/build/src/objects/entity_type.js"), exports);
|
|
49365
49531
|
__exportStar(__webpack_require__(/*! ./cds_type */ "./node_modules/@abaplint/core/build/src/objects/cds_type.js"), exports);
|
|
49366
49532
|
__exportStar(__webpack_require__(/*! ./change_document */ "./node_modules/@abaplint/core/build/src/objects/change_document.js"), exports);
|
|
49367
49533
|
__exportStar(__webpack_require__(/*! ./chapter_of_book_structure */ "./node_modules/@abaplint/core/build/src/objects/chapter_of_book_structure.js"), exports);
|
|
@@ -49400,6 +49566,7 @@ __exportStar(__webpack_require__(/*! ./gateway_model_metadata */ "./node_modules
|
|
|
49400
49566
|
__exportStar(__webpack_require__(/*! ./gateway_model */ "./node_modules/@abaplint/core/build/src/objects/gateway_model.js"), exports);
|
|
49401
49567
|
__exportStar(__webpack_require__(/*! ./gateway_project */ "./node_modules/@abaplint/core/build/src/objects/gateway_project.js"), exports);
|
|
49402
49568
|
__exportStar(__webpack_require__(/*! ./gateway_service_groups_metadata */ "./node_modules/@abaplint/core/build/src/objects/gateway_service_groups_metadata.js"), exports);
|
|
49569
|
+
__exportStar(__webpack_require__(/*! ./web_reporting_template */ "./node_modules/@abaplint/core/build/src/objects/web_reporting_template.js"), exports);
|
|
49403
49570
|
__exportStar(__webpack_require__(/*! ./gateway_service */ "./node_modules/@abaplint/core/build/src/objects/gateway_service.js"), exports);
|
|
49404
49571
|
__exportStar(__webpack_require__(/*! ./gateway_vocabulary_annotation */ "./node_modules/@abaplint/core/build/src/objects/gateway_vocabulary_annotation.js"), exports);
|
|
49405
49572
|
__exportStar(__webpack_require__(/*! ./general_hierarchy_storage_extrension_name */ "./node_modules/@abaplint/core/build/src/objects/general_hierarchy_storage_extrension_name.js"), exports);
|
|
@@ -53441,6 +53608,37 @@ exports.WebMIME = WebMIME;
|
|
|
53441
53608
|
|
|
53442
53609
|
/***/ }),
|
|
53443
53610
|
|
|
53611
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/web_reporting_template.js":
|
|
53612
|
+
/*!*********************************************************************************!*\
|
|
53613
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/web_reporting_template.js ***!
|
|
53614
|
+
\*********************************************************************************/
|
|
53615
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
53616
|
+
|
|
53617
|
+
"use strict";
|
|
53618
|
+
|
|
53619
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
53620
|
+
exports.WebReportingTemplate = void 0;
|
|
53621
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
53622
|
+
class WebReportingTemplate extends _abstract_object_1.AbstractObject {
|
|
53623
|
+
getType() {
|
|
53624
|
+
return "W3HT";
|
|
53625
|
+
}
|
|
53626
|
+
getAllowedNaming() {
|
|
53627
|
+
return {
|
|
53628
|
+
maxLength: 30,
|
|
53629
|
+
allowNamespace: true,
|
|
53630
|
+
};
|
|
53631
|
+
}
|
|
53632
|
+
getDescription() {
|
|
53633
|
+
// todo
|
|
53634
|
+
return undefined;
|
|
53635
|
+
}
|
|
53636
|
+
}
|
|
53637
|
+
exports.WebReportingTemplate = WebReportingTemplate;
|
|
53638
|
+
//# sourceMappingURL=web_reporting_template.js.map
|
|
53639
|
+
|
|
53640
|
+
/***/ }),
|
|
53641
|
+
|
|
53444
53642
|
/***/ "./node_modules/@abaplint/core/build/src/position.js":
|
|
53445
53643
|
/*!***********************************************************!*\
|
|
53446
53644
|
!*** ./node_modules/@abaplint/core/build/src/position.js ***!
|
|
@@ -53925,7 +54123,7 @@ class Registry {
|
|
|
53925
54123
|
}
|
|
53926
54124
|
static abaplintVersion() {
|
|
53927
54125
|
// magic, see build script "version.sh"
|
|
53928
|
-
return "2.113.
|
|
54126
|
+
return "2.113.116";
|
|
53929
54127
|
}
|
|
53930
54128
|
getDDICReferences() {
|
|
53931
54129
|
return this.ddicReferences;
|
|
@@ -77239,7 +77437,7 @@ class IncludeGraph {
|
|
|
77239
77437
|
}
|
|
77240
77438
|
}
|
|
77241
77439
|
else if (found.include === false) {
|
|
77242
|
-
const issue = issue_1.Issue.atStatement(f, s, "Not possible to INCLUDE a main program", new check_include_1.CheckInclude().getMetadata().key, severity_1.Severity.Error);
|
|
77440
|
+
const issue = issue_1.Issue.atStatement(f, s, "Not possible to INCLUDE a main program, " + name, new check_include_1.CheckInclude().getMetadata().key, severity_1.Severity.Error);
|
|
77243
77441
|
this.issues.push(issue);
|
|
77244
77442
|
}
|
|
77245
77443
|
else {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.113.
|
|
3
|
+
"version": "2.113.116",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -38,21 +38,21 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://abaplint.org",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@abaplint/core": "^2.113.
|
|
41
|
+
"@abaplint/core": "^2.113.116",
|
|
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.15.
|
|
46
|
+
"@types/node": "^22.15.19",
|
|
47
47
|
"@types/progress": "^2.0.7",
|
|
48
48
|
"chai": "^4.5.0",
|
|
49
49
|
"chalk": "^5.4.1",
|
|
50
|
-
"eslint": "^9.
|
|
50
|
+
"eslint": "^9.27.0",
|
|
51
51
|
"glob": "^7.2.3",
|
|
52
52
|
"json5": "^2.2.3",
|
|
53
|
-
"memfs": "^4.17.
|
|
53
|
+
"memfs": "^4.17.2",
|
|
54
54
|
"minimist": "^1.2.8",
|
|
55
|
-
"mocha": "^11.
|
|
55
|
+
"mocha": "^11.3.0",
|
|
56
56
|
"progress": "^2.0.3",
|
|
57
57
|
"typescript": "^5.8.3",
|
|
58
58
|
"webpack": "^5.99.8",
|