aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/encoding/json/decode_test.go
AgeCommit message (Expand)Author
2014-09-08build: move package sources from src/pkg to srcRuss Cox
2014-01-03encoding/json: Fix missing error when trying to unmarshal null string into in...Emil Hessman
2014-01-02encoding/json: add tests for InvalidUnmarshalErrorDave Cheney
2013-09-09encoding/json: document actual behavior for Unmarshal into interface{}Russ Cox
2013-08-29undo CL 13180043 / 318540e7857fAndrew Gerrand
2013-08-29encoding/json: add "overflow" struct tag optionAndrew Gerrand
2013-08-14encoding/json: support encoding.TextMarshaler, encoding.TextUnmarshalerRuss Cox
2013-08-09encoding/json: faster encodingBrad Fitzpatrick
2013-08-03various: deleted unused itemsRob Pike
2013-07-12encoding/json: add more tests for UTF-8 coercionRuss Cox
2013-07-12undo CL 11161044 / ba455262a9dbRuss Cox
2013-07-12encoding/json: coerce invalid UTF-8 to valid UTF-8 during MarshalRuss Cox
2013-07-12encoding/json: escape U+2028 and U+2029.David Symonds
2013-07-11json: unmarshal types that are byte slices.Paul Borman
2013-04-09encoding/json: fix handling of anonymous fieldsRob Pike
2013-03-13encoding/json: properly handle extra objects with fixed size arraysRick Arnold
2013-02-25all: fix some vet-found printf errorsRob Pike
2013-02-14encoding/json: document and test use of unicode.ReplacementCharRuss Cox
2013-02-14encoding/json: roll back Unmarshal optimization + testRuss Cox
2013-01-30encoding/json: properly unmarshal empty arrays.Andrey Mirtchovski
2013-01-29encoding/json: add test for Unmarshal of malformed dataRuss Cox
2013-01-22encoding/json: ignore unexported fields in UnmarshalRick Arnold
2013-01-14encoding/json: fix panics on type mismatches.Rémy Oudompheng
2013-01-10encoding/json: improve performance of Unmarshal on primitive typesRick Arnold
2013-01-07src: Use bytes.Equal instead of bytes.Compare where possible.Matthew Dempsky
2012-12-30encoding/json: encode map key is of string kind, decode only of string typeRyan Slade
2012-11-12encoding/json: skip unexpected null valuesRick Arnold
2012-09-10encoding/json: handle anonymous fieldsRuss Cox
2012-06-25encoding/json: add Number typeJonathan Gold
2012-06-07encoding/json: fix panic unmarshaling into non-nil interface valueRuss Cox
2012-05-29encoding/json: add round trip test in UnmarshalRuss Cox
2012-05-03encoding/json: Fix panic when trying to unmarshal the empty string into an in...Michael Chaten
2012-05-01encoding/json: don't match field name if a JSON struct tag is present.David Symonds
2012-02-28encoding/json: drop MarshalForHTML; gofix calls to Marshal.David Symonds
2012-02-19encoding/json: disable anonymous fieldsRuss Cox
2012-02-03encoding/json: call (*T).MarshalJSON for addressable T values.David Symonds
2012-01-12json: better error messages when the ,string option is misusedBrad Fitzpatrick
2011-12-19encoding/json: cleanup leftover variables in array decoding.Rémy Oudompheng
2011-12-15json: some tests to demonstrate bad error messagesBrad Fitzpatrick
2011-12-02gofmt -s misc srcRuss Cox
2011-11-03encoding: move asn1, csv, gob, json, xml into encodingRob Pike