Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-07-08 | Imported Upstream version 2011.07.07 | Ondřej Surý | 1 | -7/+9 | |
2011-04-28 | Imported Upstream version 2011.04.27 | Ondřej Surý | 1 | -4/+4 | |
2011-04-26 | Imported Upstream version 2011.04.13upstream/2011.04.13 | Ondřej Surý | 1 | -23/+23 | |
2011-04-20 | Imported Upstream version 2011.03.07.1upstream/2011.03.07.1 | Ondřej Surý | 1 | -5/+41 | |
2011-02-18 | Imported Upstream version 2011.02.15upstream/2011.02.15 | Ondřej Surý | 1 | -3/+2 | |
2011-01-17 | Imported Upstream version 2011.01.12upstream/2011.01.12 | Ondřej Surý | 1 | -13/+86 | |
2010-06-21 | reflect: add Type.Bits method, add tags to prohibit conversions | Russ Cox | 1 | -1/+1 | |
gob: substitute slice for map R=r CC=golang-dev http://codereview.appspot.com/1699045 | |||||
2010-06-20 | reflect: add Kind, remove Int8Type, Int8Value, etc. | Russ Cox | 1 | -23/+1 | |
update other code to match. R=r CC=golang-dev http://codereview.appspot.com/1680044 | |||||
2010-04-27 | json: preserve field name case by default | Russ Cox | 1 | -3/+2 | |
This matches the old JSON package behavior. All lowercase names are not as standard as I believed, and it seems less surprising to need to write type T struct { Field string "field" } to get lower case (behavior after this CL) than it does to need to write type T struct { Field string "Field" } to preserve the case (behavior before this CL). Also test and fix unmarshal into non-nil interface value or pointer. Fixes issue 744. R=r CC=golang-dev http://codereview.appspot.com/1013041 | |||||
2010-04-21 | json: Marshal, Unmarshal using new scanner | Russ Cox | 1 | -0/+282 | |
R=r CC=golang-dev http://codereview.appspot.com/953041 |