(&mut self, vm: &mut Vm)
| 203 | } |
| 204 | |
| 205 | fn reset(&mut self, vm: &mut Vm) { |
| 206 | vm.cpu.trace[self.storage].data_mut().fill(0); |
| 207 | } |
| 208 | |
| 209 | fn snapshot_local(&mut self, vm: &mut Vm) -> Box<dyn Any> { |
| 210 | let snapshot: EdgeCountSnapshot = vm.cpu.trace[self.storage].data().to_owned(); |
nothing calls this directly
no outgoing calls
no test coverage detected