@abaplint/cli 2.113.42 → 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 +6 -6
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -40397,13 +40397,13 @@ const combi_1 = __webpack_require__(/*! ../../abap/2_statements/combi */ "./node
|
|
|
40397
40397
|
const cds_integer_1 = __webpack_require__(/*! ./cds_integer */ "./node_modules/@abaplint/core/build/src/cds/expressions/cds_integer.js");
|
|
40398
40398
|
class CDSCondition extends combi_1.Expression {
|
|
40399
40399
|
getRunnable() {
|
|
40400
|
-
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))));
|
|
40401
40401
|
const left = (0, combi_1.alt)(name, _1.CDSFunction, _1.CDSString);
|
|
40402
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));
|
|
40403
40403
|
const is = (0, combi_1.seq)(left, "IS", (0, combi_1.optPrio)("NOT"), (0, combi_1.altPrio)("INITIAL", "NULL"));
|
|
40404
40404
|
const condition = (0, combi_1.seq)((0, combi_1.optPrio)("NOT"), (0, combi_1.alt)(compare, is));
|
|
40405
40405
|
const paren = (0, combi_1.seq)("(", CDSCondition, ")");
|
|
40406
|
-
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))));
|
|
40407
40407
|
}
|
|
40408
40408
|
}
|
|
40409
40409
|
exports.CDSCondition = CDSCondition;
|
|
@@ -40856,10 +40856,10 @@ const cds_association_1 = __webpack_require__(/*! ./cds_association */ "./node_m
|
|
|
40856
40856
|
const cds_join_1 = __webpack_require__(/*! ./cds_join */ "./node_modules/@abaplint/core/build/src/cds/expressions/cds_join.js");
|
|
40857
40857
|
class CDSSelect extends combi_1.Expression {
|
|
40858
40858
|
getRunnable() {
|
|
40859
|
-
const fields = (0, combi_1.
|
|
40859
|
+
const fields = (0, combi_1.seq)((0, combi_1.star)((0, combi_1.seq)(_1.CDSElement, ",")), _1.CDSElement);
|
|
40860
40860
|
const distinct = (0, combi_1.str)("DISTINCT");
|
|
40861
|
-
const elements = (0, combi_1.seq)((0, combi_1.str)("{"),
|
|
40862
|
-
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)));
|
|
40863
40863
|
}
|
|
40864
40864
|
}
|
|
40865
40865
|
exports.CDSSelect = CDSSelect;
|
|
@@ -53035,7 +53035,7 @@ class Registry {
|
|
|
53035
53035
|
}
|
|
53036
53036
|
static abaplintVersion() {
|
|
53037
53037
|
// magic, see build script "version.sh"
|
|
53038
|
-
return "2.113.
|
|
53038
|
+
return "2.113.43";
|
|
53039
53039
|
}
|
|
53040
53040
|
getDDICReferences() {
|
|
53041
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",
|