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