(n *chast.BetweenExpr)
| 588 | } |
| 589 | |
| 590 | func (c *cc) convertBetweenExpr(n *chast.BetweenExpr) *ast.BetweenExpr { |
| 591 | return &ast.BetweenExpr{ |
| 592 | Expr: c.convertExpr(n.Expr), |
| 593 | Left: c.convertExpr(n.Low), |
| 594 | Right: c.convertExpr(n.High), |
| 595 | Not: n.Not, |
| 596 | Location: n.Pos().Offset, |
| 597 | } |
| 598 | } |
| 599 | |
| 600 | func (c *cc) convertInExpr(n *chast.InExpr) *ast.In { |
| 601 | in := &ast.In{ |
no test coverage detected