(_ Pos)
| 161 | } |
| 162 | |
| 163 | func (p *Parser) tryParseDotIdent(_ Pos) (*Ident, error) { |
| 164 | if p.tryConsumeTokenKind(TokenKindDot) == nil { |
| 165 | return nil, nil // nolint |
| 166 | } |
| 167 | return p.parseIdent() |
| 168 | } |
| 169 | |
| 170 | func (p *Parser) tryParseDotIdentOrString(_ Pos) (*Ident, error) { |
| 171 | if p.tryConsumeTokenKind(TokenKindDot) == nil { |
no test coverage detected