LEFT | RIGHT |
(no file at all) | |
1 // Copyright 2010 The Go Authors. All rights reserved. | 1 // Copyright 2010 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 package main | 5 package main |
6 | 6 |
7 import ( | 7 import ( |
8 "go/ast" | 8 "go/ast" |
9 "reflect" | 9 "reflect" |
10 ) | 10 ) |
11 | |
12 | 11 |
13 type simplifier struct{} | 12 type simplifier struct{} |
14 | 13 |
15 func (s *simplifier) Visit(node ast.Node) ast.Visitor { | 14 func (s *simplifier) Visit(node ast.Node) ast.Visitor { |
16 switch n := node.(type) { | 15 switch n := node.(type) { |
17 case *ast.CompositeLit: | 16 case *ast.CompositeLit: |
18 // array, slice, and map composite literals may be simplified | 17 // array, slice, and map composite literals may be simplified |
19 outer := n | 18 outer := n |
20 var eltType ast.Expr | 19 var eltType ast.Expr |
21 switch typ := outer.Type.(type) { | 20 switch typ := outer.Type.(type) { |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 if n.Value != nil { | 52 if n.Value != nil { |
54 if ident, ok := n.Value.(*ast.Ident); ok && ident.Name =
= "_" { | 53 if ident, ok := n.Value.(*ast.Ident); ok && ident.Name =
= "_" { |
55 n.Value = nil | 54 n.Value = nil |
56 } | 55 } |
57 } | 56 } |
58 } | 57 } |
59 | 58 |
60 return s | 59 return s |
61 } | 60 } |
62 | 61 |
63 | |
64 func simplify(node ast.Node) { | 62 func simplify(node ast.Node) { |
65 var s simplifier | 63 var s simplifier |
66 ast.Walk(&s, node) | 64 ast.Walk(&s, node) |
67 } | 65 } |
LEFT | RIGHT |