@abaplint/core 2.113.163 → 2.113.164

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.
@@ -67,7 +67,7 @@ class Registry {
67
67
  }
68
68
  static abaplintVersion() {
69
69
  // magic, see build script "version.sh"
70
- return "2.113.163";
70
+ return "2.113.164";
71
71
  }
72
72
  getDDICReferences() {
73
73
  return this.ddicReferences;
@@ -846,7 +846,7 @@ ${indentation}`);
846
846
  const fix = edit_helper_1.EditHelper.merge(fix2, fix1);
847
847
  return issue_1.Issue.atToken(lowFile, inlineData.getFirstToken(), "Outline SELECT @DATA", this.getMetadata().key, this.conf.severity, fix);
848
848
  }
849
- // the anonymous type minght be used in inferred type statements, define it so it can be referred
849
+ // the anonymous type might be used in inferred type statements, define it so it can be referred
850
850
  anonymousTableType(high, lowFile, highSyntax) {
851
851
  if (!(high.get() instanceof Statements.Data)) {
852
852
  return undefined;
@@ -1833,6 +1833,9 @@ ${indentation} output = ${uniqueName}.\n`;
1833
1833
  if (!(node.get() instanceof Statements.Loop)) {
1834
1834
  return undefined;
1835
1835
  }
1836
+ if (this.lowReg.getConfig().getVersion() === version_1.Version.OpenABAP) {
1837
+ return undefined;
1838
+ }
1836
1839
  const source = (_a = node.findDirectExpression(Expressions.LoopSource)) === null || _a === void 0 ? void 0 : _a.findDirectExpression(Expressions.SimpleSource2);
1837
1840
  if (source === undefined) {
1838
1841
  return undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.113.163",
3
+ "version": "2.113.164",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",