@abaplint/core 2.102.42 → 2.102.43

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.
@@ -65,7 +65,7 @@ class Registry {
65
65
  }
66
66
  static abaplintVersion() {
67
67
  // magic, see build script "version.sh"
68
- return "2.102.42";
68
+ return "2.102.43";
69
69
  }
70
70
  getDDICReferences() {
71
71
  return this.ddicReferences;
@@ -142,7 +142,8 @@ FIND statement with MATCH COUNT is considered okay if subrc is not checked`,
142
142
  if (statement.get() instanceof _statement_1.Comment) {
143
143
  continue;
144
144
  }
145
- else if (statement.get() instanceof Statements.EndIf) {
145
+ else if (statement.get() instanceof Statements.EndIf
146
+ || statement.get() instanceof Statements.EndTestSeam) {
146
147
  continue;
147
148
  }
148
149
  else {
@@ -169,7 +170,8 @@ FIND statement with MATCH COUNT is considered okay if subrc is not checked`,
169
170
  return true;
170
171
  }
171
172
  }
172
- else if (statement.get() instanceof Statements.EndIf) {
173
+ else if (statement.get() instanceof Statements.EndIf
174
+ || statement.get() instanceof Statements.EndTestSeam) {
173
175
  continue;
174
176
  }
175
177
  else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.102.42",
3
+ "version": "2.102.43",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",