@abaplint/transpiler-cli 2.3.116 → 2.3.118
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 -2
- package/package.json +2 -2
package/build/bundle.js
CHANGED
|
@@ -68877,10 +68877,10 @@ class TargetTranspiler {
|
|
|
68877
68877
|
}
|
|
68878
68878
|
}
|
|
68879
68879
|
else if (c.get() instanceof core_1.Expressions.AttributeName) {
|
|
68880
|
-
const intf = traversal.isInterfaceAttribute(c.getFirstToken());
|
|
68880
|
+
const intf = traversal_1.Traversal.escapeNamespace(traversal.isInterfaceAttribute(c.getFirstToken()));
|
|
68881
68881
|
let name = traversal_1.Traversal.escapeNamespace(c.getFirstToken().getStr()).replace("~", "$").toLowerCase();
|
|
68882
68882
|
if (intf && name.startsWith(intf) === false) {
|
|
68883
|
-
name =
|
|
68883
|
+
name = intf + "$" + name;
|
|
68884
68884
|
}
|
|
68885
68885
|
ret.append(name, c, traversal);
|
|
68886
68886
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.118",
|
|
4
4
|
"description": "Transpiler - Command Line Interface",
|
|
5
5
|
"bin": {
|
|
6
6
|
"abap_transpile": "./abap_transpile"
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"author": "abaplint",
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@abaplint/transpiler": "^2.3.
|
|
28
|
+
"@abaplint/transpiler": "^2.3.118",
|
|
29
29
|
"@types/glob": "^7.2.0",
|
|
30
30
|
"glob": "=7.2.0",
|
|
31
31
|
"@types/progress": "^2.0.5",
|