(_ Pos)
| 168 | } |
| 169 | |
| 170 | func (p *Parser) tryParseDotIdentOrString(_ Pos) (*Ident, error) { |
| 171 | if p.tryConsumeTokenKind(TokenKindDot) == nil { |
| 172 | return nil, nil // nolint |
| 173 | } |
| 174 | return p.parseIdentOrString() |
| 175 | } |
| 176 | |
| 177 | func (p *Parser) parseUUID() (*UUID, error) { |
| 178 | if err := p.expectKeyword(KeywordUuid); err != nil { |
no test coverage detected