Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-01-15 | Imported Upstream version 1.4upstream/1.4 | Tianon Gravi | 1 | -3841/+0 | |
2014-06-19 | Imported Upstream version 1.3upstream/1.3 | Michael Stapelberg | 1 | -0/+223 | |
2013-12-03 | Imported Upstream version 1.2upstream/1.2 | Michael Stapelberg | 1 | -14/+189 | |
2013-06-14 | Imported Upstream version 1.1.1upstream/1.1.1 | Ingo Oeser | 1 | -0/+19 | |
2013-05-14 | Imported Upstream version 1.1upstream/1.1 | Michael Stapelberg | 1 | -26/+463 | |
2013-03-04 | Imported Upstream version 1.1~hg20130304upstream/1.1_hg20130304 | Michael Stapelberg | 1 | -27/+1252 | |
2012-05-02 | Imported Upstream version 1.0.1upstream/1.0.1 | Ondřej Surý | 1 | -0/+5 | |
2012-04-06 | Imported Upstream version 1upstream/1 | Ondřej Surý | 1 | -35/+163 | |
2011-11-28 | Imported Upstream version 60.3upstream/60.3 | Ondřej Surý | 1 | -25/+90 | |
2011-09-13 | Imported Upstream version 60upstream/60 | Ondřej Surý | 1 | -0/+1564 | |
2011-09-13 | Imported Upstream version 60 | Ondřej Surý | 1 | -1566/+0 | |
2011-08-03 | Imported Upstream version 59upstream/59 | Ondřej Surý | 1 | -10/+66 | |
2011-06-30 | Imported Upstream version 58upstream/58 | Ondřej Surý | 1 | -10/+2 | |
2011-06-16 | Imported Upstream version 57.2upstream/57.2 | Ondřej Surý | 1 | -1/+3 | |
2011-05-04 | Imported Upstream version 57upstream/57 | Ondřej Surý | 1 | -1/+21 | |
2011-04-28 | Imported Upstream version 2011.04.27upstream/2011.04.27 | Ondřej Surý | 1 | -196/+275 | |
2011-04-26 | Imported Upstream version 2011.04.13upstream/2011.04.13 | Ondřej Surý | 1 | -231/+181 | |
2011-04-20 | Imported Upstream version 2011.03.07.1upstream/2011.03.07.1 | Ondřej Surý | 1 | -0/+75 | |
2011-02-14 | Imported Upstream version 2011-02-01.1upstream/2011-02-01.1 | Ondřej Surý | 1 | -20/+11 | |
2011-01-17 | Imported Upstream version 2011.01.12upstream/2011.01.12 | Ondřej Surý | 1 | -129/+246 | |
2010-06-20 | reflect: add Kind, remove Int8Type, Int8Value, etc. | Russ Cox | 1 | -60/+97 | |
update other code to match. R=r CC=golang-dev http://codereview.appspot.com/1680044 | |||||
2010-06-14 | remove uses of ... from tree, add one test | Russ Cox | 1 | -2/+26 | |
R=r CC=golang-dev http://codereview.appspot.com/1662041 | |||||
2010-04-20 | reflect: implement Set(nil), SetValue(nil) for PtrValue and MapValue | Russ Cox | 1 | -0/+26 | |
R=r CC=golang-dev http://codereview.appspot.com/823048 | |||||
2010-02-24 | gofmt: don't print ()'s around function-typed results (not needed anymore) | Robert Griesemer | 1 | -1/+1 | |
- add extra test cases to go/printer tests - apply gofmt to src and misc R=rsc CC=golang-dev http://codereview.appspot.com/223041 | |||||
2010-01-26 | gc: fix chan <- chan precedence. | Russ Cox | 1 | -1/+1 | |
also allow func() func(). R=ken2 CC=golang-dev http://codereview.appspot.com/194078 | |||||
2010-01-24 | gc: record full package paths in runtime type data | Russ Cox | 1 | -0/+7 | |
detect compilation of special package runtime with compiler flag instead of package name. R=ken2 CC=golang-dev http://codereview.appspot.com/193080 | |||||
2009-12-15 | 1) Change default gofmt default settings for | Robert Griesemer | 1 | -317/+317 | |
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 4th set of files. R=rsc CC=golang-dev http://codereview.appspot.com/180049 | |||||
2009-11-09 | - replaced gofmt expression formatting algorithm with | Robert Griesemer | 1 | -1/+1 | |
rsc's algorithm - applied gofmt -w misc src - partial CL (last chunk) R=rsc, r http://go/go-review/1024041 | |||||
2009-11-09 | remove semis after statements in one-statement statement lists | Robert Griesemer | 1 | -114/+114 | |
R=rsc, r http://go/go-review/1025029 | |||||
2009-11-08 | delete a pointless todo in all_test.go. | Rob Pike | 1 | -1/+1 | |
address one in rpc/client.go R=rsc CC=go-dev http://go/go-review/1026030 | |||||
2009-11-06 | - application of gofmt with one-line composite literal structs enabled | Robert Griesemer | 1 | -129/+29 | |
- this CL is dependent on CL 1025008 R=r, rsc http://go/go-review/1025009 | |||||
2009-11-06 | - fine-tuning of one-line func heuristic (nodes.go) | Robert Griesemer | 1 | -9/+3 | |
- enabled for function declarations (not just function literals) - applied gofmt -w $GOROOT/src (look for instance at src/pkg/debug/elf/elf.go) R=r, rsc CC=go-dev http://go/go-review/1026006 | |||||
2009-11-05 | missing piece gofmt'ed in reflect | Robert Griesemer | 1 | -36/+108 | |
R=r, rsc http://go/go-review/1025001 | |||||
2009-11-05 | gofmt-ify reflect | Robert Griesemer | 1 | -198/+367 | |
- the single line structs can be fixed in another round R=rsc http://go/go-review/1016052 | |||||
2009-10-21 | Add SetValue(Value) to the Value interface. | Adam Langley | 1 | -1/+43 | |
R=rsc APPROVED=rsc DELTA=172 (170 added, 0 deleted, 2 changed) OCL=35969 CL=35980 | |||||
2009-09-29 | undo 35108 (disallow parens around type in struct literal). | Russ Cox | 1 | -5/+5 | |
allow parens around [...]int in struct literal. R=ken OCL=35112 CL=35130 | |||||
2009-09-29 | disallow parens around type in struct literal syntax, | Russ Cox | 1 | -5/+5 | |
per discussion with gri. R=ken OCL=35108 CL=35108 | |||||
2009-09-15 | more "declared and not used". | Russ Cox | 1 | -7/+7 | |
the last round omitted := range and only checked 1 out of N vars in a multi-var := R=r OCL=34624 CL=34638 | |||||
2009-09-03 | nil in DeepEqual | Russ Cox | 1 | -0/+2 | |
R=r DELTA=13 (5 added, 6 deleted, 2 changed) OCL=34337 CL=34343 | |||||
2009-08-26 | finish ChanValue: Len and Cap. | Russ Cox | 1 | -0/+11 | |
R=r DELTA=45 (45 added, 0 deleted, 0 changed) OCL=33873 CL=33881 | |||||
2009-08-26 | add Close() and Closed() to ChanValue | Russ Cox | 1 | -0/+19 | |
R=r DELTA=60 (56 added, 3 deleted, 1 changed) OCL=33868 CL=33872 | |||||
2009-08-24 | change reflect test to avoid bug132 | Russ Cox | 1 | -3/+20 | |
R=gri DELTA=20 (17 added, 0 deleted, 3 changed) OCL=33793 CL=33802 | |||||
2009-08-12 | convert low-level (used by testing) packages to | Russ Cox | 1 | -28/+28 | |
whole-package compilation. new Makefiles, tests now in separate package bytes flag fmt io math once os reflect strconv sync time utf8 delete import "xxx" in package xxx. inside package xxx, xxx is not declared anymore so s/xxx.//g delete file and package level forward declarations. note the new internal_test.go and sync and strconv to provide public access to internals during testing. the installed version of the package omits that file and thus does not open the internals to all clients. R=r OCL=33065 CL=33097 | |||||
2009-08-05 | - FieldByName lookup through anonymous fields | Robert Griesemer | 1 | -0/+144 | |
- FieldByIndex - changed StructField.Index type from int -> []int - adjustments to reflect clients R=rsc,r DELTA=336 (263 added, 47 deleted, 26 changed) OCL=32731 CL=32802 | |||||
2009-07-21 | Don't cast nil to a fixed array type. | Ian Lance Taylor | 1 | -1/+1 | |
R=rsc DELTA=1 (0 added, 0 deleted, 1 changed) OCL=31916 CL=31937 | |||||
2009-07-20 | Make struct field names unique. | Ian Lance Taylor | 1 | -5/+5 | |
R=rsc DELTA=5 (0 added, 0 deleted, 5 changed) OCL=31900 CL=31900 | |||||
2009-07-16 | add FieldByName to the interface of reflect.StructType | Rob Pike | 1 | -1/+10 | |
R=rsc DELTA=34 (33 added, 0 deleted, 1 changed) OCL=31752 CL=31754 | |||||
2009-07-16 | fix some bad testing prints | Rob Pike | 1 | -1/+1 | |
R=rsc DELTA=5 (0 added, 0 deleted, 5 changed) OCL=31740 CL=31742 | |||||
2009-07-10 | reflection for interface set | Russ Cox | 1 | -4/+29 | |
rename map access methods to Elem, SetElem. R=r DELTA=95 (66 added, 7 deleted, 22 changed) OCL=31456 CL=31469 | |||||
2009-07-10 | DeepEqual for maps | Rob Pike | 1 | -12/+18 | |
R=rsc DELTA=47 (30 added, 16 deleted, 1 changed) OCL=31455 CL=31455 |