(
&self,
)
| 534 | } |
| 535 | |
| 536 | pub fn low_level_il_if_available( |
| 537 | &self, |
| 538 | ) -> Option<Ref<RegularLowLevelILFunction<CoreArchitecture>>> { |
| 539 | let llil_ptr = unsafe { BNGetFunctionLowLevelILIfAvailable(self.handle) }; |
| 540 | match llil_ptr.is_null() { |
| 541 | false => { |
| 542 | Some(unsafe { RegularLowLevelILFunction::ref_from_raw(self.arch(), llil_ptr) }) |
| 543 | } |
| 544 | true => None, |
| 545 | } |
| 546 | } |
| 547 | |
| 548 | pub fn lifted_il(&self) -> Result<Ref<LiftedILFunction<CoreArchitecture>>, ()> { |
| 549 | unsafe { |