@abaplint/cli 2.112.5 → 2.112.6
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 +2 -2
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -9653,7 +9653,7 @@ class StatementParser {
|
|
|
9653
9653
|
continue; // probably punctuation
|
|
9654
9654
|
}
|
|
9655
9655
|
const s = this.categorizeStatement(new nodes_1.StatementNode(new _statement_1.Unknown()).setChildren(this.tokensToNodes(second)));
|
|
9656
|
-
if (!(s.get() instanceof _statement_1.Unknown)) {
|
|
9656
|
+
if (!(s.get() instanceof _statement_1.Unknown) && !(s.get() instanceof _statement_1.Empty)) {
|
|
9657
9657
|
result.push(new nodes_1.StatementNode(new _statement_1.Unknown()).setChildren(this.tokensToNodes(first)));
|
|
9658
9658
|
statement = s;
|
|
9659
9659
|
break;
|
|
@@ -52350,7 +52350,7 @@ class Registry {
|
|
|
52350
52350
|
}
|
|
52351
52351
|
static abaplintVersion() {
|
|
52352
52352
|
// magic, see build script "version.sh"
|
|
52353
|
-
return "2.112.
|
|
52353
|
+
return "2.112.6";
|
|
52354
52354
|
}
|
|
52355
52355
|
getDDICReferences() {
|
|
52356
52356
|
return this.ddicReferences;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.112.
|
|
3
|
+
"version": "2.112.6",
|
|
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.112.
|
|
41
|
+
"@abaplint/core": "^2.112.6",
|
|
42
42
|
"@types/chai": "^4.3.16",
|
|
43
43
|
"@types/glob": "^8.1.0",
|
|
44
44
|
"@types/minimist": "^1.2.5",
|