(&mut self, table: u32)
| 1724 | } |
| 1725 | |
| 1726 | fn visit_table_get(&mut self, table: u32) -> Self::Output { |
| 1727 | let table_index = TableIndex::from_u32(table); |
| 1728 | self.emit_table_get(table_index) |
| 1729 | } |
| 1730 | |
| 1731 | fn visit_table_grow(&mut self, table: u32) -> Self::Output { |
| 1732 | let table_index = TableIndex::from_u32(table); |
nothing calls this directly
no test coverage detected