summaryrefslogtreecommitdiff
path: root/src/pkg/gob/decode.go
AgeCommit message (Expand)AuthorFilesLines
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+1275
2011-09-13Imported Upstream version 60Ondřej Surý1-1275/+0
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý1-22/+22
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý1-1/+1
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý1-56/+70
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý1-92/+113
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý1-126/+284
2011-02-18Imported Upstream version 2011.02.15upstream/2011.02.15Ondřej Surý1-3/+47
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý1-38/+42
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-216/+272
2010-06-28gob: add DecodeValue and EncodeValueRob Pike1-4/+4
2010-06-28gob: allow transmission of things other than structs at the top level.Rob Pike1-42/+71
2010-06-24gob: add support for complex numbersRob Pike1-42/+84
2010-06-21reflect: add Type.Bits method, add tags to prohibit conversionsRuss Cox1-3/+7
2010-06-20reflect: add Kind, remove Int8Type, Int8Value, etc.Russ Cox1-24/+23
2010-05-06gob: add test for indirect maps, slices, arrays.Rob Pike1-3/+0
2010-05-05gob: add support for maps.Rob Pike1-25/+123
2010-03-30single argument panicRuss Cox1-3/+3
2010-03-02gofmt: experiment: align values in map composites where possibleRobert Griesemer1-15/+15
2009-12-30improve some type switches now that multiple types per case are supported.Rob Pike1-25/+3
2009-12-29remove all references to gobType() from the decoder.Rob Pike1-14/+20
2009-12-151) Change default gofmt default settings forRobert Griesemer1-224/+224
2009-12-07runtime: introduce unsafe.New and unsafe.NewArrayRuss Cox1-15/+11
2009-12-03The String() method requires global state that makes it not work outside of t...Rob Pike1-2/+2
2009-12-01more gob bugsRob Pike1-7/+18
2009-11-16Rework gobs to fix bad bug related to sharing of id's between encoder and dec...Rob Pike1-42/+38
2009-11-09 - replaced gofmt expression formatting algorithm withRobert Griesemer1-4/+4
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-95/+95
2009-11-06- fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer1-1/+3
2009-11-05gofmt-ify gobRobert Griesemer1-4/+2
2009-10-11better code for allocation through indirectionRob Pike1-8/+6
2009-10-11fix bugs in gob.Rob Pike1-13/+13
2009-10-06apply gofmt to go, gob, hash, http, image, io, json, logRuss Cox1-73/+74
2009-09-15more "declared and not used".Russ Cox1-1/+1
2009-08-12delete forward type declarationsRuss Cox1-1/+0
2009-08-12convert gob to whole-package compilation.Russ Cox1-5/+1
2009-07-29handle some error conditions involving bad data.Rob Pike1-0/+5
2009-07-28change the encoding of uints to simplify overflow checking and to make themRob Pike1-28/+54
2009-07-28bug177: anonymous struct fields in reflectRuss Cox1-1/+1
2009-07-28- clean up code creating keys for type mapsRob Pike1-79/+128
2009-07-27fix build - broke with uint32 -> int change in reflect SliceHeaderRuss Cox1-2/+2
2009-07-27clean up for public use: make some stuff private, add doc comments.Rob Pike1-21/+21
2009-07-17change reflect.Type.Name() into two functions: Name() and PkgPath() for ease ...Rob Pike1-1/+1
2009-07-17ignore missing structsRob Pike1-20/+75
2009-07-16clean up the code, flow errors out to decoder.Rob Pike1-35/+61
2009-07-16- allow wire type and receive type to differ.Rob Pike1-48/+207
2009-07-15make the low-level encoder and decoder private and have them access byte.Buff...Rob Pike1-67/+85
2009-07-09store ids rather than Types in the structs so they can be encoded.Rob Pike1-11/+28
2009-07-07bug fix: encOpFor etc. need to indirectRob Pike1-9/+9
2009-07-07gob: use new reflectRuss Cox1-61/+52