(self)
| 3611 | |
| 3612 | @property |
| 3613 | def il_function(self) -> Optional[ILFunctionType]: |
| 3614 | llil = core.BNGetDisassemblyTextRendererLowLevelILFunction(self.handle) |
| 3615 | if llil: |
| 3616 | return lowlevelil.LowLevelILFunction(handle=llil) |
| 3617 | mlil = core.BNGetDisassemblyTextRendererMediumLevelILFunction(self.handle) |
| 3618 | if mlil: |
| 3619 | return mediumlevelil.MediumLevelILFunction(handle=mlil) |
| 3620 | hlil = core.BNGetDisassemblyTextRendererHighLevelILFunction(self.handle) |
| 3621 | if hlil: |
| 3622 | return highlevelil.HighLevelILFunction(handle=hlil) |
| 3623 | return None |
| 3624 | |
| 3625 | @property |
| 3626 | def basic_block(self) -> Optional['basicblock.BasicBlock']: |
nothing calls this directly
no test coverage detected