This expression without full AST printing (read-only)
(self)
| 440 | |
| 441 | @property |
| 442 | def non_ast(self) -> 'HighLevelILInstruction': |
| 443 | """This expression without full AST printing (read-only)""" |
| 444 | if not self.as_ast: |
| 445 | return self |
| 446 | return HighLevelILInstruction.create(self.function, self.expr_index, False) |
| 447 | |
| 448 | @property |
| 449 | def operation(self) -> HighLevelILOperation: |