@abaplint/runtime 2.3.38 → 2.3.39

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.
@@ -14,6 +14,11 @@ function assign(input) {
14
14
  // @ts-ignore
15
15
  input.dynamicSource = input.dynamicSource.get()[split[1].toLowerCase()];
16
16
  }
17
+ else if (input.dynamicSource instanceof types_1.DataReference) {
18
+ const [_before, after] = input.dynamicName.split("->");
19
+ // @ts-ignore
20
+ input.dynamicSource = input.dynamicSource.get()[after.toLowerCase()];
21
+ }
17
22
  else {
18
23
  // @ts-ignore
19
24
  abap.builtin.sy.get().subrc.set(4);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/runtime",
3
- "version": "2.3.38",
3
+ "version": "2.3.39",
4
4
  "description": "Transpiler - Runtime",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",