@abaplint/core 2.82.4 → 2.82.5

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.
@@ -547,10 +547,11 @@ class BasicTypes {
547
547
  if (this.scope.existsObject(name).found === true) {
548
548
  return undefined;
549
549
  }
550
- if (this.scope.getDDIC().inErrorNamespace(name) === true) {
550
+ else if (this.scope.getDDIC().inErrorNamespace(name) === true) {
551
551
  throw new Error("resolveConstantValue, not found: " + name);
552
552
  }
553
553
  else {
554
+ this.scope.addReference(first.getFirstToken(), undefined, _reference_1.ReferenceType.ObjectOrientedVoidReference, this.filename, { ooName: name.toUpperCase() });
554
555
  return undefined;
555
556
  }
556
557
  }
@@ -68,7 +68,7 @@ class Registry {
68
68
  }
69
69
  static abaplintVersion() {
70
70
  // magic, see build script "version.sh"
71
- return "2.82.4";
71
+ return "2.82.5";
72
72
  }
73
73
  getDDICReferences() {
74
74
  return this.references;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.82.4",
3
+ "version": "2.82.5",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",