(v *NormalizeVisitor)
| 568 | } |
| 569 | |
| 570 | func (expr *NotExpr) normalize(v *NormalizeVisitor) TypedExpr { |
| 571 | inner := expr.TypedInnerExpr() |
| 572 | switch t := inner.(type) { |
| 573 | case *NotExpr: |
| 574 | return t.TypedInnerExpr() |
| 575 | } |
| 576 | return expr |
| 577 | } |
| 578 | |
| 579 | func (expr *ParenExpr) normalize(v *NormalizeVisitor) TypedExpr { |
| 580 | return expr.TypedInnerExpr() |
nothing calls this directly
no test coverage detected