(pos Pos)
| 26 | ) |
| 27 | |
| 28 | func (p *Parser) tryParseColumnComment(pos Pos) (*StringLiteral, error) { |
| 29 | if !p.tryConsumeKeywords(KeywordComment) { |
| 30 | return nil, nil // nolint |
| 31 | } |
| 32 | return p.parseString(pos) |
| 33 | } |
| 34 | |
| 35 | func (p *Parser) getNextPrecedence() int { |
| 36 | switch { |
no test coverage detected