(node *ast.VariableDeclarationNode)
| 3700 | } |
| 3701 | |
| 3702 | func (p *Printer) emitVariableDeclarationNode(node *ast.VariableDeclarationNode) { |
| 3703 | p.emitVariableDeclaration(node.AsVariableDeclaration()) |
| 3704 | } |
| 3705 | |
| 3706 | func (p *Printer) emitVariableDeclarationList(node *ast.VariableDeclarationList) { |
| 3707 | state := p.enterNode(node.AsNode()) |
nothing calls this directly
no test coverage detected