(e: BinaryExpression)
| 49 | } |
| 50 | |
| 51 | protected visitBinary(e: BinaryExpression): VisitResult { |
| 52 | const l = this.visit(e.left); |
| 53 | if (l?.abort) { |
| 54 | return l; |
| 55 | } else { |
| 56 | return this.visit(e.right); |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | protected visitUnary(e: UnaryExpression): VisitResult { |
| 61 | return this.visit(e.operand); |