(&self, status: StatusCode, offset: CodeOffset)
| 67 | } |
| 68 | |
| 69 | fn error(&self, status: StatusCode, offset: CodeOffset) -> PartialVMError { |
| 70 | PartialVMError::new(status).at_code_offset(self.current_function, offset) |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | fn instruction_labels(context: &ControlFlowVerifier) -> Vec<Label> { |
no test coverage detected