@abaplint/core 2.102.69 → 2.102.70

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.
@@ -115,11 +115,14 @@ class ClassDefinition extends _identifier_1.Identifier {
115
115
  }
116
116
  names.add(m.getName().toUpperCase());
117
117
  }
118
+ for (const a of (cdef === null || cdef === void 0 ? void 0 : cdef.getAliases().getAll()) || []) {
119
+ names.add(a.getName().toUpperCase());
120
+ }
118
121
  sup = cdef === null || cdef === void 0 ? void 0 : cdef.getSuperClass();
119
122
  }
120
123
  for (const m of this.getMethodDefinitions().getAll()) {
121
124
  if (names.has(m.getName().toUpperCase()) && m.isRedefinition() === false) {
122
- throw new Error(`Method ${m.getName().toUpperCase()} already declared in superclass`);
125
+ throw new Error(`${m.getName().toUpperCase()} already declared in superclass`);
123
126
  }
124
127
  }
125
128
  }
@@ -65,7 +65,7 @@ class Registry {
65
65
  }
66
66
  static abaplintVersion() {
67
67
  // magic, see build script "version.sh"
68
- return "2.102.69";
68
+ return "2.102.70";
69
69
  }
70
70
  getDDICReferences() {
71
71
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.102.69",
3
+ "version": "2.102.70",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",