@abaplint/core 2.113.211 → 2.113.212
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.
|
@@ -207,6 +207,15 @@ class ObjectOriented {
|
|
|
207
207
|
if (search) {
|
|
208
208
|
return search;
|
|
209
209
|
}
|
|
210
|
+
for (const a of def.getAliases()) {
|
|
211
|
+
if (a.getName().toUpperCase() === name.toUpperCase()) {
|
|
212
|
+
const comp = a.getComponent();
|
|
213
|
+
const res = this.searchTypeName(this.scope.findObjectDefinition(comp.split("~")[0]), comp.split("~")[1]);
|
|
214
|
+
if (res) {
|
|
215
|
+
return res;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
}
|
|
210
219
|
if (name.includes("~")) {
|
|
211
220
|
const interfaceName = name.split("~")[0];
|
|
212
221
|
if (def.getImplementing().some((a) => a.name.toUpperCase() === interfaceName.toUpperCase())) {
|
package/build/src/registry.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/core",
|
|
3
|
-
"version": "2.113.
|
|
3
|
+
"version": "2.113.212",
|
|
4
4
|
"description": "abaplint - Core API",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"typings": "build/abaplint.d.ts",
|
|
@@ -53,9 +53,9 @@
|
|
|
53
53
|
"@microsoft/api-extractor": "^7.52.13",
|
|
54
54
|
"@types/chai": "^4.3.20",
|
|
55
55
|
"@types/mocha": "^10.0.10",
|
|
56
|
-
"@types/node": "^24.
|
|
56
|
+
"@types/node": "^24.5.2",
|
|
57
57
|
"chai": "^4.5.0",
|
|
58
|
-
"eslint": "^9.
|
|
58
|
+
"eslint": "^9.36.0",
|
|
59
59
|
"mocha": "^11.7.2",
|
|
60
60
|
"c8": "^10.1.3",
|
|
61
61
|
"source-map-support": "^0.5.21",
|