@abaplint/transpiler-cli 2.5.68 → 2.5.70

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.
Files changed (2) hide show
  1. package/build/bundle.js +8 -1
  2. package/package.json +2 -2
package/build/bundle.js CHANGED
@@ -68672,6 +68672,9 @@ class MethodSourceTranspiler {
68672
68672
  if (call.endsWith(".")) {
68673
68673
  call = call.substring(0, call.length - 1);
68674
68674
  }
68675
+ if (call === "") {
68676
+ call = "this";
68677
+ }
68675
68678
  call += "[";
68676
68679
  call += traversal.traverse(second).getCode();
68677
68680
  call += ".get().toLowerCase()]";
@@ -70970,7 +70973,11 @@ class AssignTranspiler {
70970
70973
  }
70971
70974
  else if ((firstFirst === null || firstFirst === void 0 ? void 0 : firstFirst.get()) instanceof abaplint.Expressions.FieldChain && firstFirst instanceof abaplint.Nodes.ExpressionNode) {
70972
70975
  const code = new expressions_1.FieldChainTranspiler(true).transpile(firstFirst, traversal).getCode();
70973
- options.push(`dynamicSource: (() => {try { return eval(${code}.toLowerCase().match(/\\w+/)[0]); } catch {}})()`);
70976
+ options.push(`dynamicSource: (() => {
70977
+ const name = ${code}.toLowerCase().replace(/[~\\/]/g, "$").match(/[\\w\\$\\/]+/)[0];
70978
+ try { return eval(name); } catch {}
70979
+ try { return eval("this." + name); } catch {}
70980
+ })()`);
70974
70981
  }
70975
70982
  }
70976
70983
  else if ((first === null || first === void 0 ? void 0 : first.get()) instanceof abaplint.Expressions.Source && first instanceof abaplint.Nodes.ExpressionNode) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/transpiler-cli",
3
- "version": "2.5.68",
3
+ "version": "2.5.70",
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.5.68",
28
+ "@abaplint/transpiler": "^2.5.70",
29
29
  "@types/glob": "^7.2.0",
30
30
  "glob": "=7.2.0",
31
31
  "@types/progress": "^2.0.5",