(&mut self, dst_mem: u32, src_mem: u32)
| 1759 | } |
| 1760 | |
| 1761 | fn visit_memory_copy(&mut self, dst_mem: u32, src_mem: u32) -> Self::Output { |
| 1762 | self.emit_memory_copy( |
| 1763 | MemoryIndex::from_u32(dst_mem), |
| 1764 | MemoryIndex::from_u32(src_mem), |
| 1765 | ) |
| 1766 | } |
| 1767 | |
| 1768 | fn visit_memory_fill(&mut self, mem: u32) -> Self::Output { |
| 1769 | self.emit_memory_fill(MemoryIndex::from_u32(mem)) |
nothing calls this directly
no test coverage detected