Age | Commit message (Collapse) | Author | Files | Lines |
|
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
|
|
R=r
OCL=23012
CL=23014
|
|
R=r
OCL=22166
CL=22166
|
|
leaving golden.out alone for now.
R=ken
DELTA=13 (0 added, 0 deleted, 13 changed)
OCL=21682
CL=21682
|
|
fix bugs left over from *[] to [] conversion.
TBR=r
OCL=21576
CL=21581
|
|
R=r
OCL=21564
CL=21564
|
|
R=ken
OCL=19943
CL=19943
|
|
add commands to two new ken tests
R=gri
OCL=14751
CL=14751
|
|
R=r
OCL=14656
CL=14656
|