returns LowLevelILFunction used to represent low level IL, or None if not loaded or it cannot be generated (read-only) .. note:: This function can be used to check if low level IL is available without generating it.
(self)
| 1005 | |
| 1006 | @property |
| 1007 | def llil_if_available(self) -> Optional['lowlevelil.LowLevelILFunction']: |
| 1008 | """ |
| 1009 | returns LowLevelILFunction used to represent low level IL, or None if not loaded or it cannot be generated |
| 1010 | (read-only) |
| 1011 | |
| 1012 | .. note:: This function can be used to check if low level IL is available without generating it. |
| 1013 | """ |
| 1014 | result = core.BNGetFunctionLowLevelILIfAvailable(self.handle) |
| 1015 | if not result: |
| 1016 | return None |
| 1017 | return lowlevelil.LowLevelILFunction(self.arch, result, self) |
| 1018 | |
| 1019 | @property |
| 1020 | def lifted_il(self) -> Optional['lowlevelil.LowLevelILFunction']: |
nothing calls this directly
no test coverage detected