summaryrefslogtreecommitdiff
path: root/src/encoding/json/decode_test.go
Commit message (Expand)AuthorAgeFilesLines
* all: gofmt -w -r 'interface{} -> any' srcRuss Cox2021-12-131-53/+53
* all: use reflect.{Pointer,PointerTo}Cuong Manh Le2021-10-261-1/+1
* Revert "encoding/json: implement Is on all errors"Damien Neil2020-09-141-31/+0
* encoding/json: implement Is on all errorsCarlos Alexandro Becker2020-09-131-0/+31
* Revert "encoding/json: don't reuse slice elements when decoding"Daniel Martí2020-07-021-14/+1
* encoding/json: revert "avoid work when unquoting strings, take 2"Daniel Martí2020-06-151-0/+16
* Revert "encoding/json: reuse values when decoding map elements"Daniel Martí2020-05-281-54/+0
* encoding/json: reuse values when decoding map elementsDaniel Martí2020-05-081-0/+54
* encoding/json: don't mangle strings in an edge case when decodingDaniel Martí2020-05-081-2/+31
* encoding/json: don't reuse slice elements when decodingDaniel Martí2020-05-071-1/+14
* encoding/json: limit max nesting depthJordan Liggitt2020-02-241-0/+96
* encoding/json: support TextUnmarshaler for map keys with string underlying typesCuong Manh Le2019-10-101-0/+20
* encoding/json: validate strings when decoding into NumberLucas Bremgartner2019-09-161-0/+31
* encoding/json: don't indirect pointers when decoding nullRomain Baugue2019-09-101-0/+10
* std: remove unused bits of code all over the placeDaniel Martí2019-09-021-35/+0
* encoding/json: fix scanner byte offset on scanEnditchyny2019-09-021-0/+35
* encoding/json: remove unnecessary isValidNumber callDaniel Martí2019-08-271-0/+1
* encoding/json: fix the broken "overwriting of data" testsDaniel Martí2019-08-271-44/+65
* Revert "encoding/json: avoid work when unquoting strings"Filippo Valsorda2019-08-211-0/+2
* encoding/json: fix Unmarshal hang on recursive pointersLE Manh Cuong2019-04-301-0/+12
* encoding/json: fix performance regression in the decoderDaniel Martí2019-03-181-1/+13
* encoding/json: add Path to UnmarshalTypeErrorLE Manh Cuong2019-03-051-2/+22
* encoding/json: remove use of DeepEqual for testing errorsMarcel van Lohuizen2019-02-271-3/+13
* encoding/json: always verify we can get a field's valueDaniel Martí2018-10-161-0/+15
* encoding/json: fix "data changed underfoot?" panicDaniel Martí2018-10-161-0/+10
* encoding/json: more tests to cover decoding edge casesDaniel Martí2018-09-121-1/+18
* encoding/json: recover saved error context when unmarshallingIan Davis2018-09-061-0/+11
* encoding/json: fix UnmarshalTypeError without field and struct valuesTaesu Pyo2018-08-281-0/+17
* encoding/json: encode struct field names ahead of timeDaniel Martí2018-08-211-1/+1
* go/printer, gofmt: tuned table alignment for better resultsRobert Griesemer2018-04-041-10/+10
* encoding/json: avoid assuming side-effect free reflect.Value.Addr().Elem()Joe Tsai2018-03-011-4/+46
* encoding/json: make error capture logic in recover more type safeJoe Tsai2018-02-141-0/+14
* encoding/json: error when trying to set an embedded pointer to unexported str...Joe Tsai2017-12-061-19/+78
* encoding/json: always ignore embedded pointers to unexported struct typesJoe Tsai2017-11-131-0/+19
* encoding/json: permit encoding uintptr as a stringIan Lance Taylor2017-11-081-19/+23
* encoding/json: disallow unknown fields in DecoderIvan Bertona2017-10-311-6/+82
* all: prefer bytes.IndexByte over bytes.IndexMarvin Stenger2017-09-271-1/+1
* all: spell "marshal" and "unmarshal" consistentlyDmitri Shuralyov2016-11-121-2/+2
* encoding/json: fix decoding of null into Unmarshaler, TextUnmarshalerRuss Cox2016-10-171-32/+193
* encoding/json: handle misspelled JSON literals in ,stringRuss Cox2016-10-131-0/+14
* encoding/json: add struct and field name to UnmarshalTypeError messageJirka Daněk2016-10-051-7/+35
* encoding/json: use standard ES6 formatting for numbers during marshalRuss Cox2016-10-051-0/+12
* encoding/json: additional tests and fixes for []typedByte encoding/decodingRuss Cox2016-05-241-9/+203
* encoding/json: support maps with integer keysCaleb Spare2016-05-101-1/+90
* encoding/json: allow non-string type keys for (un-)marshalAugusto Roman2016-04-051-18/+44
* encoding/json, internal/testenv: use FatalfDominik Honnef2016-03-221-1/+1
* encoding/json: use reflect.SetBytes when decoding bytesHåvard Haugen2015-11-141-0/+21
* encoding/json: check for exported fields in embedded structsMarcel van Lohuizen2015-10-261-2/+14
* encoding/json: spell "marshaling" and "unmarshaling" consistentlyAndrew Gerrand2015-09-231-2/+2
* encoding/json: scanner: use byte, more consistentMarvin Stenger2015-09-211-1/+1