@abaplint/cli 2.113.41 → 2.113.43
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 +12 -10
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -5279,7 +5279,7 @@ const tokens_1 = __webpack_require__(/*! ../../1_lexer/tokens */ "./node_modules
|
|
|
5279
5279
|
const table_body_1 = __webpack_require__(/*! ./table_body */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/table_body.js");
|
|
5280
5280
|
class FieldSub extends combi_1.Expression {
|
|
5281
5281
|
getRunnable() {
|
|
5282
|
-
const ret = (0, combi_1.seq)((0, combi_1.regex)(/^\*?!?(\/\w+\/)?[a-zA-Z_
|
|
5282
|
+
const ret = (0, combi_1.seq)((0, combi_1.regex)(/^\*?!?(\/\w+\/)?[a-zA-Z_%$\?][\w%$\$\*]*$/), (0, combi_1.starPrio)((0, combi_1.seq)((0, combi_1.tok)(tokens_1.Dash), (0, combi_1.regex)(/^[\w%$\$\*]+$/))), (0, combi_1.opt)(table_body_1.TableBody));
|
|
5283
5283
|
return ret;
|
|
5284
5284
|
}
|
|
5285
5285
|
}
|
|
@@ -7512,7 +7512,7 @@ class SelectLoop extends combi_1.Expression {
|
|
|
7512
7512
|
const packTab = (0, combi_1.seq)(pack, _1.SQLIntoTable);
|
|
7513
7513
|
const into = (0, combi_1.altPrio)(sql_into_structure_1.SQLIntoStructure, _1.SQLIntoList);
|
|
7514
7514
|
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));
|
|
7515
|
-
const strict = (0, combi_1.seq)(_1.SQLFrom, (0, combi_1.ver)(version_1.Version.v750, _1.SQLFields), (0, combi_1.optPrio)((0, combi_1.seq)(where, (0, combi_1.optPrio)(sql_order_by_1.SQLOrderBy), into, sql_up_to_1.SQLUpTo)));
|
|
7515
|
+
const strict = (0, combi_1.seq)(_1.SQLFrom, (0, combi_1.ver)(version_1.Version.v750, _1.SQLFields), (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))));
|
|
7516
7516
|
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), (0, combi_1.optPrio)(sql_hints_1.SQLHints));
|
|
7517
7517
|
return ret;
|
|
7518
7518
|
}
|
|
@@ -8237,13 +8237,15 @@ const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/co
|
|
|
8237
8237
|
const _1 = __webpack_require__(/*! . */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/index.js");
|
|
8238
8238
|
const version_1 = __webpack_require__(/*! ../../../version */ "./node_modules/@abaplint/core/build/src/version.js");
|
|
8239
8239
|
const sql_path_1 = __webpack_require__(/*! ./sql_path */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/sql_path.js");
|
|
8240
|
+
const tokens_1 = __webpack_require__(/*! ../../1_lexer/tokens */ "./node_modules/@abaplint/core/build/src/abap/1_lexer/tokens/index.js");
|
|
8240
8241
|
// loop must include one field from the database table
|
|
8241
8242
|
class SQLFieldListLoop extends combi_1.Expression {
|
|
8242
8243
|
getRunnable() {
|
|
8243
8244
|
const comma = (0, combi_1.opt)((0, combi_1.ver)(version_1.Version.v740sp05, ","));
|
|
8244
8245
|
const as = (0, combi_1.seq)("AS", _1.SQLAsName);
|
|
8245
8246
|
const someField = (0, combi_1.seq)(_1.SQLField, comma);
|
|
8246
|
-
const
|
|
8247
|
+
const abap = (0, combi_1.ver)(version_1.Version.v740sp05, (0, combi_1.seq)((0, combi_1.tok)(tokens_1.WAt), _1.SimpleFieldChain));
|
|
8248
|
+
const fieldList = (0, combi_1.seq)((0, combi_1.star)(someField), (0, combi_1.alt)(_1.SQLFieldName, abap, sql_path_1.SQLPath, _1.Constant), (0, combi_1.optPrio)(as), comma, (0, combi_1.star)(someField));
|
|
8247
8249
|
const fields = (0, combi_1.alt)("*", _1.Dynamic, fieldList);
|
|
8248
8250
|
return fields;
|
|
8249
8251
|
}
|
|
@@ -15332,7 +15334,7 @@ class Program {
|
|
|
15332
15334
|
const heading = (0, combi_1.str)("NO STANDARD PAGE HEADING");
|
|
15333
15335
|
const line = (0, combi_1.seq)("LINE-COUNT", expressions_1.Source);
|
|
15334
15336
|
const options = (0, combi_1.per)(message, size, heading, line);
|
|
15335
|
-
const ret = (0, combi_1.seq)("PROGRAM", (0, combi_1.
|
|
15337
|
+
const ret = (0, combi_1.seq)("PROGRAM", (0, combi_1.opt)(expressions_1.ReportName), (0, combi_1.opt)(options));
|
|
15336
15338
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
15337
15339
|
}
|
|
15338
15340
|
}
|
|
@@ -40395,13 +40397,13 @@ const combi_1 = __webpack_require__(/*! ../../abap/2_statements/combi */ "./node
|
|
|
40395
40397
|
const cds_integer_1 = __webpack_require__(/*! ./cds_integer */ "./node_modules/@abaplint/core/build/src/cds/expressions/cds_integer.js");
|
|
40396
40398
|
class CDSCondition extends combi_1.Expression {
|
|
40397
40399
|
getRunnable() {
|
|
40398
|
-
const name = (0, combi_1.seq)(_1.CDSName, (0, combi_1.
|
|
40400
|
+
const name = (0, combi_1.seq)(_1.CDSName, (0, combi_1.optPrio)((0, combi_1.seq)(".", (0, combi_1.alt)(_1.CDSName, _1.CDSString))));
|
|
40399
40401
|
const left = (0, combi_1.alt)(name, _1.CDSFunction, _1.CDSString);
|
|
40400
40402
|
const compare = (0, combi_1.seq)(left, (0, combi_1.alt)("=", (0, combi_1.seq)("!", "="), (0, combi_1.seq)("<", ">"), "<", ">", (0, combi_1.seq)(">", "="), (0, combi_1.seq)("<", "="), "LIKE", "NOT LIKE"), (0, combi_1.alt)(left, cds_integer_1.CDSInteger, _1.CDSFunction, _1.CDSString));
|
|
40401
40403
|
const is = (0, combi_1.seq)(left, "IS", (0, combi_1.optPrio)("NOT"), (0, combi_1.altPrio)("INITIAL", "NULL"));
|
|
40402
40404
|
const condition = (0, combi_1.seq)((0, combi_1.optPrio)("NOT"), (0, combi_1.alt)(compare, is));
|
|
40403
40405
|
const paren = (0, combi_1.seq)("(", CDSCondition, ")");
|
|
40404
|
-
return (0, combi_1.seq)((0, combi_1.alt)(condition, paren), (0, combi_1.
|
|
40406
|
+
return (0, combi_1.seq)((0, combi_1.alt)(condition, paren), (0, combi_1.starPrio)((0, combi_1.seq)((0, combi_1.altPrio)("AND", "OR"), (0, combi_1.altPrio)(condition, paren))));
|
|
40405
40407
|
}
|
|
40406
40408
|
}
|
|
40407
40409
|
exports.CDSCondition = CDSCondition;
|
|
@@ -40854,10 +40856,10 @@ const cds_association_1 = __webpack_require__(/*! ./cds_association */ "./node_m
|
|
|
40854
40856
|
const cds_join_1 = __webpack_require__(/*! ./cds_join */ "./node_modules/@abaplint/core/build/src/cds/expressions/cds_join.js");
|
|
40855
40857
|
class CDSSelect extends combi_1.Expression {
|
|
40856
40858
|
getRunnable() {
|
|
40857
|
-
const fields = (0, combi_1.
|
|
40859
|
+
const fields = (0, combi_1.seq)((0, combi_1.star)((0, combi_1.seq)(_1.CDSElement, ",")), _1.CDSElement);
|
|
40858
40860
|
const distinct = (0, combi_1.str)("DISTINCT");
|
|
40859
|
-
const elements = (0, combi_1.seq)((0, combi_1.str)("{"),
|
|
40860
|
-
return (0, combi_1.seq)("SELECT", (0, combi_1.
|
|
40861
|
+
const elements = (0, combi_1.seq)((0, combi_1.str)("{"), _1.CDSElement, (0, combi_1.starPrio)((0, combi_1.seq)(",", _1.CDSElement)), (0, combi_1.str)("}"));
|
|
40862
|
+
return (0, combi_1.seq)("SELECT", (0, combi_1.optPrio)(distinct), (0, combi_1.opt)(fields), "FROM", _1.CDSSource, (0, combi_1.star)(cds_join_1.CDSJoin), (0, combi_1.star)(_1.CDSComposition), (0, combi_1.star)(cds_association_1.CDSAssociation), (0, combi_1.star)(_1.CDSComposition), (0, combi_1.opt)(elements), (0, combi_1.optPrio)(_1.CDSWhere), (0, combi_1.optPrio)(_1.CDSGroupBy), (0, combi_1.optPrio)(_1.CDSHaving), (0, combi_1.optPrio)((0, combi_1.seq)("UNION", (0, combi_1.optPrio)("ALL"), CDSSelect)));
|
|
40861
40863
|
}
|
|
40862
40864
|
}
|
|
40863
40865
|
exports.CDSSelect = CDSSelect;
|
|
@@ -53033,7 +53035,7 @@ class Registry {
|
|
|
53033
53035
|
}
|
|
53034
53036
|
static abaplintVersion() {
|
|
53035
53037
|
// magic, see build script "version.sh"
|
|
53036
|
-
return "2.113.
|
|
53038
|
+
return "2.113.43";
|
|
53037
53039
|
}
|
|
53038
53040
|
getDDICReferences() {
|
|
53039
53041
|
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.43",
|
|
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.43",
|
|
42
42
|
"@types/chai": "^4.3.20",
|
|
43
43
|
"@types/glob": "^8.1.0",
|
|
44
44
|
"@types/minimist": "^1.2.5",
|