@abaplint/core 2.103.0 → 2.103.1

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.
@@ -107,13 +107,14 @@ class ClassDefinition extends _identifier_1.Identifier {
107
107
  while (sup !== undefined) {
108
108
  const cdef = scope.findClassDefinition(sup);
109
109
  for (const m of ((_a = cdef === null || cdef === void 0 ? void 0 : cdef.getMethodDefinitions()) === null || _a === void 0 ? void 0 : _a.getAll()) || []) {
110
+ const name = m.getName().toUpperCase();
110
111
  if (m.getVisibility() === visibility_1.Visibility.Private) {
111
112
  continue;
112
113
  }
113
- else if (m.getName().toUpperCase() === "CONSTRUCTOR") {
114
+ else if (name === "CONSTRUCTOR" || name === "CLASS_CONSTRUCTOR") {
114
115
  continue;
115
116
  }
116
- names.add(m.getName().toUpperCase());
117
+ names.add(name);
117
118
  }
118
119
  for (const a of (cdef === null || cdef === void 0 ? void 0 : cdef.getAliases().getAll()) || []) {
119
120
  names.add(a.getName().toUpperCase());
@@ -65,7 +65,7 @@ class Registry {
65
65
  }
66
66
  static abaplintVersion() {
67
67
  // magic, see build script "version.sh"
68
- return "2.103.0";
68
+ return "2.103.1";
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.103.0",
3
+ "version": "2.103.1",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",