@abaplint/transpiler-cli 2.3.114 → 2.3.115
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 +5 -2
- package/package.json +3 -3
package/build/bundle.js
CHANGED
|
@@ -20644,6 +20644,9 @@ class BasicTypes {
|
|
|
20644
20644
|
else if (ddic.type instanceof basic_1.VoidType) {
|
|
20645
20645
|
this.scope.addReference(typeName.getFirstToken(), undefined, _reference_1.ReferenceType.VoidType, this.filename);
|
|
20646
20646
|
}
|
|
20647
|
+
if (ddic.type instanceof basic_1.CharacterType && qualifiedName) {
|
|
20648
|
+
ddic.type = ddic.type.cloneType(qualifiedName);
|
|
20649
|
+
}
|
|
20647
20650
|
return ddic.type;
|
|
20648
20651
|
}
|
|
20649
20652
|
return undefined;
|
|
@@ -41060,7 +41063,7 @@ class DataElement extends _abstract_object_1.AbstractObject {
|
|
|
41060
41063
|
lookup = { type: new Types.UnknownType("DATATYPE unexpectely empty in " + this.getName()) };
|
|
41061
41064
|
}
|
|
41062
41065
|
else {
|
|
41063
|
-
lookup = { type: ddic.textToType(this.parsedXML.datatype, this.parsedXML.leng, this.parsedXML.decimals, this.getName(), this.getName()) };
|
|
41066
|
+
lookup = { type: ddic.textToType(this.parsedXML.datatype, this.parsedXML.leng, this.parsedXML.decimals, this.getName(), this.getName(), undefined, this.getName()) };
|
|
41064
41067
|
}
|
|
41065
41068
|
}
|
|
41066
41069
|
}
|
|
@@ -45822,7 +45825,7 @@ class Registry {
|
|
|
45822
45825
|
}
|
|
45823
45826
|
static abaplintVersion() {
|
|
45824
45827
|
// magic, see build script "version.sh"
|
|
45825
|
-
return "2.95.
|
|
45828
|
+
return "2.95.5";
|
|
45826
45829
|
}
|
|
45827
45830
|
getDDICReferences() {
|
|
45828
45831
|
return this.references;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.115",
|
|
4
4
|
"description": "Transpiler - Command Line Interface",
|
|
5
5
|
"bin": {
|
|
6
6
|
"abap_transpile": "./abap_transpile"
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"author": "abaplint",
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@abaplint/transpiler": "^2.3.
|
|
28
|
+
"@abaplint/transpiler": "^2.3.115",
|
|
29
29
|
"@types/glob": "^7.2.0",
|
|
30
30
|
"glob": "=7.2.0",
|
|
31
31
|
"@types/progress": "^2.0.5",
|
|
32
|
-
"@abaplint/core": "^2.95.
|
|
32
|
+
"@abaplint/core": "^2.95.5",
|
|
33
33
|
"progress": "^2.0.3",
|
|
34
34
|
"webpack": "^5.75.0",
|
|
35
35
|
"webpack-cli": "^5.0.1",
|