summaryrefslogtreecommitdiff
path: root/test/bench/binary-tree.go
AgeCommit message (Collapse)AuthorFilesLines
2009-12-151) Change default gofmt default settings forRobert Griesemer1-18/+18
parsing and printing to new syntax. Use -oldparser to parse the old syntax, use -oldprinter to print the old syntax. 2) Change default gofmt formatting settings to use tabs for indentation only and to use spaces for alignment. This will make the code alignment insensitive to an editor's tabwidth. Use -spaces=false to use tabs for alignment. 3) Manually changed src/exp/parser/parser_test.go so that it doesn't try to parse the parser's source files using the old syntax (they have new syntax now). 4) gofmt -w src misc test/bench 5th and last set of files. R=rsc CC=golang-dev http://codereview.appspot.com/180050
2009-11-20gofmt -r 'α[β:len(α)] -> α[β:]' -w test/benchRuss Cox1-10/+10
except chameneosredux which i know is being edited require gofmt for test/bench R=r http://codereview.appspot.com/157110
2009-09-17unused importsRuss Cox1-1/+0
R=r OCL=34731 CL=34731
2009-08-09run benchmarks in a relatively fast test mode, as part of run.bash/all.bashRob Pike1-4/+4
R=rsc DELTA=293 (224 added, 0 deleted, 69 changed) OCL=32917 CL=32944
2009-08-04binary treeRob Pike1-0/+93
R=rsc DELTA=324 (323 added, 0 deleted, 1 changed) OCL=32759 CL=32768