summaryrefslogtreecommitdiff
path: root/src/pkg/json
AgeCommit message (Collapse)AuthorFilesLines
2009-10-05update json commentsRuss Cox1-12/+14
R=r DELTA=16 (4 added, 2 deleted, 10 changed) OCL=35320 CL=35331
2009-09-17use buf.String() instead of string(buf.Bytes())Rob Pike1-1/+1
use strings.Buffer instead of bytes.Buffer in some places R=rsc DELTA=40 (0 added, 3 deleted, 37 changed) OCL=34770 CL=34775
2009-09-17unused importsRuss Cox1-3/+0
R=r OCL=34731 CL=34731
2009-09-16rename bytes.Buffer.Data() to bytes.Buffer.Bytes()Rob Pike1-1/+1
R=rsc DELTA=152 (6 added, 0 deleted, 146 changed) OCL=34695 CL=34701
2009-09-14fix "declared and not used" errors in non-test code.Russ Cox2-5/+2
R=r DELTA=112 (6 added, 57 deleted, 49 changed) OCL=34610 CL=34610
2009-09-09update type switch to match spec.Russ Cox1-6/+2
R=ken OCL=34471 CL=34471
2009-09-01make ToUpper, ToLower etc. handle unicode properly.Rob Pike1-1/+1
Change their names too. R=rsc DELTA=206 (123 added, 2 deleted, 81 changed) OCL=34170 CL=34194
2009-08-12convert non-low-level non-google pkg codeRuss Cox5-66/+6
to whole-package compilation. R=r OCL=33070 CL=33101
2009-08-05- FieldByName lookup through anonymous fieldsRobert Griesemer1-1/+1
- FieldByIndex - changed StructField.Index type from int -> []int - adjustments to reflect clients R=rsc,r DELTA=336 (263 added, 47 deleted, 26 changed) OCL=32731 CL=32802
2009-07-16use FieldByName where possible.Rob Pike1-4/+2
R=rsc DELTA=20 (0 added, 12 deleted, 8 changed) OCL=31758 CL=31758
2009-07-07json: use new reflect interface (CL 31107)Russ Cox2-125/+134
R=r DELTA=192 (52 added, 43 deleted, 97 changed) OCL=31116 CL=31286
2009-06-29io.StringBytes -> strings.BytesRuss Cox1-2/+2
io.ByteBuffer -> bytes.Buffer left io.ByteBuffer stub around for now, for protocol compiler. R=r OCL=30861 CL=30872
2009-06-22changes required if we disallow the implicit *Russ Cox2-36/+24
in cap, len, [], and range on maps, strings, and slices. R=r DELTA=57 (2 added, 12 deleted, 43 changed) OCL=30549 CL=30590
2009-06-09mv src/lib to src/pkgRob Pike6-0/+1246
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102