(&mut self, operator: &Operator, offset: usize)
| 408 | } |
| 409 | |
| 410 | fn before_visit_op(&mut self, operator: &Operator, offset: usize) -> Result<()> { |
| 411 | // Handle source location mapping. |
| 412 | self.source_location_before_visit_op(offset)?; |
| 413 | |
| 414 | // Handle fuel. |
| 415 | if self.tunables.consume_fuel { |
| 416 | self.fuel_before_visit_op(operator)?; |
| 417 | } |
| 418 | Ok(()) |
| 419 | } |
| 420 | |
| 421 | fn after_visit_op(&mut self) -> Result<()> { |
| 422 | // Handle source code location mapping. |
nothing calls this directly
no test coverage detected