@abaplint/transpiler-cli 2.7.64 → 2.7.65

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 +2 -2
  2. package/package.json +2 -2
package/build/bundle.js CHANGED
@@ -79950,11 +79950,11 @@ class TranspileTypes {
79950
79950
  else if (type instanceof abaplint.BasicTypes.StructureType) {
79951
79951
  resolved = "Structure";
79952
79952
  const list = [];
79953
- const renamingSuffix = [];
79953
+ const renamingSuffix = {};
79954
79954
  for (const c of type.getComponents()) {
79955
79955
  list.push(`"` + c.name.toLowerCase() + `": ` + this.toType(c.type));
79956
79956
  if (c.renamingSuffix) {
79957
- renamingSuffix.push(c.renamingSuffix);
79957
+ renamingSuffix[c.name.toLowerCase()] = c.renamingSuffix;
79958
79958
  }
79959
79959
  }
79960
79960
  extra = "{" + list.join(", ") + "}";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/transpiler-cli",
3
- "version": "2.7.64",
3
+ "version": "2.7.65",
4
4
  "description": "Transpiler - Command Line Interface",
5
5
  "funding": "https://github.com/sponsors/larshp",
6
6
  "bin": {
@@ -26,7 +26,7 @@
26
26
  "author": "abaplint",
27
27
  "license": "MIT",
28
28
  "devDependencies": {
29
- "@abaplint/transpiler": "^2.7.64",
29
+ "@abaplint/transpiler": "^2.7.65",
30
30
  "@types/glob": "^7.2.0",
31
31
  "glob": "=7.2.0",
32
32
  "@types/progress": "^2.0.5",