@abaplint/transpiler-cli 2.11.15 → 2.11.16
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 +4 -1
- package/package.json +2 -2
package/build/bundle.js
CHANGED
|
@@ -86778,8 +86778,11 @@ class ReadTableTranspiler {
|
|
|
86778
86778
|
}
|
|
86779
86779
|
const rt = node.findDirectExpression(abaplint.Expressions.ReadTableTarget);
|
|
86780
86780
|
const target = rt?.findDirectExpression(abaplint.Expressions.Target);
|
|
86781
|
-
|
|
86781
|
+
let fs = rt?.findDirectExpression(abaplint.Expressions.FSTarget);
|
|
86782
86782
|
if (rt && fs) {
|
|
86783
|
+
if (fs?.getFirstChild()?.get() instanceof abaplint.Expressions.InlineFS) {
|
|
86784
|
+
fs = fs.findFirstExpression(abaplint.Expressions.TargetFieldSymbol);
|
|
86785
|
+
}
|
|
86783
86786
|
const name = new expressions_1.FieldSymbolTranspiler().transpile(fs, traversal).getCode();
|
|
86784
86787
|
extra.push("assigning: " + name);
|
|
86785
86788
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.16",
|
|
4
4
|
"description": "Transpiler - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@abaplint/core": "^2.113.163",
|
|
31
|
-
"@abaplint/transpiler": "^2.11.
|
|
31
|
+
"@abaplint/transpiler": "^2.11.16",
|
|
32
32
|
"@types/glob": "^8.1.0",
|
|
33
33
|
"@types/node": "^24.2.1",
|
|
34
34
|
"@types/progress": "^2.0.7",
|