(n *parser.Expr_listContext)
| 522 | } |
| 523 | |
| 524 | func (c *cc) convertExprListContext(n *parser.Expr_listContext) ast.Node { |
| 525 | list := &ast.List{Items: []ast.Node{}} |
| 526 | for _, e := range n.AllExpr() { |
| 527 | list.Items = append(list.Items, c.convert(e)) |
| 528 | } |
| 529 | return list |
| 530 | } |
| 531 | |
| 532 | func (c *cc) getTables(core *parser.Select_coreContext) []ast.Node { |
| 533 | if core.Join_clause() != nil { |