@abaplint/transpiler-cli 2.7.81 → 2.7.82
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 +7 -0
- package/package.json +2 -2
package/build/bundle.js
CHANGED
|
@@ -80946,6 +80946,13 @@ class Traversal {
|
|
|
80946
80946
|
}
|
|
80947
80947
|
}
|
|
80948
80948
|
}
|
|
80949
|
+
else if (c.get() instanceof abaplint.Expressions.AttributeName
|
|
80950
|
+
&& context instanceof abaplint.BasicTypes.DataReference) {
|
|
80951
|
+
const type = context.getType();
|
|
80952
|
+
if (type instanceof abaplint.BasicTypes.StructureType) {
|
|
80953
|
+
context = type.getComponentByName(c.concatTokens());
|
|
80954
|
+
}
|
|
80955
|
+
}
|
|
80949
80956
|
}
|
|
80950
80957
|
return context;
|
|
80951
80958
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.82",
|
|
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.
|
|
29
|
+
"@abaplint/transpiler": "^2.7.82",
|
|
30
30
|
"@types/glob": "^7.2.0",
|
|
31
31
|
"glob": "=7.2.0",
|
|
32
32
|
"@types/progress": "^2.0.5",
|