This expression with full AST printing (read-only)
(self)
| 433 | |
| 434 | @property |
| 435 | def ast(self) -> 'HighLevelILInstruction': |
| 436 | """This expression with full AST printing (read-only)""" |
| 437 | if self.as_ast: |
| 438 | return self |
| 439 | return HighLevelILInstruction.create(self.function, self.expr_index, True) |
| 440 | |
| 441 | @property |
| 442 | def non_ast(self) -> 'HighLevelILInstruction': |