@abaplint/core 2.113.94 → 2.113.95

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.
@@ -78,13 +78,13 @@ class FunctionGroup extends _abap_object_1.ABAPObject {
78
78
  if (namespaced) {
79
79
  search = search.replace(/\//g, "#");
80
80
  }
81
- if ((i.startsWith("L") || namespaced) && f.getFilename().includes(search.toLowerCase())) {
81
+ if ((i.startsWith("L") || namespaced) && f.getFilename().includes(search.toLowerCase() + ".")) {
82
82
  ret.push({ file: f, name: i });
83
83
  }
84
84
  // fix for URL encoded? Uris
85
85
  if (namespaced) {
86
86
  search = i.replace(/\//g, "%23");
87
- if (f.getFilename().includes(search.toLowerCase())) {
87
+ if (f.getFilename().includes(search.toLowerCase() + ".")) {
88
88
  ret.push({ file: f, name: i });
89
89
  }
90
90
  }
@@ -67,7 +67,7 @@ class Registry {
67
67
  }
68
68
  static abaplintVersion() {
69
69
  // magic, see build script "version.sh"
70
- return "2.113.94";
70
+ return "2.113.95";
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.94",
3
+ "version": "2.113.95",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",