(&mut self, dst: u32, src: u32)
| 1720 | } |
| 1721 | |
| 1722 | fn visit_table_copy(&mut self, dst: u32, src: u32) -> Self::Output { |
| 1723 | self.emit_table_copy(TableIndex::from_u32(dst), TableIndex::from_u32(src)) |
| 1724 | } |
| 1725 | |
| 1726 | fn visit_table_get(&mut self, table: u32) -> Self::Output { |
| 1727 | let table_index = TableIndex::from_u32(table); |
nothing calls this directly
no test coverage detected