@abaplint/core 2.95.4 → 2.95.5
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.
|
@@ -223,6 +223,9 @@ class BasicTypes {
|
|
|
223
223
|
else if (ddic.type instanceof basic_1.VoidType) {
|
|
224
224
|
this.scope.addReference(typeName.getFirstToken(), undefined, _reference_1.ReferenceType.VoidType, this.filename);
|
|
225
225
|
}
|
|
226
|
+
if (ddic.type instanceof basic_1.CharacterType && qualifiedName) {
|
|
227
|
+
ddic.type = ddic.type.cloneType(qualifiedName);
|
|
228
|
+
}
|
|
226
229
|
return ddic.type;
|
|
227
230
|
}
|
|
228
231
|
return undefined;
|
|
@@ -60,7 +60,7 @@ class DataElement extends _abstract_object_1.AbstractObject {
|
|
|
60
60
|
lookup = { type: new Types.UnknownType("DATATYPE unexpectely empty in " + this.getName()) };
|
|
61
61
|
}
|
|
62
62
|
else {
|
|
63
|
-
lookup = { type: ddic.textToType(this.parsedXML.datatype, this.parsedXML.leng, this.parsedXML.decimals, this.getName(), this.getName()) };
|
|
63
|
+
lookup = { type: ddic.textToType(this.parsedXML.datatype, this.parsedXML.leng, this.parsedXML.decimals, this.getName(), this.getName(), undefined, this.getName()) };
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
}
|
package/build/src/registry.js
CHANGED