| 1466 | } |
| 1467 | |
| 1468 | Result BinaryReaderInterp::OnTableFillExpr(Index table_index) { |
| 1469 | CHECK_RESULT( |
| 1470 | validator_.OnTableFill(GetLocation(), Var(table_index, GetLocation()))); |
| 1471 | istream_.Emit(Opcode::TableFill, table_index); |
| 1472 | return Result::Ok; |
| 1473 | } |
| 1474 | |
| 1475 | Result BinaryReaderInterp::OnRefAsNonNullExpr() { |
| 1476 | CHECK_RESULT(validator_.OnRefAsNonNull(Location())); |
nothing calls this directly
no test coverage detected