@abaplint/core 2.85.12 → 2.85.13
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.
|
@@ -7,6 +7,9 @@ class TypeUtils {
|
|
|
7
7
|
if (type === undefined) {
|
|
8
8
|
return false;
|
|
9
9
|
}
|
|
10
|
+
else if (type instanceof basic_1.TableType && type.isWithHeader()) {
|
|
11
|
+
return this.isCharLike(type.getRowType());
|
|
12
|
+
}
|
|
10
13
|
else if (type instanceof basic_1.StructureType) {
|
|
11
14
|
for (const c of type.getComponents()) {
|
|
12
15
|
if (this.isCharLike(c.type) === false) {
|
package/build/src/registry.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/core",
|
|
3
|
-
"version": "2.85.
|
|
3
|
+
"version": "2.85.13",
|
|
4
4
|
"description": "abaplint - Core API",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"typings": "build/abaplint.d.ts",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@microsoft/api-extractor": "^7.19.4",
|
|
49
49
|
"@types/chai": "^4.3.0",
|
|
50
50
|
"@types/mocha": "^9.1.0",
|
|
51
|
-
"@types/node": "^17.0.
|
|
51
|
+
"@types/node": "^17.0.16",
|
|
52
52
|
"chai": "^4.3.6",
|
|
53
53
|
"eslint": "^8.8.0",
|
|
54
54
|
"mocha": "^9.2.0",
|