Low level IL in SSA form (read-only)
(self)
| 3491 | |
| 3492 | @property |
| 3493 | def ssa_form(self) -> 'LowLevelILFunction': |
| 3494 | """Low level IL in SSA form (read-only)""" |
| 3495 | result = core.BNGetLowLevelILSSAForm(self.handle) |
| 3496 | assert result is not None, "Failed to retrieve ssa-form" |
| 3497 | return LowLevelILFunction(self._arch, result, self._source_function) |
| 3498 | |
| 3499 | @property |
| 3500 | def non_ssa_form(self) -> 'LowLevelILFunction': |
nothing calls this directly
no test coverage detected