(pos Pos)
| 346 | } |
| 347 | |
| 348 | func (p *Parser) tryParseFormat(pos Pos) (*FormatClause, error) { |
| 349 | if !p.matchKeyword(KeywordFormat) { |
| 350 | return nil, nil // nolint |
| 351 | } |
| 352 | return p.parseFormat(pos) |
| 353 | } |
| 354 | |
| 355 | func (p *Parser) parseFormat(pos Pos) (*FormatClause, error) { |
| 356 | if err := p.expectKeyword(KeywordFormat); err != nil { |
no test coverage detected