@abaplint/core 2.85.14 → 2.85.15

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.
@@ -515,7 +515,8 @@ class BasicTypes {
515
515
  }
516
516
  subs.shift();
517
517
  while (subs.length > 0) {
518
- if (foundType instanceof Types.UnknownType) {
518
+ if (foundType instanceof Types.UnknownType
519
+ || foundType instanceof Types.VoidType) {
519
520
  return foundType;
520
521
  }
521
522
  else if (!(foundType instanceof Types.StructureType)) {
@@ -68,7 +68,7 @@ class Registry {
68
68
  }
69
69
  static abaplintVersion() {
70
70
  // magic, see build script "version.sh"
71
- return "2.85.14";
71
+ return "2.85.15";
72
72
  }
73
73
  getDDICReferences() {
74
74
  return this.references;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.85.14",
3
+ "version": "2.85.15",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",