(&self)
| 79 | } |
| 80 | |
| 81 | pub fn function(&self) -> Ref<Function> { |
| 82 | unsafe { |
| 83 | let func = BNGetHighLevelILOwnerFunction(self.handle); |
| 84 | Function::ref_from_raw(func) |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | pub fn basic_blocks(&self) -> Array<BasicBlock<HighLevelILBlock>> { |
| 89 | let mut count = 0; |
no outgoing calls
no test coverage detected