summaryrefslogtreecommitdiff
path: root/test/ken/array.go
AgeCommit message (Collapse)AuthorFilesLines
2009-04-15code changes for array conversion.Russ Cox1-4/+4
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-16convert tests; nothing interesting.Russ Cox1-4/+4
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-1/+1
fix bugs left over from *[] to [] conversion. TBR=r OCL=21576 CL=21581
2008-12-18arraysKen Thompson1-4/+4
R=r OCL=21564 CL=21564
2008-11-24compiler catches out of bounds; work aroundRob Pike1-1/+2
R=ken OCL=19943 CL=19943
2008-09-03update testsRob Pike1-5/+4
add commands to two new ken tests R=gri OCL=14751 CL=14751
2008-08-29fix type of (1<<x)Ken Thompson1-0/+156
R=r OCL=14656 CL=14656