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

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. Created 15 years, 2 months ago
Right Patch Set: code review 189080: Steps towards tracking scopes for identifiers. Created 15 years, 2 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:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « src/cmd/godoc/snippet.go ('k') | src/cmd/gofmt/rewrite.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
(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
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 }
LEFTRIGHT

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