Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(857)

Delta Between Two Patch Sets: src/cmd/gofmt/simplify.go

Issue 4715041: code review 4715041: go/printer: changed max. number of newlines from 3 to 2 (Closed)
Left Patch Set: Created 13 years, 8 months ago
Right Patch Set: diff -r 43f78423340b https://go.googlecode.com/hg/ Created 13 years, 8 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/cmd/gofmt/rewrite.go ('k') | src/cmd/goinstall/main.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(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
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 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b