(&self)
| 54 | } |
| 55 | |
| 56 | pub fn root(&self) -> HighLevelILInstruction { |
| 57 | HighLevelILInstruction::new_expr(self.as_ast(), self.root_instruction_index()) |
| 58 | } |
| 59 | |
| 60 | pub fn set_root(&self, new_root: &HighLevelILInstruction) { |
| 61 | unsafe { BNSetHighLevelILRootExpr(self.handle, new_root.expr_index.0) } |
no test coverage detected