@abaplint/core 2.120.14 → 2.120.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.
@@ -80,6 +80,10 @@ class TypeUtils {
80
80
  return false;
81
81
  }
82
82
  isCharLikeField(type) {
83
+ if (type instanceof basic_1.StructureType
84
+ || (type instanceof basic_1.TableType && type.isWithHeader())) {
85
+ return this.isCharLikeStrict(type);
86
+ }
83
87
  return type instanceof basic_1.CharacterType
84
88
  || type instanceof basic_1.NumericType
85
89
  || type instanceof basic_1.DateType
@@ -75,7 +75,7 @@ class Registry {
75
75
  }
76
76
  static abaplintVersion() {
77
77
  // magic, see build script "version.js"
78
- return "2.120.14";
78
+ return "2.120.15";
79
79
  }
80
80
  getDDICReferences() {
81
81
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.120.14",
3
+ "version": "2.120.15",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",