1
0
mirror of https://github.com/golang/go synced 2024-10-03 10:21:22 -06:00
go/usr/gri/pretty
Russ Cox 60ce95d7a1 code changes for array conversion.
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-04-15 20:27:45 -07:00
..
astprinter.go Daily snapshot. 2009-04-03 16:19:22 -07:00
comment.go godoc: use data-driven templates for html, text generation 2009-04-15 18:53:43 -07:00
compilation.go daily snapshot: 2009-03-31 16:53:58 -07:00
docprinter.go godoc: use data-driven templates for html, text generation 2009-04-15 18:53:43 -07:00
godoc.go godoc: use data-driven templates for html, text generation 2009-04-15 18:53:43 -07:00
Makefile godoc: use data-driven templates for html, text generation 2009-04-15 18:53:43 -07:00
Makefile.iant Update for source code changes. 2008-12-19 14:32:00 -08:00
package.html godoc: supporting data 2009-04-15 18:38:37 -07:00
package.txt godoc: supporting data 2009-04-15 18:38:37 -07:00
packagelist.html godoc: supporting data 2009-04-15 18:38:37 -07:00
packagelist.txt godoc: supporting data 2009-04-15 18:38:37 -07:00
parseerror.html godoc: supporting data 2009-04-15 18:38:37 -07:00
parseerror.txt godoc: supporting data 2009-04-15 18:38:37 -07:00
platform.go code changes for array conversion. 2009-04-15 20:27:45 -07:00
pretty.go Daily snapshot. 2009-04-03 16:19:22 -07:00
selftest0.go delete export 2009-01-20 14:40:40 -08:00
selftest1.go Steps towards a general scanner/parser library for Go: 2009-02-27 15:40:17 -08:00
selftest2.go - using doc template for gds now 2009-03-05 18:44:21 -08:00
symboltable.go - vector package (identical to array except for names) 2009-02-13 15:07:56 -08:00
test.sh daily snapshot: 2009-03-13 16:59:51 -07:00
typechecker.go daily snapshot: 2009-03-31 16:53:58 -07:00
untab.go Rename os.FD to os.File. 2009-03-11 12:51:10 -07:00
utils.go code changes for array conversion. 2009-04-15 20:27:45 -07:00