Low level IL in non-SSA (default) form (read-only)
(self)
| 3498 | |
| 3499 | @property |
| 3500 | def non_ssa_form(self) -> 'LowLevelILFunction': |
| 3501 | """Low level IL in non-SSA (default) form (read-only)""" |
| 3502 | result = core.BNGetLowLevelILNonSSAForm(self.handle) |
| 3503 | assert result is not None, "Failed to retrieve non-ssa-form" |
| 3504 | return LowLevelILFunction(self._arch, result, self._source_function) |
| 3505 | |
| 3506 | @property |
| 3507 | def medium_level_il(self) -> 'mediumlevelil.MediumLevelILFunction': |
nothing calls this directly
no test coverage detected