Delta Between Two Patch Sets: src/cmd/gofmt/gofmt.go
Issue 189080 :
code review 189080: Steps towards tracking scopes for identifiers. (Closed)
Left Patch Set: code review 189080: Steps towards tracking scopes for identifiers.
Right Patch Set: code review 189080: Steps towards tracking scopes for identifiers.
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
src/cmd/cgo/ast.go
src/cmd/cgo/gcc.go
src/cmd/cgo/main.go
src/cmd/cgo/out.go
src/cmd/godoc/godoc.go
src/cmd/godoc/index.go
src/cmd/godoc/snippet.go
src/cmd/gofmt/gofmt.go
src/cmd/gofmt/rewrite.go
src/pkg/exp/eval/expr.go
src/pkg/exp/eval/stmt.go
src/pkg/exp/eval/type.go
src/pkg/exp/eval/typec.go
src/pkg/exp/parser/interface.go
src/pkg/exp/parser/parser.go
src/pkg/go/ast/ast.go
src/pkg/go/ast/filter.go
src/pkg/go/ast/scope.go
src/pkg/go/doc/doc.go
src/pkg/go/parser/interface.go
src/pkg/go/parser/parser.go
src/pkg/go/printer/nodes.go
src/pkg/go/printer/printer.go
LEFT RIGHT
(Both sides are equal) 1 // Copyright 2009 The Go Authors. All rights reserved. 1 // Copyright 2009 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 "bytes" 8 "bytes"
9 oldParser "exp/parser" 9 oldParser "exp/parser"
10 "flag" 10 "flag"
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading...
213 if err := processFileByName(path); err != nil { 213 if err := processFileByName(path); err != nil {
214 report(err) 214 report(err)
215 } 215 }
216 case dir.IsDirectory(): 216 case dir.IsDirectory():
217 walkDir(path) 217 walkDir(path)
218 } 218 }
219 } 219 }
220 220
221 os.Exit(exitCode) 221 os.Exit(exitCode)
222 } 222 }
LEFT RIGHT