@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
|
package/build/src/registry.js
CHANGED