()
| 1601 | } |
| 1602 | |
| 1603 | func (p *Parser) nextTokenIsIdentifier() bool { |
| 1604 | p.nextToken() |
| 1605 | return p.isIdentifier() |
| 1606 | } |
| 1607 | |
| 1608 | func (p *Parser) parseVariableDeclaration() *ast.Node { |
| 1609 | return p.parseVariableDeclarationWorker(false /*allowExclamation*/) |
no test coverage detected