@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.
@@ -778,7 +778,7 @@ BuiltIn.methods = [
778
778
  {
779
779
  name: "LINE_INDEX",
780
780
  mandatory: {
781
- "val": basic_1.CLikeType.get(),
781
+ "val": new basic_1.AnyType(),
782
782
  },
783
783
  return: basic_1.IntegerType.get(),
784
784
  version: version_1.Version.v740sp02,
@@ -295,9 +295,10 @@ class TypeUtils {
295
295
  }
296
296
  return true;
297
297
  }
298
- else if (target instanceof basic_1.CharacterType) {
299
- return false;
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) {
@@ -65,7 +65,7 @@ class Registry {
65
65
  }
66
66
  static abaplintVersion() {
67
67
  // magic, see build script "version.sh"
68
- return "2.102.63";
68
+ return "2.102.64";
69
69
  }
70
70
  getDDICReferences() {
71
71
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.102.63",
3
+ "version": "2.102.64",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",