@abaplint/core 2.113.160 → 2.113.161

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.160";
70
+ return "2.113.161";
71
71
  }
72
72
  getDDICReferences() {
73
73
  return this.ddicReferences;
@@ -2499,6 +2499,9 @@ ${indentation} output = ${uniqueName}.\n`;
2499
2499
  outlineData(node, lowFile, highSyntax) {
2500
2500
  // hmm, no guard here, as DATA(SDF) is valid in 702
2501
2501
  var _a, _b;
2502
+ if (this.lowReg.getConfig().getVersion() === version_1.Version.OpenABAP) {
2503
+ return undefined;
2504
+ }
2502
2505
  for (const i of node.findAllExpressionsRecursive(Expressions.InlineData)) {
2503
2506
  const nameToken = (_a = i.findDirectExpression(Expressions.TargetField)) === null || _a === void 0 ? void 0 : _a.getFirstToken();
2504
2507
  if (nameToken === undefined) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.113.160",
3
+ "version": "2.113.161",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",