@abaplint/transpiler-cli 2.13.19 → 2.13.20
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 +2 -1
- package/package.json +2 -2
package/build/bundle.js
CHANGED
|
@@ -83187,7 +83187,8 @@ class MethodSourceTranspiler {
|
|
|
83187
83187
|
const m = traversal.findMethodReference(nameToken, traversal.findCurrentScopeByToken(nameToken));
|
|
83188
83188
|
if (i === 0 && m) {
|
|
83189
83189
|
this.prepend += "this.";
|
|
83190
|
-
if (this.privatePrefix && m.def.getVisibility() === core_1.Visibility.Private
|
|
83190
|
+
if (this.privatePrefix && m.def.getVisibility() === core_1.Visibility.Private
|
|
83191
|
+
&& m.def.isStatic() === false) { // todo: this is probably wrong?
|
|
83191
83192
|
this.prepend += "#";
|
|
83192
83193
|
}
|
|
83193
83194
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.20",
|
|
4
4
|
"description": "Transpiler - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@abaplint/core": "^2.119.12",
|
|
31
|
-
"@abaplint/transpiler": "^2.13.
|
|
31
|
+
"@abaplint/transpiler": "^2.13.20",
|
|
32
32
|
"@types/glob": "^8.1.0",
|
|
33
33
|
"@types/node": "^24.12.2",
|
|
34
34
|
"@types/progress": "^2.0.7",
|