@abaplint/runtime 2.10.0 → 2.10.2

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.
@@ -127,6 +127,11 @@ function readTable(table, options) {
127
127
  }
128
128
  }
129
129
  found = arr[index - 1];
130
+ if (found
131
+ && options?.withKey
132
+ && options?.withKey(found.get()) === false) {
133
+ found = undefined;
134
+ }
130
135
  if (found) {
131
136
  foundIndex = index;
132
137
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/runtime",
3
- "version": "2.10.0",
3
+ "version": "2.10.2",
4
4
  "description": "Transpiler - Runtime",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",