()
| 1597 | } |
| 1598 | |
| 1599 | func (p *Parser) nextIsIdentifierAndCloseParen() bool { |
| 1600 | return p.nextTokenIsIdentifier() && p.nextToken() == ast.KindCloseParenToken |
| 1601 | } |
| 1602 | |
| 1603 | func (p *Parser) nextTokenIsIdentifier() bool { |
| 1604 | p.nextToken() |
nothing calls this directly
no test coverage detected