diff options
Diffstat (limited to 'src/wasm-delegations-fields.def')
-rw-r--r-- | src/wasm-delegations-fields.def | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/wasm-delegations-fields.def b/src/wasm-delegations-fields.def index c214b5b6b..b6828fbc2 100644 --- a/src/wasm-delegations-fields.def +++ b/src/wasm-delegations-fields.def @@ -508,6 +508,14 @@ switch (DELEGATE_ID) { DELEGATE_END(TableGet); break; } + case Expression::Id::TableSetId: { + DELEGATE_START(TableSet); + DELEGATE_FIELD_CHILD(TableSet, value); + DELEGATE_FIELD_CHILD(TableSet, index); + DELEGATE_FIELD_NAME(TableSet, table); + DELEGATE_END(TableSet); + break; + } case Expression::Id::TryId: { DELEGATE_START(Try); DELEGATE_FIELD_SCOPE_NAME_USE(Try, delegateTarget); |