(
state: &'a mut MachineState,
pc: UnsafeBytecodeStream,
executing_pc: ExecutingPcRef<'a>,
)
| 70 | } |
| 71 | |
| 72 | fn debug<'a>( |
| 73 | state: &'a mut MachineState, |
| 74 | pc: UnsafeBytecodeStream, |
| 75 | executing_pc: ExecutingPcRef<'a>, |
| 76 | ) -> debug::Debug<'a> { |
| 77 | debug::Debug(Interpreter { |
| 78 | state, |
| 79 | pc, |
| 80 | executing_pc, |
| 81 | }) |
| 82 | } |
| 83 | |
| 84 | fn dispatch( |
| 85 | state: &mut MachineState, |
no test coverage detected