@abaplint/cli 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.
Files changed (2) hide show
  1. package/build/cli.js +10 -1
  2. package/package.json +4 -4
package/build/cli.js CHANGED
@@ -22917,6 +22917,15 @@ class ObjectOriented {
22917
22917
  if (search) {
22918
22918
  return search;
22919
22919
  }
22920
+ for (const a of def.getAliases()) {
22921
+ if (a.getName().toUpperCase() === name.toUpperCase()) {
22922
+ const comp = a.getComponent();
22923
+ const res = this.searchTypeName(this.scope.findObjectDefinition(comp.split("~")[0]), comp.split("~")[1]);
22924
+ if (res) {
22925
+ return res;
22926
+ }
22927
+ }
22928
+ }
22920
22929
  if (name.includes("~")) {
22921
22930
  const interfaceName = name.split("~")[0];
22922
22931
  if (def.getImplementing().some((a) => a.name.toUpperCase() === interfaceName.toUpperCase())) {
@@ -54502,7 +54511,7 @@ class Registry {
54502
54511
  }
54503
54512
  static abaplintVersion() {
54504
54513
  // magic, see build script "version.sh"
54505
- return "2.113.211";
54514
+ return "2.113.212";
54506
54515
  }
54507
54516
  getDDICReferences() {
54508
54517
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.113.211",
3
+ "version": "2.113.212",
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.211",
41
+ "@abaplint/core": "^2.113.212",
42
42
  "@types/chai": "^4.3.20",
43
43
  "@types/minimist": "^1.2.5",
44
44
  "@types/mocha": "^10.0.10",
@@ -47,10 +47,10 @@
47
47
  "chai": "^4.5.0",
48
48
  "p-limit": "^3.1.0",
49
49
  "chalk": "^5.6.2",
50
- "eslint": "^9.35.0",
50
+ "eslint": "^9.36.0",
51
51
  "glob": "^11.0.3",
52
52
  "json5": "^2.2.3",
53
- "memfs": "^4.39.0",
53
+ "memfs": "^4.46.1",
54
54
  "minimist": "^1.2.8",
55
55
  "mocha": "^11.7.2",
56
56
  "progress": "^2.0.3",