(&mut self, table: u32)
| 1740 | } |
| 1741 | |
| 1742 | fn visit_table_fill(&mut self, table: u32) -> Self::Output { |
| 1743 | let table_index = TableIndex::from_u32(table); |
| 1744 | self.emit_table_fill(table_index) |
| 1745 | } |
| 1746 | |
| 1747 | fn visit_table_set(&mut self, table: u32) -> Self::Output { |
| 1748 | let table_index = TableIndex::from_u32(table); |
nothing calls this directly
no test coverage detected