summaryrefslogtreecommitdiff
path: root/src/pkg/json/scanner.go
AgeCommit message (Collapse)AuthorFilesLines
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+624
2011-09-13Imported Upstream version 60Ondřej Surý1-624/+0
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý1-5/+11
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý1-2/+2
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-16/+3
2010-05-08json: accept escaped slash in string scannerMichael Hoisie1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/1173041 Committer: Russ Cox <rsc@golang.org>
2010-04-21json: Marshal, Unmarshal using new scannerRuss Cox1-1/+5
R=r CC=golang-dev http://codereview.appspot.com/953041
2010-04-18json: scanner, Compact, Indent, and testsRuss Cox1-0/+627
This is the first of probably four separate CLs for the new implementation of the json package. The scanner is the core of the new implementation. The other CLs would be the new decoder, the new encoder, and support for JSON streams. R=r CC=golang-dev http://codereview.appspot.com/802051