(&mut self, index: u32)
| 1672 | } |
| 1673 | |
| 1674 | fn visit_local_set(&mut self, index: u32) -> Self::Output { |
| 1675 | let src = self.emit_set_local(index)?; |
| 1676 | self.context.free_reg(src); |
| 1677 | Ok(()) |
| 1678 | } |
| 1679 | |
| 1680 | fn visit_call(&mut self, index: u32) -> Self::Output { |
| 1681 | let callee = self.env.callee_from_index(FuncIndex::from_u32(index)); |
nothing calls this directly
no test coverage detected