@abaplint/core 2.102.24 → 2.102.25

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.
@@ -253,7 +253,7 @@ class CurrentScope {
253
253
  return undefined;
254
254
  }
255
255
  const typePoolName = name.split("_")[0];
256
- if (typePoolName.length <= 2 || typePoolName.length > 5) {
256
+ if (typePoolName.length <= 1 || typePoolName.length > 5) {
257
257
  return undefined;
258
258
  }
259
259
  const typePool = this.reg.getObject("TYPE", typePoolName);
@@ -65,7 +65,7 @@ class Registry {
65
65
  }
66
66
  static abaplintVersion() {
67
67
  // magic, see build script "version.sh"
68
- return "2.102.24";
68
+ return "2.102.25";
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.24",
3
+ "version": "2.102.25",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",