summaryrefslogtreecommitdiff
path: root/src/lib/utf8_test.go
AgeCommit message (Collapse)AuthorFilesLines
2009-03-26EncodeRuneToStringRobert Griesemer1-0/+11
R=rsc DELTA=22 (22 added, 0 deleted, 0 changed) OCL=26779 CL=26792
2009-03-06delete vestigial references to package syscallRob Pike1-1/+0
R=rsc DELTA=8 (0 added, 5 deleted, 3 changed) OCL=25857 CL=25861
2009-03-03Automated g4 rollback of changelist 25024,Russ Cox1-33/+33
plus significant hand editing. Back to T{x} for composite literals. R=r OCL=25612 CL=25632
2009-02-13convert composite literals from { } to ( ).Russ Cox1-33/+33
only non-trivial changes are in convlit1.go golden.out R=gri OCL=25019 CL=25024
2009-02-06portable stat for osRob Pike1-6/+5
add name to os.FD clean up some interfaces R=rsc DELTA=318 (231 added, 44 deleted, 43 changed) OCL=24624 CL=24627
2009-01-20delete exportRuss Cox1-6/+6
TBR=r OCL=23121 CL=23127
2009-01-16casify miscRuss Cox1-11/+12
R=r DELTA=247 (20 added, 50 deleted, 177 changed) OCL=22951 CL=22955
2009-01-06update utf8_test.goRob Pike1-1/+1
R=rsc OCL=22170 CL=22170
2008-12-18convert *[] to [].Russ Cox1-4/+4
R=r OCL=21563 CL=21571
2008-12-04strings.utflen -> utf8.RuneCount, RuneCountInStringRuss Cox1-0/+22
R=r DELTA=94 (52 added, 33 deleted, 9 changed) OCL=20547 CL=20552
2008-11-24replay CL 19916 and CL 19913 now that the build can handle themRuss Cox1-30/+38
TBR=r OCL=19924 CL=19934
2008-11-24Automated g4 rollback of changelist 19916.Russ Cox1-38/+30
*** Reason for rollback *** broke build *** Original change description *** utf8: add InString routines for decoding in strings reflect: add InterfaceValue.Get(), remove Empty strconv: add Quote, CanBackquote fmt: * %q go-quoted " string * %#q go-quoted ` string if possible, " string otherwise * %x hexadecimal string * anywhere a string is okay, *[]byte is okay * flags # 0 - + space * print value inside interface, not interface itself * tests TBR=r OCL=19920 CL=19920
2008-11-24utf8: add InString routines for decoding in stringsRuss Cox1-30/+38
reflect: add InterfaceValue.Get(), remove Empty strconv: add Quote, CanBackquote fmt: * %q go-quoted " string * %#q go-quoted ` string if possible, " string otherwise * %x hexadecimal string * anywhere a string is okay, *[]byte is okay * flags # 0 - + space * print value inside interface, not interface itself * tests R=r DELTA=756 (597 added, 121 deleted, 38 changed) OCL=19888 CL=19916
2008-11-21utf8 routines in go; a start.Russ Cox1-0/+150
also: * parse flags in testing.Main. * add make test in src/lib. R=r DELTA=323 (323 added, 0 deleted, 0 changed) OCL=19831 CL=19850