(pos Pos)
| 8 | ) |
| 9 | |
| 10 | func (p *Parser) tryParseWithClause(pos Pos) (*WithClause, error) { |
| 11 | if !p.matchKeyword(KeywordWith) { |
| 12 | return nil, nil |
| 13 | } |
| 14 | return p.parseWithClause(pos) |
| 15 | } |
| 16 | |
| 17 | func (p *Parser) parseWithClause(pos Pos) (*WithClause, error) { |
| 18 | if err := p.expectKeyword(KeywordWith); err != nil { |
no test coverage detected