diff options
author | Robert Griesemer <gri@golang.org> | 2009-10-02 22:24:05 -0700 |
---|---|---|
committer | Robert Griesemer <gri@golang.org> | 2009-10-02 22:24:05 -0700 |
commit | b453411803df7be0ab7d4375561aad7795943b47 (patch) | |
tree | e7457392f974b4d5c2f5301dca690f2cb04a8cb0 /src/pkg/go/printer/printer_test.go | |
parent | 5c4ef7dbb99a64cf969cfdfed20b13741b73e336 (diff) | |
download | golang-b453411803df7be0ab7d4375561aad7795943b47.tar.gz |
- improved handling of white space around declarations and statements
- extra tests
R=rsc
DELTA=366 (264 added, 37 deleted, 65 changed)
OCL=35299
CL=35301
Diffstat (limited to 'src/pkg/go/printer/printer_test.go')
-rw-r--r-- | src/pkg/go/printer/printer_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pkg/go/printer/printer_test.go b/src/pkg/go/printer/printer_test.go index 91e3f2ec3..2f98eacf4 100644 --- a/src/pkg/go/printer/printer_test.go +++ b/src/pkg/go/printer/printer_test.go @@ -98,6 +98,7 @@ type entry struct { // Use gotest -update to create/update the respective golden files. var data = []entry{ + entry{ "empty.go", "empty.golden", false }, entry{ "comments.go", "comments.golden", false }, entry{ "comments.go", "comments.x", true }, entry{ "linebreaks.go", "linebreaks.golden", false }, |