()
| 189 | } |
| 190 | |
| 191 | func (p *Parser) tryParseUUID() (*UUID, error) { |
| 192 | if !p.matchKeyword(KeywordUuid) { |
| 193 | return nil, nil // nolint |
| 194 | } |
| 195 | return p.parseUUID() |
| 196 | } |
| 197 | |
| 198 | func (p *Parser) tryParseComment() (*StringLiteral, error) { |
| 199 | if !p.tryConsumeKeywords(KeywordComment) { |
no test coverage detected