@abaplint/transpiler-cli 2.7.131 → 2.7.133
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/bundle.js +4 -3
- package/package.json +3 -3
package/build/bundle.js
CHANGED
|
@@ -36143,13 +36143,14 @@ class ClassDefinition extends _identifier_1.Identifier {
|
|
|
36143
36143
|
while (sup !== undefined) {
|
|
36144
36144
|
const cdef = scope.findClassDefinition(sup);
|
|
36145
36145
|
for (const m of ((_a = cdef === null || cdef === void 0 ? void 0 : cdef.getMethodDefinitions()) === null || _a === void 0 ? void 0 : _a.getAll()) || []) {
|
|
36146
|
+
const name = m.getName().toUpperCase();
|
|
36146
36147
|
if (m.getVisibility() === visibility_1.Visibility.Private) {
|
|
36147
36148
|
continue;
|
|
36148
36149
|
}
|
|
36149
|
-
else if (
|
|
36150
|
+
else if (name === "CONSTRUCTOR" || name === "CLASS_CONSTRUCTOR") {
|
|
36150
36151
|
continue;
|
|
36151
36152
|
}
|
|
36152
|
-
names.add(
|
|
36153
|
+
names.add(name);
|
|
36153
36154
|
}
|
|
36154
36155
|
for (const a of (cdef === null || cdef === void 0 ? void 0 : cdef.getAliases().getAll()) || []) {
|
|
36155
36156
|
names.add(a.getName().toUpperCase());
|
|
@@ -49686,7 +49687,7 @@ class Registry {
|
|
|
49686
49687
|
}
|
|
49687
49688
|
static abaplintVersion() {
|
|
49688
49689
|
// magic, see build script "version.sh"
|
|
49689
|
-
return "2.103.
|
|
49690
|
+
return "2.103.1";
|
|
49690
49691
|
}
|
|
49691
49692
|
getDDICReferences() {
|
|
49692
49693
|
return this.ddicReferences;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.133",
|
|
4
4
|
"description": "Transpiler - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
"author": "abaplint",
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@abaplint/transpiler": "^2.7.
|
|
29
|
+
"@abaplint/transpiler": "^2.7.133",
|
|
30
30
|
"@types/glob": "^7.2.0",
|
|
31
31
|
"glob": "=7.2.0",
|
|
32
32
|
"@types/progress": "^2.0.6",
|
|
33
33
|
"@types/node": "^20.8.10",
|
|
34
|
-
"@abaplint/core": "^2.103.
|
|
34
|
+
"@abaplint/core": "^2.103.1",
|
|
35
35
|
"progress": "^2.0.3",
|
|
36
36
|
"webpack": "^5.89.0",
|
|
37
37
|
"webpack-cli": "^5.1.4",
|