Low level IL form of this expression
(self)
| 650 | |
| 651 | @property |
| 652 | def low_level_il(self) -> Optional['lowlevelil.LowLevelILInstruction']: |
| 653 | """Low level IL form of this expression""" |
| 654 | expr = self.function.get_low_level_il_expr_index(self.expr_index) |
| 655 | if expr is None or self.function.low_level_il is None: |
| 656 | return None |
| 657 | return lowlevelil.LowLevelILInstruction.create(self.function.low_level_il.ssa_form, expr, None) |
| 658 | |
| 659 | @property |
| 660 | def llil(self) -> Optional['lowlevelil.LowLevelILInstruction']: |
nothing calls this directly
no test coverage detected