(&self, vm: &mut icicle_vm::Vm)
| 167 | } |
| 168 | |
| 169 | pub fn clear(&self, vm: &mut icicle_vm::Vm) { |
| 170 | let path_tracer = vm.cpu.get_hook_mut(self.0); |
| 171 | path_tracer.data_mut::<PathTracer>().unwrap().blocks.clear(); |
| 172 | } |
| 173 | |
| 174 | pub fn print_last_blocks(&self, vm: &mut icicle_vm::Vm, count: usize) -> String { |
| 175 | use std::fmt::Write; |
no outgoing calls
no test coverage detected