(pos Pos)
| 539 | } |
| 540 | |
| 541 | func (p *Parser) parseColumnExprList(pos Pos) (*ColumnExprList, error) { |
| 542 | return p.parseColumnExprListWithTerm("", pos) |
| 543 | } |
| 544 | |
| 545 | func (p *Parser) parseColumnExprListWithTerm(term TokenKind, pos Pos) (*ColumnExprList, error) { |
| 546 | columnExprList := &ColumnExprList{ |
no test coverage detected