returns LowLevelILFunction used to represent lifted IL, or None if not loaded or it cannot be generated (read-only) .. note:: This function can be used to check if lifted IL is available without generating it.
(self)
| 1033 | |
| 1034 | @property |
| 1035 | def lifted_il_if_available(self) -> Optional['lowlevelil.LowLevelILFunction']: |
| 1036 | """ |
| 1037 | returns LowLevelILFunction used to represent lifted IL, or None if not loaded or it cannot be generated |
| 1038 | (read-only) |
| 1039 | |
| 1040 | .. note:: This function can be used to check if lifted IL is available without generating it. |
| 1041 | """ |
| 1042 | result = core.BNGetFunctionLiftedILIfAvailable(self.handle) |
| 1043 | if not result: |
| 1044 | return None |
| 1045 | return lowlevelil.LowLevelILFunction(self.arch, result, self) |
| 1046 | |
| 1047 | @property |
| 1048 | def medium_level_il(self) -> Optional['mediumlevelil.MediumLevelILFunction']: |
nothing calls this directly
no test coverage detected