LowLevelILFunction used to represent Low Level IL (writable)
(self)
| 85 | |
| 86 | @property |
| 87 | def llil(self) -> lowlevelil.LowLevelILFunction: |
| 88 | """ |
| 89 | LowLevelILFunction used to represent Low Level IL (writable) |
| 90 | """ |
| 91 | result = core.BNAnalysisContextGetLowLevelILFunction(self.handle) |
| 92 | if not result: |
| 93 | return None |
| 94 | return lowlevelil.LowLevelILFunction(handle=result) |
| 95 | |
| 96 | @llil.setter |
| 97 | def llil(self, value: lowlevelil.LowLevelILFunction) -> None: |
nothing calls this directly
no test coverage detected