HighLevelILFunction used to represent High Level IL (writable)
(self)
| 113 | |
| 114 | @property |
| 115 | def hlil(self) -> highlevelil.HighLevelILFunction: |
| 116 | """ |
| 117 | HighLevelILFunction used to represent High Level IL (writable) |
| 118 | """ |
| 119 | result = core.BNAnalysisContextGetHighLevelILFunction(self.handle) |
| 120 | if not result: |
| 121 | return None |
| 122 | return highlevelil.HighLevelILFunction(handle=result) |
| 123 | |
| 124 | @hlil.setter |
| 125 | def hlil(self, value: highlevelil.HighLevelILFunction) -> None: |
nothing calls this directly
no test coverage detected