@abaplint/core 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.
@@ -336,6 +336,9 @@ class Source {
336
336
  if (context instanceof basic_1.FloatType && found instanceof basic_1.IntegerType) {
337
337
  return context;
338
338
  }
339
+ else if (context instanceof basic_1.IntegerType && found instanceof basic_1.HexType) {
340
+ return context;
341
+ }
339
342
  else if ((context instanceof basic_1.IntegerType || context instanceof basic_1.FloatType) && (found === null || found === void 0 ? void 0 : found.isGeneric())) {
340
343
  return context;
341
344
  }
@@ -75,7 +75,7 @@ class Registry {
75
75
  }
76
76
  static abaplintVersion() {
77
77
  // magic, see build script "version.js"
78
- return "2.119.63";
78
+ return "2.119.64";
79
79
  }
80
80
  getDDICReferences() {
81
81
  return this.ddicReferences;
@@ -71,7 +71,7 @@ class DynproChecks {
71
71
  return ret;
72
72
  }
73
73
  hasContainerRelativeCoordinates(field) {
74
- return field.contType === "TABLE_CTRL" || field.contType === "LOOP";
74
+ return field.contType === "TABLE_CTRL" || field.contType === "LOOP" || field.contType === "STRIP_CTRL";
75
75
  }
76
76
  overlaps(first, second) {
77
77
  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/core",
3
- "version": "2.119.63",
3
+ "version": "2.119.64",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",