@abaplint/cli 2.113.49 → 2.113.50
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
|
@@ -40270,7 +40270,8 @@ class CDSArithmetics extends combi_1.Expression {
|
|
|
40270
40270
|
const operatorValue = (0, combi_1.seq)(operator, val);
|
|
40271
40271
|
const paren = (0, combi_1.seq)("(", val, (0, combi_1.plus)(operatorValue), ")");
|
|
40272
40272
|
const noParen = (0, combi_1.seq)(val, (0, combi_1.plus)(operatorValue));
|
|
40273
|
-
|
|
40273
|
+
// todo: this is pretty bad, it needs a rewrite
|
|
40274
|
+
return (0, combi_1.altPrio)((0, combi_1.seq)(paren, (0, combi_1.plus)(operatorValue)), paren, noParen);
|
|
40274
40275
|
}
|
|
40275
40276
|
}
|
|
40276
40277
|
exports.CDSArithmetics = CDSArithmetics;
|
|
@@ -53108,7 +53109,7 @@ class Registry {
|
|
|
53108
53109
|
}
|
|
53109
53110
|
static abaplintVersion() {
|
|
53110
53111
|
// magic, see build script "version.sh"
|
|
53111
|
-
return "2.113.
|
|
53112
|
+
return "2.113.50";
|
|
53112
53113
|
}
|
|
53113
53114
|
getDDICReferences() {
|
|
53114
53115
|
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.50",
|
|
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.50",
|
|
42
42
|
"@types/chai": "^4.3.20",
|
|
43
43
|
"@types/glob": "^8.1.0",
|
|
44
44
|
"@types/minimist": "^1.2.5",
|