@abaplint/runtime 2.7.87 → 2.7.89

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.
@@ -203,6 +203,12 @@ class HashedTable {
203
203
  this.secondaryIndexes = {};
204
204
  }
205
205
  set(tab) {
206
+ if (tab instanceof field_symbol_1.FieldSymbol) {
207
+ if (tab.getPointer() === undefined) {
208
+ throw new Error("GETWA_NOT_ASSIGNED");
209
+ }
210
+ return this.set(tab.getPointer());
211
+ }
206
212
  this.clear();
207
213
  if (tab instanceof Table || tab instanceof HashedTable) {
208
214
  for (const a of tab.array()) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/runtime",
3
- "version": "2.7.87",
3
+ "version": "2.7.89",
4
4
  "description": "Transpiler - Runtime",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",