Delta Between Two Patch Sets: test/garbage/parser.go
Issue 820045 :
code review 820045: gc benchmark: Update package list (Closed)
Left Patch Set: code review 820045: gc benchmark: Update package list
Right Patch Set: code review 820045: gc benchmark: Update package list
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
test/garbage/parser.go
LEFT RIGHT
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 // Garbage collection benchmark: parse Go packages repeatedly. 5 // Garbage collection benchmark: parse Go packages repeatedly.
6 6
7 package main 7 package main
8 8
9 import ( 9 import (
10 "flag" 10 "flag"
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading...
152 "encoding/base64", 152 "encoding/base64",
153 "encoding/binary", 153 "encoding/binary",
154 "encoding/git85", 154 "encoding/git85",
155 "encoding/hex", 155 "encoding/hex",
156 "encoding/pem", 156 "encoding/pem",
157 "exec", 157 "exec",
158 "exp/datafmt", 158 "exp/datafmt",
159 "exp/draw", 159 "exp/draw",
160 "exp/eval", 160 "exp/eval",
161 "exp/iterable", 161 "exp/iterable",
162 "exp/parser",
163 "expvar", 162 "expvar",
164 "flag", 163 "flag",
165 "fmt", 164 "fmt",
166 "go/ast", 165 "go/ast",
167 "go/doc", 166 "go/doc",
168 "go/parser", 167 "go/parser",
169 "go/printer", 168 "go/printer",
170 "go/scanner", 169 "go/scanner",
171 "go/token", 170 "go/token",
172 "gob", 171 "gob",
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading...
209 "testing/iotest", 208 "testing/iotest",
210 "testing/quick", 209 "testing/quick",
211 "testing/script", 210 "testing/script",
212 "time", 211 "time",
213 "unicode", 212 "unicode",
214 "utf8", 213 "utf8",
215 "utf16", 214 "utf16",
216 "websocket", 215 "websocket",
217 "xml", 216 "xml",
218 } 217 }
LEFT RIGHT