(&mut self, index: u32)
| 1678 | } |
| 1679 | |
| 1680 | fn visit_call(&mut self, index: u32) -> Self::Output { |
| 1681 | let callee = self.env.callee_from_index(FuncIndex::from_u32(index)); |
| 1682 | FnCall::emit::<M>(&mut self.env, self.masm, &mut self.context, callee)?; |
| 1683 | Ok(()) |
| 1684 | } |
| 1685 | |
| 1686 | fn visit_call_indirect(&mut self, type_index: u32, table_index: u32) -> Self::Output { |
| 1687 | // Spill now because `emit_table_get` and the `FnCall::emit` |
nothing calls this directly
no test coverage detected