(&mut self, table: u32)
| 1729 | } |
| 1730 | |
| 1731 | fn visit_table_grow(&mut self, table: u32) -> Self::Output { |
| 1732 | let table_index = TableIndex::from_u32(table); |
| 1733 | self.emit_table_grow(table_index) |
| 1734 | } |
| 1735 | |
| 1736 | fn visit_table_size(&mut self, table: u32) -> Self::Output { |
| 1737 | let table_index = TableIndex::from_u32(table); |
nothing calls this directly
no test coverage detected