@abaplint/cli 2.119.63 → 2.119.64

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 -2
  2. package/package.json +2 -2
package/build/cli.js CHANGED
@@ -34190,6 +34190,9 @@ class Source {
34190
34190
  if (context instanceof basic_1.FloatType && found instanceof basic_1.IntegerType) {
34191
34191
  return context;
34192
34192
  }
34193
+ else if (context instanceof basic_1.IntegerType && found instanceof basic_1.HexType) {
34194
+ return context;
34195
+ }
34193
34196
  else if ((context instanceof basic_1.IntegerType || context instanceof basic_1.FloatType) && (found === null || found === void 0 ? void 0 : found.isGeneric())) {
34194
34197
  return context;
34195
34198
  }
@@ -68820,7 +68823,7 @@ class Registry {
68820
68823
  }
68821
68824
  static abaplintVersion() {
68822
68825
  // magic, see build script "version.js"
68823
- return "2.119.63";
68826
+ return "2.119.64";
68824
68827
  }
68825
68828
  getDDICReferences() {
68826
68829
  return this.ddicReferences;
@@ -78408,7 +78411,7 @@ class DynproChecks {
78408
78411
  return ret;
78409
78412
  }
78410
78413
  hasContainerRelativeCoordinates(field) {
78411
- return field.contType === "TABLE_CTRL" || field.contType === "LOOP";
78414
+ return field.contType === "TABLE_CTRL" || field.contType === "LOOP" || field.contType === "STRIP_CTRL";
78412
78415
  }
78413
78416
  overlaps(first, second) {
78414
78417
  if (first.line === 0 || second.line === 0 || first.column === 0 || second.column === 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.119.63",
3
+ "version": "2.119.64",
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.119.63",
42
+ "@abaplint/core": "^2.119.64",
43
43
  "@types/chai": "^4.3.20",
44
44
  "@types/minimist": "^1.2.5",
45
45
  "@types/mocha": "^10.0.10",