@abaplint/transpiler 2.10.72 → 2.10.73
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/src/traversal.js +1 -3
- package/package.json +1 -1
package/build/src/traversal.js
CHANGED
|
@@ -434,10 +434,8 @@ class Traversal {
|
|
|
434
434
|
if (method.getVisibility() === abaplint.Visibility.Private) {
|
|
435
435
|
privateHash = "#";
|
|
436
436
|
}
|
|
437
|
-
else {
|
|
438
|
-
continue;
|
|
439
|
-
}
|
|
440
437
|
const methodName = privateHash + Traversal.escapeNamespace(name.replace("~", "$"));
|
|
438
|
+
// NOTE: currently all are needed in the unit test setup
|
|
441
439
|
ret += `"${name.replace("~", "$")}": this.${methodName}.bind(this),\n`;
|
|
442
440
|
}
|
|
443
441
|
/*
|