(&self)
| 98 | } |
| 99 | |
| 100 | pub fn function(&self) -> Ref<Function> { |
| 101 | unsafe { |
| 102 | let func = BNGetMediumLevelILOwnerFunction(self.handle); |
| 103 | Function::ref_from_raw(func) |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | pub fn basic_blocks(&self) -> Array<BasicBlock<MediumLevelILBlock>> { |
| 108 | let mut count = 0; |
no outgoing calls
no test coverage detected