(self)
| 663 | |
| 664 | @property |
| 665 | def llils(self) -> List['lowlevelil.LowLevelILInstruction']: |
| 666 | exprs = self.function.get_low_level_il_expr_indexes(self.expr_index) |
| 667 | if self.function.low_level_il is None: |
| 668 | return [] |
| 669 | result = [] |
| 670 | for expr in exprs: |
| 671 | result.append(lowlevelil.LowLevelILInstruction.create(self.function.low_level_il.ssa_form, expr, None)) |
| 672 | return result |
| 673 | |
| 674 | @property |
| 675 | def high_level_il(self) -> Optional[highlevelil.HighLevelILInstruction]: |
nothing calls this directly
no test coverage detected