| 1593 | } |
| 1594 | |
| 1595 | Result BinaryReaderInterp::OnTableSetExpr(Index table_index) { |
| 1596 | CHECK_RESULT( |
| 1597 | validator_.OnTableSet(GetLocation(), Var(table_index, GetLocation()))); |
| 1598 | istream_.Emit(Opcode::TableSet, table_index); |
| 1599 | return Result::Ok; |
| 1600 | } |
| 1601 | |
| 1602 | Result BinaryReaderInterp::OnTableCopyExpr(Index dst_index, Index src_index) { |
| 1603 | CHECK_RESULT(validator_.OnTableCopy(GetLocation(), |
nothing calls this directly
no test coverage detected