summaryrefslogtreecommitdiff
path: root/test/ken/rob2.go
AgeCommit message (Collapse)AuthorFilesLines
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+272
2011-09-13Imported Upstream version 60Ondřej Surý1-272/+0
2009-12-10make test/ken safe for optional semisRobert Griesemer1-24/+12
R=rsc, ken2, ken3 http://codereview.appspot.com/174042
2009-09-14fix "declared and not used" in tests;Russ Cox1-3/+1
also template/template.go, missed last time. R=r DELTA=116 (61 added, 10 deleted, 45 changed) OCL=34620 CL=34622
2009-08-12delete forward type declarationsRuss Cox1-6/+0
R=r DELTA=163 (1 added, 149 deleted, 13 changed) OCL=33106 CL=33111
2009-08-12convert non-pkg go files to whole-package compilation.Russ Cox1-5/+0
mostly removing forward declarations. R=r DELTA=138 (2 added, 127 deleted, 9 changed) OCL=33068 CL=33099
2009-04-15code changes for array conversion.Russ Cox1-1/+1
as a reminder, the old conversion was that you could write var arr [10]byte; var slice []byte; slice = arr; but now you have to write slice = &arr; the change eliminates an implicit &, so that the only implicit &s left are in the . operator and in string(arr). also, removed utf8.EncodeRuneToString in favor of string(rune). R=r DELTA=83 (1 added, 23 deleted, 59 changed) OCL=27531 CL=27534
2009-01-20delete exportRuss Cox1-14/+14
TBR=r OCL=23121 CL=23127
2009-01-16convert tests; nothing interesting.Russ Cox1-14/+14
R=r OCL=23012 CL=23014
2009-01-06new new & makeRuss Cox1-3/+3
R=r OCL=22166 CL=22166
2008-12-20fix some tests. only 3 remain broken (complit, hilbert, initcomma).Rob Pike1-3/+3
leaving golden.out alone for now. R=ken DELTA=13 (0 added, 0 deleted, 13 changed) OCL=21682 CL=21682
2008-12-19change *map to map; *chan to chan; new(T) to new(*T)Russ Cox1-3/+3
fix bugs left over from *[] to [] conversion. TBR=r OCL=21576 CL=21581
2008-10-07remove uses of *T as an implicit forward declaration of TRuss Cox1-0/+6
R=gri,r OCL=16648 CL=16652
2008-10-07update code to follow new semicolon rules:Russ Cox1-1/+1
* 1. all statements and declarations are terminated by semicolons * 2. semicolons can be omitted at top level. * 3. semicolons can be omitted before and after the closing ) or } * on a list of statements or declarations. /home/rsc/bin/addsemi and then diff+tweak. R=r,gri OCL=16620 CL=16643
2008-08-12fixed bugs in const/caseKen Thompson1-37/+35
R=r DELTA=138 (75 added, 12 deleted, 51 changed) OCL=14129 CL=14131
2008-08-11fix bug depot:Rob Pike1-10/+10
1) fix print statements, panic statements (parentheses required) 2) len is now allowed as a var name (bug053) R=gri OCL=14106 CL=14106
2008-06-27export sys.exitRob Pike1-3/+1
update tests to use exit rather than return ignore return value from main (actually done in prior CL) SVN=125173
2008-06-18clean up ken/rob2.go to eliminate a few workaroundsRob Pike1-7/+6
SVN=123442
2008-06-06add ken's tests.Rob Pike1-0/+296
update run to work with multiple directories SVN=121485