(self)
| 686 | |
| 687 | @property |
| 688 | def hlils(self) -> List[highlevelil.HighLevelILInstruction]: |
| 689 | exprs = self.function.get_high_level_il_expr_indexes(self.expr_index) |
| 690 | result = [] |
| 691 | if self.function.high_level_il is None: |
| 692 | return result |
| 693 | for expr in exprs: |
| 694 | result.append(highlevelil.HighLevelILInstruction.create(self.function.high_level_il, expr, False)) |
| 695 | return result |
| 696 | |
| 697 | @property |
| 698 | def ssa_memory_version(self) -> int: |
nothing calls this directly
no test coverage detected