(
&self,
)
| 1059 | } |
| 1060 | |
| 1061 | pub fn llil<M: FunctionMutability, F: FunctionForm>( |
| 1062 | &self, |
| 1063 | ) -> Ref<LowLevelILFunction<CoreArchitecture, M, F>> { |
| 1064 | let arch = self.arch(); |
| 1065 | let result = |
| 1066 | unsafe { BNGetDisassemblyTextRendererLowLevelILFunction(self.handle.as_ptr()) }; |
| 1067 | assert!(!result.is_null()); |
| 1068 | unsafe { LowLevelILFunction::ref_from_raw(arch.handle(), result) } |
| 1069 | } |
| 1070 | |
| 1071 | pub fn mlil(&self) -> Ref<MediumLevelILFunction> { |
| 1072 | let result = |