@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
@@ -65,7 +65,7 @@ class Registry {
65
65
  }
66
66
  static abaplintVersion() {
67
67
  // magic, see build script "version.sh"
68
- return "2.102.54";
68
+ return "2.102.55";
69
69
  }
70
70
  getDDICReferences() {
71
71
  return this.ddicReferences;
@@ -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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.102.54",
3
+ "version": "2.102.55",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",