@abaplint/core 2.105.7 → 2.105.8

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.
@@ -21,6 +21,9 @@ class TypeUtils {
21
21
  }
22
22
  return true;
23
23
  }
24
+ else if (type instanceof basic_1.TableType && type.isWithHeader()) {
25
+ return this.isCharLikeStrict(type.getRowType());
26
+ }
24
27
  else if (type instanceof basic_1.StringType
25
28
  || type instanceof basic_1.AnyType
26
29
  || type instanceof basic_1.CharacterType
@@ -90,6 +93,9 @@ class TypeUtils {
90
93
  }
91
94
  return true;
92
95
  }
96
+ else if (type instanceof basic_1.TableType && type.isWithHeader()) {
97
+ return this.isHexLike(type.getRowType());
98
+ }
93
99
  else if (type instanceof basic_1.XStringType
94
100
  || type instanceof basic_1.HexType
95
101
  || type instanceof basic_1.VoidType
@@ -65,7 +65,7 @@ class Registry {
65
65
  }
66
66
  static abaplintVersion() {
67
67
  // magic, see build script "version.sh"
68
- return "2.105.7";
68
+ return "2.105.8";
69
69
  }
70
70
  getDDICReferences() {
71
71
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.105.7",
3
+ "version": "2.105.8",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",