(n *parser.Expr_betweenContext)
| 1186 | } |
| 1187 | |
| 1188 | func (c *cc) convertBetweenExpr(n *parser.Expr_betweenContext) ast.Node { |
| 1189 | return &ast.BetweenExpr{ |
| 1190 | Expr: c.convert(n.Expr(0)), |
| 1191 | Left: c.convert(n.Expr(1)), |
| 1192 | Right: c.convert(n.Expr(2)), |
| 1193 | Location: n.GetStart().GetStart(), |
| 1194 | Not: n.NOT_() != nil, |
| 1195 | } |
| 1196 | } |
| 1197 | |
| 1198 | func (c *cc) convertCastExpr(n *parser.Expr_castContext) ast.Node { |
| 1199 | name := n.Type_name().GetText() |