(self)
| 690 | |
| 691 | @property |
| 692 | def hlils(self) -> List['highlevelil.HighLevelILInstruction']: |
| 693 | result = set() |
| 694 | for mlil_expr in self.mlils: |
| 695 | for hlil_expr in mlil_expr.hlils: |
| 696 | try: |
| 697 | result.add(hlil_expr) |
| 698 | except: |
| 699 | assert False, f"mlil_expr.hlils returned list of lists: {hlil_expr} {type(hlil_expr)}" |
| 700 | return list(result) |
| 701 | |
| 702 | @property |
| 703 | def value(self) -> 'variable.RegisterValue': |