@abaplint/cli 2.103.0 → 2.103.2
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 +4 -3
- package/package.json +5 -5
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 (
|
|
37198
|
+
else if (name === "CONSTRUCTOR" || name === "CLASS_CONSTRUCTOR") {
|
|
37198
37199
|
continue;
|
|
37199
37200
|
}
|
|
37200
|
-
names.add(
|
|
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.
|
|
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.
|
|
3
|
+
"version": "2.103.2",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -38,13 +38,13 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://abaplint.org",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@abaplint/core": "^2.103.
|
|
41
|
+
"@abaplint/core": "^2.103.1",
|
|
42
42
|
"@types/chai": "^4.3.9",
|
|
43
43
|
"@types/glob": "^7.2.0",
|
|
44
|
-
"@types/minimist": "^1.2.
|
|
45
|
-
"@types/mocha": "^10.0.
|
|
44
|
+
"@types/minimist": "^1.2.5",
|
|
45
|
+
"@types/mocha": "^10.0.4",
|
|
46
46
|
"@types/node": "^20.8.10",
|
|
47
|
-
"@types/progress": "^2.0.
|
|
47
|
+
"@types/progress": "^2.0.7",
|
|
48
48
|
"chai": "^4.3.10",
|
|
49
49
|
"chalk": "^5.3.0",
|
|
50
50
|
"eslint": "^8.53.0",
|