@abaplint/core 2.113.187 → 2.113.188

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.
@@ -124,7 +124,8 @@ class Table extends _abstract_object_1.AbstractObject {
124
124
  if (field.GROUPNAME !== undefined) {
125
125
  components.push({ name: field.GROUPNAME, type: found, asInclude: true });
126
126
  }
127
- if (field.FIELDNAME.startsWith(".INCLU-") === false) {
127
+ // Note: "--AP" are .APPENDS
128
+ if (field.FIELDNAME.startsWith(".INCLU-") === false || field.FIELDNAME === ".INCLU--AP") {
128
129
  for (const c of found.getComponents()) {
129
130
  components.push({ name: c.name, type: c.type });
130
131
  }
@@ -67,7 +67,7 @@ class Registry {
67
67
  }
68
68
  static abaplintVersion() {
69
69
  // magic, see build script "version.sh"
70
- return "2.113.187";
70
+ return "2.113.188";
71
71
  }
72
72
  getDDICReferences() {
73
73
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.113.187",
3
+ "version": "2.113.188",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",