@abaplint/core 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.
|
@@ -406,6 +406,11 @@ class Lexer {
|
|
|
406
406
|
this.add();
|
|
407
407
|
this.m = this.ModeNormal;
|
|
408
408
|
}
|
|
409
|
+
else if (this.m === this.ModeTemplate
|
|
410
|
+
&& ahead === "}"
|
|
411
|
+
&& current !== "\\") {
|
|
412
|
+
this.add();
|
|
413
|
+
}
|
|
409
414
|
else if (this.m === this.ModeStr
|
|
410
415
|
&& current === "'"
|
|
411
416
|
&& buf.length > 1
|
package/build/src/registry.js
CHANGED
|
@@ -89,6 +89,7 @@ class UnreachableCode extends _abap_rule_1.ABAPRule {
|
|
|
89
89
|
|| s instanceof Statements.EndMethod
|
|
90
90
|
|| s instanceof Statements.EndModule
|
|
91
91
|
|| s instanceof Statements.EndForm
|
|
92
|
+
|| s instanceof Statements.EndTestSeam
|
|
92
93
|
|| s instanceof Statements.EndAt
|
|
93
94
|
|| s instanceof Statements.EndSelect
|
|
94
95
|
|| s instanceof Statements.AtSelectionScreen
|