(&self)
| 144 | } |
| 145 | |
| 146 | pub fn expression_count(&self) -> usize { |
| 147 | unsafe { |
| 148 | use binaryninjacore_sys::BNGetLowLevelILExprCount; |
| 149 | BNGetLowLevelILExprCount(self.handle) |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | pub fn function(&self) -> Ref<Function> { |
| 154 | unsafe { |
no outgoing calls
no test coverage detected