(node *ast.Node)
| 353 | } |
| 354 | |
| 355 | func nextContainer(node *ast.Node) *ast.Node { |
| 356 | data := node.LocalsContainerData() |
| 357 | if data != nil { |
| 358 | return data.NextContainer |
| 359 | } |
| 360 | return nil |
| 361 | } |
| 362 | |
| 363 | func isUniqueLocalName(name string, container *ast.Node) bool { |
| 364 | node := container |
no test coverage detected