@abaplint/core 2.83.17 → 2.83.18

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.
@@ -68,7 +68,7 @@ class Registry {
68
68
  }
69
69
  static abaplintVersion() {
70
70
  // magic, see build script "version.sh"
71
- return "2.83.17";
71
+ return "2.83.18";
72
72
  }
73
73
  getDDICReferences() {
74
74
  return this.references;
@@ -190,6 +190,18 @@ foo = VALUE #(
190
190
  right: children[2],
191
191
  });
192
192
  }
193
+ const ex = raise.findDirectExpression(Expressions.ParameterListExceptions);
194
+ for (const e of (ex === null || ex === void 0 ? void 0 : ex.getChildren()) || []) {
195
+ const children = e.getChildren();
196
+ if (children.length < 3) {
197
+ continue; // unexpected
198
+ }
199
+ parameters.push({
200
+ left: children[0],
201
+ eq: children[1].getFirstToken().getStart(),
202
+ right: children[2],
203
+ });
204
+ }
193
205
  if (parameters.length > 0) {
194
206
  candidates.push({ parameters });
195
207
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.83.17",
3
+ "version": "2.83.18",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",
@@ -48,7 +48,7 @@
48
48
  "@microsoft/api-extractor": "^7.19.3",
49
49
  "@types/chai": "^4.3.0",
50
50
  "@types/mocha": "^9.0.0",
51
- "@types/node": "^17.0.5",
51
+ "@types/node": "^17.0.6",
52
52
  "chai": "^4.3.4",
53
53
  "eslint": "^8.6.0",
54
54
  "mocha": "^9.1.3",