@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
  }
@@ -63,7 +63,7 @@ class Registry {
63
63
  }
64
64
  static abaplintVersion() {
65
65
  // magic, see build script "version.sh"
66
- return "2.95.4";
66
+ return "2.95.5";
67
67
  }
68
68
  getDDICReferences() {
69
69
  return this.references;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.95.4",
3
+ "version": "2.95.5",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",