@abaplint/core 2.102.63 → 2.102.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.
|
@@ -295,9 +295,10 @@ class TypeUtils {
|
|
|
295
295
|
}
|
|
296
296
|
return true;
|
|
297
297
|
}
|
|
298
|
-
else if (target instanceof basic_1.
|
|
299
|
-
return
|
|
298
|
+
else if (target instanceof basic_1.VoidType || target instanceof basic_1.AnyType) {
|
|
299
|
+
return true;
|
|
300
300
|
}
|
|
301
|
+
return false;
|
|
301
302
|
}
|
|
302
303
|
else if (source instanceof basic_1.Integer8Type) {
|
|
303
304
|
if (target instanceof basic_1.IntegerType || target instanceof basic_1.StringType) {
|
package/build/src/registry.js
CHANGED