@abaplint/transpiler 1.6.60 → 1.6.61

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.
@@ -9,7 +9,8 @@ class DeleteInternalTranspiler {
9
9
  const extra = [];
10
10
  const where = node.findFirstExpression(abaplint.Expressions.ComponentCond);
11
11
  if (where) {
12
- extra.push("where: " + traversal.traverse(where).getCode());
12
+ // todo, replacing "await" is a hack
13
+ extra.push("where: " + traversal.traverse(where).getCode().replace("await ", ""));
13
14
  }
14
15
  // todo, this is not completely correct, fields might have the name ADJACENT
15
16
  // comparisons should be on table key unless other is specified, but we're unaware
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/transpiler",
3
- "version": "1.6.60",
3
+ "version": "1.6.61",
4
4
  "description": "Transpiler",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",