@abaplint/core 2.101.23 → 2.101.24

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.
@@ -65,7 +65,7 @@ class Registry {
65
65
  }
66
66
  static abaplintVersion() {
67
67
  // magic, see build script "version.sh"
68
- return "2.101.23";
68
+ return "2.101.24";
69
69
  }
70
70
  getDDICReferences() {
71
71
  return this.ddicReferences;
@@ -2148,6 +2148,9 @@ ${indentation} output = ${uniqueName}.\n`;
2148
2148
  indentation + `IF sy-subrc = 0.\n` +
2149
2149
  indentation + ` ${uniqueName} = ${rowName}${after}.\n` +
2150
2150
  indentation + `ENDIF.\n`;
2151
+ if (type.includes("LIKE DATA(")) {
2152
+ type = `LIKE LINE OF ${tabName}`;
2153
+ }
2151
2154
  }
2152
2155
  if (end !== "") {
2153
2156
  indentation = indentation.substring(2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.101.23",
3
+ "version": "2.101.24",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",