@abaplint/cli 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.
Files changed (2) hide show
  1. package/build/cli.js +4 -3
  2. package/package.json +2 -2
package/build/cli.js CHANGED
@@ -37191,13 +37191,14 @@ class ClassDefinition extends _identifier_1.Identifier {
37191
37191
  while (sup !== undefined) {
37192
37192
  const cdef = scope.findClassDefinition(sup);
37193
37193
  for (const m of ((_a = cdef === null || cdef === void 0 ? void 0 : cdef.getMethodDefinitions()) === null || _a === void 0 ? void 0 : _a.getAll()) || []) {
37194
+ const name = m.getName().toUpperCase();
37194
37195
  if (m.getVisibility() === visibility_1.Visibility.Private) {
37195
37196
  continue;
37196
37197
  }
37197
- else if (m.getName().toUpperCase() === "CONSTRUCTOR") {
37198
+ else if (name === "CONSTRUCTOR" || name === "CLASS_CONSTRUCTOR") {
37198
37199
  continue;
37199
37200
  }
37200
- names.add(m.getName().toUpperCase());
37201
+ names.add(name);
37201
37202
  }
37202
37203
  for (const a of (cdef === null || cdef === void 0 ? void 0 : cdef.getAliases().getAll()) || []) {
37203
37204
  names.add(a.getName().toUpperCase());
@@ -50734,7 +50735,7 @@ class Registry {
50734
50735
  }
50735
50736
  static abaplintVersion() {
50736
50737
  // magic, see build script "version.sh"
50737
- return "2.103.0";
50738
+ return "2.103.1";
50738
50739
  }
50739
50740
  getDDICReferences() {
50740
50741
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.103.0",
3
+ "version": "2.103.1",
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.103.0",
41
+ "@abaplint/core": "^2.103.1",
42
42
  "@types/chai": "^4.3.9",
43
43
  "@types/glob": "^7.2.0",
44
44
  "@types/minimist": "^1.2.4",