@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
|
}
|
package/build/src/registry.js
CHANGED