@abaplint/cli 2.113.38 → 2.113.39
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 +3 -2
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -35550,6 +35550,7 @@ class StatementFlow {
|
|
|
35550
35550
|
}
|
|
35551
35551
|
else if (type instanceof Structures.Data
|
|
35552
35552
|
|| type instanceof Structures.Constants
|
|
35553
|
+
|| type instanceof Structures.Statics
|
|
35553
35554
|
|| type instanceof Structures.Types) {
|
|
35554
35555
|
// these doesnt affect control flow, so just take the first statement
|
|
35555
35556
|
const statement = n.getFirstStatement();
|
|
@@ -40351,7 +40352,7 @@ class CDSCondition extends combi_1.Expression {
|
|
|
40351
40352
|
const left = (0, combi_1.alt)(name, _1.CDSFunction, _1.CDSString);
|
|
40352
40353
|
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));
|
|
40353
40354
|
const is = (0, combi_1.seq)(left, "IS", (0, combi_1.optPrio)("NOT"), (0, combi_1.altPrio)("INITIAL", "NULL"));
|
|
40354
|
-
const condition = (0, combi_1.alt)(compare, is);
|
|
40355
|
+
const condition = (0, combi_1.seq)((0, combi_1.optPrio)("NOT"), (0, combi_1.alt)(compare, is));
|
|
40355
40356
|
const paren = (0, combi_1.seq)("(", CDSCondition, ")");
|
|
40356
40357
|
return (0, combi_1.seq)((0, combi_1.alt)(condition, paren), (0, combi_1.star)((0, combi_1.seq)((0, combi_1.alt)("AND", "OR"), (0, combi_1.alt)(condition, paren))));
|
|
40357
40358
|
}
|
|
@@ -52973,7 +52974,7 @@ class Registry {
|
|
|
52973
52974
|
}
|
|
52974
52975
|
static abaplintVersion() {
|
|
52975
52976
|
// magic, see build script "version.sh"
|
|
52976
|
-
return "2.113.
|
|
52977
|
+
return "2.113.39";
|
|
52977
52978
|
}
|
|
52978
52979
|
getDDICReferences() {
|
|
52979
52980
|
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.39",
|
|
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.39",
|
|
42
42
|
"@types/chai": "^4.3.20",
|
|
43
43
|
"@types/glob": "^8.1.0",
|
|
44
44
|
"@types/minimist": "^1.2.5",
|