@abaplint/cli 2.102.54 → 2.102.55
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 +7 -1
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -1467,6 +1467,11 @@ class Lexer {
|
|
|
1467
1467
|
this.add();
|
|
1468
1468
|
this.m = this.ModeNormal;
|
|
1469
1469
|
}
|
|
1470
|
+
else if (this.m === this.ModeTemplate
|
|
1471
|
+
&& ahead === "}"
|
|
1472
|
+
&& current !== "\\") {
|
|
1473
|
+
this.add();
|
|
1474
|
+
}
|
|
1470
1475
|
else if (this.m === this.ModeStr
|
|
1471
1476
|
&& current === "'"
|
|
1472
1477
|
&& buf.length > 1
|
|
@@ -49182,7 +49187,7 @@ class Registry {
|
|
|
49182
49187
|
}
|
|
49183
49188
|
static abaplintVersion() {
|
|
49184
49189
|
// magic, see build script "version.sh"
|
|
49185
|
-
return "2.102.
|
|
49190
|
+
return "2.102.55";
|
|
49186
49191
|
}
|
|
49187
49192
|
getDDICReferences() {
|
|
49188
49193
|
return this.ddicReferences;
|
|
@@ -68585,6 +68590,7 @@ class UnreachableCode extends _abap_rule_1.ABAPRule {
|
|
|
68585
68590
|
|| s instanceof Statements.EndMethod
|
|
68586
68591
|
|| s instanceof Statements.EndModule
|
|
68587
68592
|
|| s instanceof Statements.EndForm
|
|
68593
|
+
|| s instanceof Statements.EndTestSeam
|
|
68588
68594
|
|| s instanceof Statements.EndAt
|
|
68589
68595
|
|| s instanceof Statements.EndSelect
|
|
68590
68596
|
|| s instanceof Statements.AtSelectionScreen
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.102.
|
|
3
|
+
"version": "2.102.55",
|
|
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.102.
|
|
41
|
+
"@abaplint/core": "^2.102.55",
|
|
42
42
|
"@types/chai": "^4.3.6",
|
|
43
43
|
"@types/glob": "^7.2.0",
|
|
44
44
|
"@types/minimist": "^1.2.3",
|