(&mut self, table: u32)
| 1734 | } |
| 1735 | |
| 1736 | fn visit_table_size(&mut self, table: u32) -> Self::Output { |
| 1737 | let table_index = TableIndex::from_u32(table); |
| 1738 | let table_data = self.env.resolve_table_data(table_index); |
| 1739 | self.emit_compute_table_size(&table_data) |
| 1740 | } |
| 1741 | |
| 1742 | fn visit_table_fill(&mut self, table: u32) -> Self::Output { |
| 1743 | let table_index = TableIndex::from_u32(table); |
nothing calls this directly
no test coverage detected