summaryrefslogtreecommitdiff
path: root/src/pkg/exp/ogle/rruntime.go
AgeCommit message (Collapse)AuthorFilesLines
2010-06-20reflect: add Kind, remove Int8Type, Int8Value, etc.Russ Cox1-1/+1
update other code to match. R=r CC=golang-dev http://codereview.appspot.com/1680044
2010-03-02gofmt: fix alignment of multi-line var declarationsRobert Griesemer1-7/+7
- gofmt -w src misc R=rsc, r CC=golang-dev http://codereview.appspot.com/223101
2010-03-02gofmt: experiment: align values in map composites where possibleRobert Griesemer1-5/+5
- gofmt -w src misc - looking for feedback R=rsc, r CC=golang-dev http://codereview.appspot.com/223076
2009-12-15 1) Change default gofmt default settings forRobert Griesemer1-112/+112
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 2nd set of files. R=rsc CC=golang-dev http://codereview.appspot.com/179067
2009-11-20gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkgRuss Cox1-1/+1
R=r, gri CC=golang-dev http://codereview.appspot.com/156115
2009-11-09 - replaced gofmt expression formatting algorithm withRobert Griesemer1-1/+1
rsc's algorithm - applied gofmt -w misc src - partial CL (remaining files in other CLs) R=rsc, r http://go/go-review/1026036
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-2/+2
R=rsc, r http://go/go-review/1025029
2009-11-05gofmt-ify ogleRobert Griesemer1-70/+70
R=rsc http://go/go-review/1016053
2009-10-14move austin/eval and austin/ogle to exp/eval and exp/ogleRuss Cox1-0/+271
R=r OCL=35736 CL=35746