Non-SSA form of expression (read-only)
(self)
| 613 | |
| 614 | @property |
| 615 | def non_ssa_form(self) -> 'MediumLevelILInstruction': |
| 616 | """Non-SSA form of expression (read-only)""" |
| 617 | non_ssa_func = self.function.non_ssa_form |
| 618 | assert non_ssa_func is not None |
| 619 | return MediumLevelILInstruction.create( |
| 620 | non_ssa_func, |
| 621 | ExpressionIndex(core.BNGetMediumLevelILNonSSAExprIndex(self.function.handle, self.expr_index)) |
| 622 | ) |
| 623 | |
| 624 | @property |
| 625 | def value(self) -> variable.RegisterValue: |