mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
delete export
TBR=r OCL=23121 CL=23127
This commit is contained in:
parent
0183baaf44
commit
839a68469b
234 changed files with 1198 additions and 1199 deletions
|
|
@ -21,7 +21,7 @@ func tabify(s string) string {
|
|||
return s
|
||||
}
|
||||
|
||||
export type T struct {
|
||||
type T struct {
|
||||
errors string;
|
||||
failed bool;
|
||||
ch chan *T;
|
||||
|
|
@ -69,7 +69,7 @@ func (t *T) Fatalf(format string, args ...) {
|
|||
t.FailNow();
|
||||
}
|
||||
|
||||
export type Test struct {
|
||||
type Test struct {
|
||||
Name string;
|
||||
F *(*T);
|
||||
}
|
||||
|
|
@ -79,7 +79,7 @@ func tRunner(t *T, test *Test) {
|
|||
t.ch <- t;
|
||||
}
|
||||
|
||||
export func Main(tests []Test) {
|
||||
func Main(tests []Test) {
|
||||
flag.Parse();
|
||||
ok := true;
|
||||
if len(tests) == 0 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue