summaryrefslogtreecommitdiff
path: root/src/encoding/json
Commit message (Expand)AuthorAgeFilesLines
* encoding/json: document what happens to MarshalText's resultRuss Cox2016-11-221-1/+1
* all: spell "marshal" and "unmarshal" consistentlyDmitri Shuralyov2016-11-122-4/+4
* encoding/json: encode nil Marshaler as "null"Emmanuel Odeke2016-11-112-1/+43
* all: sprinkle t.Parallel on some slow testsBrad Fitzpatrick2016-11-042-0/+3
* encoding/json: example on MarshalJSON, UnmarshalJSONEmmanuel Odeke2016-11-031-0/+73
* encoding/json: marshal with null when RawMessage is nilJoe Tsai2016-11-012-33/+100
* encoding/json: marshal the RawMessage value type the same as its pointer typeBrad Fitzpatrick2016-10-262-4/+17
* encoding/json: fix bad formatting introduced in CL 20356Russ Cox2016-10-241-2/+2
* encoding/json: fix decoding of null into Unmarshaler, TextUnmarshalerRuss Cox2016-10-172-37/+219
* encoding/json: handle misspelled JSON literals in ,stringRuss Cox2016-10-132-1/+27
* encoding/json: explicitly document and test "-" key tagRichard Gibson2016-10-062-12/+32
* encoding/json: add struct and field name to UnmarshalTypeError messageJirka Daněk2016-10-052-34/+90
* encoding/json: use standard ES6 formatting for numbers during marshalRuss Cox2016-10-053-1/+143
* all: use sort.Slice where applicableBrad Fitzpatrick2016-10-041-33/+17
* encoding/json: fix a bug in the documentationmike andrews2016-09-271-1/+2
* encoding/json: Use a lookup table for safe charactersKevin Burke2016-09-082-4/+220
* encoding/json: add example for RawMessage marshallingCarlos C2016-08-161-1/+25
* encoding/json: copy-on-write cacheTypeFieldsDavid Crawshaw2016-06-271-10/+13
* encoding/json: fix docs on valid key namesDavid Glasser2016-06-031-2/+2
* encoding/json: improve Decode exampleQuentin Smith2016-05-261-2/+1
* encoding/json: rename Indent method to SetIndentRuss Cox2016-05-242-6/+13
* encoding/json: change DisableHTMLEscaping to SetEscapeHTMLRuss Cox2016-05-242-8/+13
* encoding/json: additional tests and fixes for []typedByte encoding/decodingRuss Cox2016-05-242-13/+208
* encoding/json: document that object keys are sortedScott Bell2016-05-161-2/+2
* encoding/json: support maps with integer keysCaleb Spare2016-05-103-22/+158
* encoding/json: add Encoder.DisableHTMLEscapingCaleb Spare2016-04-224-93/+150
* encoding/json: update docs to not use misuse the term "object"Brad Fitzpatrick2016-04-163-11/+11
* encoding/json: respect json.Marshaler when encoding byte kind slicesHåvard Haugen2016-04-062-1/+58
* encoding/json: allow non-string type keys for (un-)marshalAugusto Roman2016-04-054-40/+123
* all: zero mtimes in testdata gz filesCaleb Spare2016-03-251-0/+0
* encoding/json: add (*Encoder).IndentCaleb Spare2016-03-252-1/+51
* encoding/json, internal/testenv: use FatalfDominik Honnef2016-03-221-1/+1
* all: single space after period.Brad Fitzpatrick2016-03-024-9/+9
* all: make copyright headers consistent with one space after periodBrad Fitzpatrick2016-03-0111-11/+11
* all: fix typos and spellingMartin Möhrmann2016-02-241-2/+2
* encoding/json: doc: Decode only writes to exported fieldsIan Lance Taylor2016-01-081-0/+1
* encoding/json: document Indent's preservation of trailing spacesRuss Cox2015-12-081-2/+6
* encoding/json: streamline, unexport valid Number checkingRuss Cox2015-12-043-101/+44
* encoding/json: revise docs for Unmarshal into map, slice, arrayRuss Cox2015-12-031-5/+15
* encoding/json: check if Number is validErik Dubbelboer2015-11-254-0/+271
* encoding/json: use reflect.SetBytes when decoding bytesHåvard Haugen2015-11-142-1/+22
* encoding/json: check for exported fields in embedded structsMarcel van Lohuizen2015-10-262-3/+15
* encoding/json: simplify encodeState.{string, stringBytes}Nodir Turakulov2015-10-142-18/+8
* encoding/json: document that encoding.TextMarshaler is used if no (json) Mars...Robert Griesemer2015-09-281-1/+4
* encoding/json: spell "marshaling" and "unmarshaling" consistentlyAndrew Gerrand2015-09-232-3/+3
* encoding/json: scanner: use byte, more consistentMarvin Stenger2015-09-215-62/+55
* encoding/json: revert "fix decoding of JSON null values"Russ Cox2015-07-302-76/+2
* encoding/json: test style tweaksBrad Fitzpatrick2015-07-281-18/+11
* encoding/json: take new decoder code off Decode path completelyRuss Cox2015-07-281-4/+11
* encoding/json: fix EOF bug decoding HTTP streamPeter Waldschmidt2015-07-282-1/+48