(&mut self)
| 84 | } |
| 85 | |
| 86 | fn before_visit(&mut self) { |
| 87 | self.0.record_executing_pc_for_profiling(); |
| 88 | if !DEBUG { |
| 89 | return; |
| 90 | } |
| 91 | print!("\t{:?}\t", self.bytecode().as_ptr()); |
| 92 | } |
| 93 | |
| 94 | fn after_visit(&mut self) { |
| 95 | if !DEBUG { |
no test coverage detected