@abaplint/core 2.93.85 → 2.93.86

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.
@@ -108,6 +108,7 @@ class StatementParser {
108
108
  const concat = statement.concatTokens().toUpperCase();
109
109
  if (concat.startsWith("CALL METHOD ") === false
110
110
  && concat.startsWith("RAISE EXCEPTION TYPE ") === false
111
+ && concat.startsWith("LOOP AT ") === false
111
112
  && concat.startsWith("CALL FUNCTION ") === false) {
112
113
  for (const { first, second } of this.buildSplits(statement.getTokens())) {
113
114
  if (second.length === 1) {
@@ -63,7 +63,7 @@ class Registry {
63
63
  }
64
64
  static abaplintVersion() {
65
65
  // magic, see build script "version.sh"
66
- return "2.93.85";
66
+ return "2.93.86";
67
67
  }
68
68
  getDDICReferences() {
69
69
  return this.references;
@@ -225,6 +225,8 @@ Only one transformation is applied to a statement at a time, so multiple steps m
225
225
  ret.push(Issue.atStatement(lowFile, lowStatements[0], message, this.getMetadata().key));
226
226
  */
227
227
  // hmm, add some way to disable lazyUnknown() in statement_parser.ts
228
+ // alternatively explicit enable it in vscode, its only relevant when a user is
229
+ // actively editing the files
228
230
  continue;
229
231
  }
230
232
  for (let i = 0; i < lowStatements.length; i++) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.93.85",
3
+ "version": "2.93.86",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",