@abaplint/cli 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.
Files changed (2) hide show
  1. package/build/cli.js +5 -1
  2. package/package.json +2 -2
package/build/cli.js CHANGED
@@ -27357,6 +27357,10 @@ class TypeUtils {
27357
27357
  return false;
27358
27358
  }
27359
27359
  isCharLikeField(type) {
27360
+ if (type instanceof basic_1.StructureType
27361
+ || (type instanceof basic_1.TableType && type.isWithHeader())) {
27362
+ return this.isCharLikeStrict(type);
27363
+ }
27360
27364
  return type instanceof basic_1.CharacterType
27361
27365
  || type instanceof basic_1.NumericType
27362
27366
  || type instanceof basic_1.DateType
@@ -69433,7 +69437,7 @@ class Registry {
69433
69437
  }
69434
69438
  static abaplintVersion() {
69435
69439
  // magic, see build script "version.js"
69436
- return "2.120.14";
69440
+ return "2.120.15";
69437
69441
  }
69438
69442
  getDDICReferences() {
69439
69443
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.120.14",
3
+ "version": "2.120.15",
4
4
  "description": "abaplint - Command Line Interface",
5
5
  "funding": "https://github.com/sponsors/larshp",
6
6
  "bin": {
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "homepage": "https://abaplint.org",
41
41
  "devDependencies": {
42
- "@abaplint/core": "^2.120.14",
42
+ "@abaplint/core": "^2.120.15",
43
43
  "@types/chai": "^4.3.20",
44
44
  "@types/minimist": "^1.2.5",
45
45
  "@types/mocha": "^10.0.10",