SSA form of expression (read-only)
(self)
| 539 | |
| 540 | @property |
| 541 | def ssa_form(self) -> 'HighLevelILInstruction': |
| 542 | """SSA form of expression (read-only)""" |
| 543 | assert self.function.ssa_form is not None |
| 544 | return HighLevelILInstruction.create( |
| 545 | self.function.ssa_form, |
| 546 | ExpressionIndex(core.BNGetHighLevelILSSAExprIndex(self.function.handle, self.expr_index)), self.as_ast |
| 547 | ) |
| 548 | |
| 549 | @property |
| 550 | def non_ssa_form(self) -> Optional['HighLevelILInstruction']: |