(&mut self, elem: u32, table: u32)
| 1716 | } |
| 1717 | |
| 1718 | fn visit_table_init(&mut self, elem: u32, table: u32) -> Self::Output { |
| 1719 | self.emit_table_init(ElemIndex::from_u32(elem), TableIndex::from_u32(table)) |
| 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)) |
nothing calls this directly
no test coverage detected