(&mut self, table: u32)
| 1745 | } |
| 1746 | |
| 1747 | fn visit_table_set(&mut self, table: u32) -> Self::Output { |
| 1748 | let table_index = TableIndex::from_u32(table); |
| 1749 | self.emit_table_set(table_index) |
| 1750 | } |
| 1751 | |
| 1752 | fn visit_elem_drop(&mut self, index: u32) -> Self::Output { |
| 1753 | let index = ElemIndex::from_u32(index); |
nothing calls this directly
no test coverage detected