()
| 1606 | } |
| 1607 | |
| 1608 | func (p *Parser) parseVariableDeclaration() *ast.Node { |
| 1609 | return p.parseVariableDeclarationWorker(false /*allowExclamation*/) |
| 1610 | } |
| 1611 | |
| 1612 | func (p *Parser) parseVariableDeclarationAllowExclamation() *ast.Node { |
| 1613 | return p.parseVariableDeclarationWorker(true /*allowExclamation*/) |
no test coverage detected