High level IL form of this expression
(self)
| 673 | |
| 674 | @property |
| 675 | def high_level_il(self) -> Optional[highlevelil.HighLevelILInstruction]: |
| 676 | """High level IL form of this expression""" |
| 677 | expr = self.function.get_high_level_il_expr_index(self.expr_index) |
| 678 | if expr is None or self.function.high_level_il is None: |
| 679 | return None |
| 680 | return highlevelil.HighLevelILInstruction.create(self.function.high_level_il, expr, False) |
| 681 | |
| 682 | @property |
| 683 | def hlil(self) -> Optional[highlevelil.HighLevelILInstruction]: |
nothing calls this directly
no test coverage detected