(self)
| 533 | |
| 534 | @property |
| 535 | def parent(self) -> Optional['HighLevelILInstruction']: |
| 536 | if self.core_instr.parent >= core.BNGetHighLevelILExprCount(self.function.handle): |
| 537 | return None |
| 538 | return HighLevelILInstruction.create(self.function, self.core_instr.parent, self.as_ast) |
| 539 | |
| 540 | @property |
| 541 | def ssa_form(self) -> 'HighLevelILInstruction': |