Non-SSA form of expression (read-only)
(self)
| 548 | |
| 549 | @property |
| 550 | def non_ssa_form(self) -> Optional['HighLevelILInstruction']: |
| 551 | """Non-SSA form of expression (read-only)""" |
| 552 | if self.function.non_ssa_form is None: |
| 553 | return None |
| 554 | return HighLevelILInstruction.create( |
| 555 | self.function.non_ssa_form, |
| 556 | ExpressionIndex(core.BNGetHighLevelILNonSSAExprIndex(self.function.handle, self.expr_index)), self.as_ast |
| 557 | ) |
| 558 | |
| 559 | @property |
| 560 | def medium_level_il(self) -> Optional['mediumlevelil.MediumLevelILInstruction']: |