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

Delta Between Two Patch Sets: src/pkg/exp/gotype/gotype_test.go

Issue 7013049: code review 7013049: go/types: moved from exp/types (Closed)
Left Patch Set: Created 11 years, 3 months ago
Right Patch Set: diff -r d7f56af8557e https://code.google.com/p/go Created 11 years, 3 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/pkg/exp/gotype/gotype.go ('k') | src/pkg/go/types/api.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 2011 The Go Authors. All rights reserved. 1 // Copyright 2011 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/build" 8 "go/build"
9 "path/filepath" 9 "path/filepath"
10 "runtime" 10 "runtime"
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 "encoding/hex", 110 "encoding/hex",
111 "encoding/json", 111 "encoding/json",
112 "encoding/pem", 112 "encoding/pem",
113 "encoding/xml", 113 "encoding/xml",
114 114
115 "errors", 115 "errors",
116 "expvar", 116 "expvar",
117 "flag", 117 "flag",
118 "fmt", 118 "fmt",
119 119
120 "exp/types",
121 "exp/gotype", 120 "exp/gotype",
122 121
123 "go/ast", 122 "go/ast",
124 "go/build", 123 "go/build",
125 "go/doc", 124 "go/doc",
126 "go/format", 125 "go/format",
127 "go/parser", 126 "go/parser",
128 "go/printer", 127 "go/printer",
129 "go/scanner", 128 "go/scanner",
130 // "go/token", 129 // "go/token",
130 "go/types",
131 131
132 "hash/adler32", 132 "hash/adler32",
133 "hash/crc32", 133 "hash/crc32",
134 "hash/crc64", 134 "hash/crc64",
135 "hash/fnv", 135 "hash/fnv",
136 136
137 "image", 137 "image",
138 "image/color", 138 "image/color",
139 "image/draw", 139 "image/draw",
140 "image/gif", 140 "image/gif",
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 "unicode", 206 "unicode",
207 "unicode/utf16", 207 "unicode/utf16",
208 "unicode/utf8", 208 "unicode/utf8",
209 } 209 }
210 210
211 func Test(t *testing.T) { 211 func Test(t *testing.T) {
212 for _, test := range tests { 212 for _, test := range tests {
213 runTest(t, test) 213 runTest(t, test)
214 } 214 }
215 } 215 }
LEFTRIGHT

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