@abaplint/cli 2.113.189 → 2.113.191
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.
- package/build/cli.js +6 -2
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -54955,7 +54955,7 @@ class Registry {
|
|
|
54955
54955
|
}
|
|
54956
54956
|
static abaplintVersion() {
|
|
54957
54957
|
// magic, see build script "version.sh"
|
|
54958
|
-
return "2.113.
|
|
54958
|
+
return "2.113.191";
|
|
54959
54959
|
}
|
|
54960
54960
|
getDDICReferences() {
|
|
54961
54961
|
return this.ddicReferences;
|
|
@@ -63047,7 +63047,11 @@ ${indentation} output = ${uniqueName}.\n`;
|
|
|
63047
63047
|
if (cdef instanceof _typed_identifier_1.TypedIdentifier) {
|
|
63048
63048
|
const foo = cdef.getType();
|
|
63049
63049
|
if (foo instanceof basic_1.ObjectReferenceType) {
|
|
63050
|
-
cdef = foo.
|
|
63050
|
+
cdef = spag === null || spag === void 0 ? void 0 : spag.findClassDefinition(foo.getQualifiedName());
|
|
63051
|
+
if (cdef === undefined) {
|
|
63052
|
+
const cglobal = this.highReg.getObject("CLAS", foo.getQualifiedName());
|
|
63053
|
+
cdef = cglobal === null || cglobal === void 0 ? void 0 : cglobal.getDefinition();
|
|
63054
|
+
}
|
|
63051
63055
|
}
|
|
63052
63056
|
else {
|
|
63053
63057
|
throw new Error("newParameters, downport, unexpected");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.113.
|
|
3
|
+
"version": "2.113.191",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://abaplint.org",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@abaplint/core": "^2.113.
|
|
41
|
+
"@abaplint/core": "^2.113.191",
|
|
42
42
|
"@types/chai": "^4.3.20",
|
|
43
43
|
"@types/minimist": "^1.2.5",
|
|
44
44
|
"@types/mocha": "^10.0.10",
|