@abaplint/core 2.113.199 → 2.113.200

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.
@@ -19,8 +19,11 @@ class FilterBody {
19
19
  source_1.Source.runSyntax(s, input);
20
20
  }
21
21
  }
22
- const rowType = type instanceof basic_1.TableType ? type.getRowType() : undefined;
23
- component_cond_1.ComponentCond.runSyntax(node.findDirectExpression(Expressions.ComponentCond), input, rowType);
22
+ // todo
23
+ if (node.findDirectTokenByText("EXCEPT") === undefined) {
24
+ const rowType = type instanceof basic_1.TableType ? type.getRowType() : undefined;
25
+ component_cond_1.ComponentCond.runSyntax(node.findDirectExpression(Expressions.ComponentCond), input, rowType);
26
+ }
24
27
  return type ? type : targetType;
25
28
  }
26
29
  }
@@ -67,7 +67,7 @@ class Registry {
67
67
  }
68
68
  static abaplintVersion() {
69
69
  // magic, see build script "version.sh"
70
- return "2.113.199";
70
+ return "2.113.200";
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.199",
3
+ "version": "2.113.200",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",