@abaplint/core 2.91.7 → 2.91.8

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.
@@ -141,6 +141,9 @@ class MethodParameters {
141
141
  this.add(this.importing, importing, scope, ["importing" /* IdentifierMeta.MethodImporting */]);
142
142
  if (importing.concatTokens().toUpperCase().includes(" PREFERRED PARAMETER")) {
143
143
  this.preferred = importing.getLastToken().getStr().toUpperCase();
144
+ if (this.preferred.startsWith("!")) {
145
+ this.preferred = this.preferred.substring(1);
146
+ }
144
147
  }
145
148
  }
146
149
  const exporting = node.findFirstExpression(Expressions.MethodDefExporting);
@@ -68,7 +68,7 @@ class Registry {
68
68
  }
69
69
  static abaplintVersion() {
70
70
  // magic, see build script "version.sh"
71
- return "2.91.7";
71
+ return "2.91.8";
72
72
  }
73
73
  getDDICReferences() {
74
74
  return this.references;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.91.7",
3
+ "version": "2.91.8",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "homepage": "https://abaplint.org",
47
47
  "devDependencies": {
48
- "@microsoft/api-extractor": "^7.28.3",
48
+ "@microsoft/api-extractor": "^7.28.4",
49
49
  "@types/chai": "^4.3.1",
50
50
  "@types/mocha": "^9.1.1",
51
51
  "@types/node": "^18.0.3",