index
:
go
bench-before
fix-runtime-test-GOMAXPROCS
json-isValidNumber
json-isValidNumber-before
main
makepkg
ms-fix-multipart-readform
Fork of Go programming language with my patches.
Go Authors
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
pkg
/
encoding
/
json
/
decode_test.go
Age
Commit message (
Expand
)
Author
2014-09-08
build: move package sources from src/pkg to src
Russ Cox
2014-01-03
encoding/json: Fix missing error when trying to unmarshal null string into in...
Emil Hessman
2014-01-02
encoding/json: add tests for InvalidUnmarshalError
Dave Cheney
2013-09-09
encoding/json: document actual behavior for Unmarshal into interface{}
Russ Cox
2013-08-29
undo CL 13180043 / 318540e7857f
Andrew Gerrand
2013-08-29
encoding/json: add "overflow" struct tag option
Andrew Gerrand
2013-08-14
encoding/json: support encoding.TextMarshaler, encoding.TextUnmarshaler
Russ Cox
2013-08-09
encoding/json: faster encoding
Brad Fitzpatrick
2013-08-03
various: deleted unused items
Rob Pike
2013-07-12
encoding/json: add more tests for UTF-8 coercion
Russ Cox
2013-07-12
undo CL 11161044 / ba455262a9db
Russ Cox
2013-07-12
encoding/json: coerce invalid UTF-8 to valid UTF-8 during Marshal
Russ Cox
2013-07-12
encoding/json: escape U+2028 and U+2029.
David Symonds
2013-07-11
json: unmarshal types that are byte slices.
Paul Borman
2013-04-09
encoding/json: fix handling of anonymous fields
Rob Pike
2013-03-13
encoding/json: properly handle extra objects with fixed size arrays
Rick Arnold
2013-02-25
all: fix some vet-found printf errors
Rob Pike
2013-02-14
encoding/json: document and test use of unicode.ReplacementChar
Russ Cox
2013-02-14
encoding/json: roll back Unmarshal optimization + test
Russ Cox
2013-01-30
encoding/json: properly unmarshal empty arrays.
Andrey Mirtchovski
2013-01-29
encoding/json: add test for Unmarshal of malformed data
Russ Cox
2013-01-22
encoding/json: ignore unexported fields in Unmarshal
Rick Arnold
2013-01-14
encoding/json: fix panics on type mismatches.
Rémy Oudompheng
2013-01-10
encoding/json: improve performance of Unmarshal on primitive types
Rick Arnold
2013-01-07
src: Use bytes.Equal instead of bytes.Compare where possible.
Matthew Dempsky
2012-12-30
encoding/json: encode map key is of string kind, decode only of string type
Ryan Slade
2012-11-12
encoding/json: skip unexpected null values
Rick Arnold
2012-09-10
encoding/json: handle anonymous fields
Russ Cox
2012-06-25
encoding/json: add Number type
Jonathan Gold
2012-06-07
encoding/json: fix panic unmarshaling into non-nil interface value
Russ Cox
2012-05-29
encoding/json: add round trip test in Unmarshal
Russ Cox
2012-05-03
encoding/json: Fix panic when trying to unmarshal the empty string into an in...
Michael Chaten
2012-05-01
encoding/json: don't match field name if a JSON struct tag is present.
David Symonds
2012-02-28
encoding/json: drop MarshalForHTML; gofix calls to Marshal.
David Symonds
2012-02-19
encoding/json: disable anonymous fields
Russ Cox
2012-02-03
encoding/json: call (*T).MarshalJSON for addressable T values.
David Symonds
2012-01-12
json: better error messages when the ,string option is misused
Brad Fitzpatrick
2011-12-19
encoding/json: cleanup leftover variables in array decoding.
Rémy Oudompheng
2011-12-15
json: some tests to demonstrate bad error messages
Brad Fitzpatrick
2011-12-02
gofmt -s misc src
Russ Cox
2011-11-03
encoding: move asn1, csv, gob, json, xml into encoding
Rob Pike