(&mut self, data_index: u32, mem: u32)
| 1755 | } |
| 1756 | |
| 1757 | fn visit_memory_init(&mut self, data_index: u32, mem: u32) -> Self::Output { |
| 1758 | self.emit_memory_init(DataIndex::from_u32(data_index), MemoryIndex::from_u32(mem)) |
| 1759 | } |
| 1760 | |
| 1761 | fn visit_memory_copy(&mut self, dst_mem: u32, src_mem: u32) -> Self::Output { |
| 1762 | self.emit_memory_copy( |
nothing calls this directly
no test coverage detected