(node *ast.Node)
| 2312 | } |
| 2313 | |
| 2314 | func (b *Binder) bindVariableDeclarationFlow(node *ast.Node) { |
| 2315 | b.bindEachChild(node) |
| 2316 | if node.Initializer() != nil || ast.IsForInOrOfStatement(node.Parent.Parent) { |
| 2317 | b.bindInitializedVariableFlow(node) |
| 2318 | } |
| 2319 | } |
| 2320 | |
| 2321 | func (b *Binder) bindInitializedVariableFlow(node *ast.Node) { |
| 2322 | var name *ast.Node |
no test coverage detected