@abaplint/cli 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.
- package/build/cli.js +5 -2
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -37199,11 +37199,14 @@ class ClassDefinition extends _identifier_1.Identifier {
|
|
|
37199
37199
|
}
|
|
37200
37200
|
names.add(m.getName().toUpperCase());
|
|
37201
37201
|
}
|
|
37202
|
+
for (const a of (cdef === null || cdef === void 0 ? void 0 : cdef.getAliases().getAll()) || []) {
|
|
37203
|
+
names.add(a.getName().toUpperCase());
|
|
37204
|
+
}
|
|
37202
37205
|
sup = cdef === null || cdef === void 0 ? void 0 : cdef.getSuperClass();
|
|
37203
37206
|
}
|
|
37204
37207
|
for (const m of this.getMethodDefinitions().getAll()) {
|
|
37205
37208
|
if (names.has(m.getName().toUpperCase()) && m.isRedefinition() === false) {
|
|
37206
|
-
throw new Error(
|
|
37209
|
+
throw new Error(`${m.getName().toUpperCase()} already declared in superclass`);
|
|
37207
37210
|
}
|
|
37208
37211
|
}
|
|
37209
37212
|
}
|
|
@@ -50695,7 +50698,7 @@ class Registry {
|
|
|
50695
50698
|
}
|
|
50696
50699
|
static abaplintVersion() {
|
|
50697
50700
|
// magic, see build script "version.sh"
|
|
50698
|
-
return "2.102.
|
|
50701
|
+
return "2.102.70";
|
|
50699
50702
|
}
|
|
50700
50703
|
getDDICReferences() {
|
|
50701
50704
|
return this.ddicReferences;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.102.
|
|
3
|
+
"version": "2.102.70",
|
|
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.102.
|
|
41
|
+
"@abaplint/core": "^2.102.70",
|
|
42
42
|
"@types/chai": "^4.3.9",
|
|
43
43
|
"@types/glob": "^7.2.0",
|
|
44
44
|
"@types/minimist": "^1.2.4",
|