- 19 Aug, 2010 9 commits
-
-
Robert Griesemer authored
Augmented ASTs may contain cycles. Keep track of already printed objects and refer to them with a line number instead of printing them again. R=rsc CC=golang-dev https://golang.org/cl/1998042
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/1984043
-
Adam Langley authored
R=rsc CC=golang-dev https://golang.org/cl/2018041
-
Robert Griesemer authored
go/ast: implement Fprint and print functions to print AST nodes gofmt: print AST nodes by setting -ast flag R=rsc, r CC=golang-dev https://golang.org/cl/1981044
-
Christopher Wedgwood authored
R=rsc CC=golang-dev https://golang.org/cl/1933043
-
Russ Cox authored
R=ec CC=golang-dev https://golang.org/cl/1982045
-
Eric Clark authored
Function to create a GoString with a known length so it can contain NUL bytes anywhere in the string. Some C libraries have strings like this. R=rsc CC=golang-dev https://golang.org/cl/2007042
-
Rob Pike authored
R=rsc, gri CC=golang-dev https://golang.org/cl/1952045
-
Christopher Wedgwood authored
R=rsc, r CC=golang-dev https://golang.org/cl/1983045
-
- 18 Aug, 2010 5 commits
-
-
Luuk van Dijk authored
Part 1, general scaffolding and pc/lc sections. R=rsc, r, ken2 CC=golang-dev https://golang.org/cl/1987042
-
Russ Cox authored
R=adg CC=golang-dev https://golang.org/cl/2012041
-
Russ Cox authored
R=adg, r, PeterGo CC=golang-dev https://golang.org/cl/1942044
-
Russ Cox authored
I'm not sure there's a better way. Cgo is juggling two different C compilers. Fixes #1008. R=iant CC=golang-dev https://golang.org/cl/1972044
-
Russ Cox authored
Fixes #985. R=dsymonds, dsymonds1 CC=golang-dev https://golang.org/cl/1963044
-
- 17 Aug, 2010 9 commits
-
-
Russ Cox authored
handle missing id in server. Fixes #1017. Fixes #1018. R=r CC=golang-dev https://golang.org/cl/1986044
-
Luuk van Dijk authored
Linenumbers start at 1. Also call goc2c with an absolute pathi to preserve debug info. R=rsc, r, ken2 CC=golang-dev https://golang.org/cl/1954049
-
Robert Griesemer authored
(Argument: For any *PtrValue p, it should always be possible to do: p.PointTo(p.Elem()), even if p.Elem() is nil.) Fixes #1028. R=rsc CC=golang-dev, r https://golang.org/cl/1938044
-
Russ Cox authored
R=lvd CC=golang-dev https://golang.org/cl/1956046
-
Scott Lawrence authored
to prevent files named 'clean', 'bench', etc... preventing proper build R=golang-dev, rsc CC=golang-dev https://golang.org/cl/1976044
-
Roger Peppe authored
preceded by white space parse correctly. R=r CC=golang-dev https://golang.org/cl/2010041
-
Roger Peppe authored
R=rsc, r CC=golang-dev https://golang.org/cl/2005042
-
Robert Griesemer authored
tabwriter: Introduce a new flag StripEscape to control if tabwriter.Escape chars should be stripped or passed through unchanged. go/printer: Don't modify tabwriter.Escape'd text. This involved a new implementation of the internal trimmer object. Does not affect formatting of any existing code under $GOROOT/src and $GOROOT/misc. Fixes #1030. R=rsc CC=golang-dev https://golang.org/cl/1943045
-
Alex Brainman authored
R=rsc CC=golang-dev https://golang.org/cl/1995043
-
- 16 Aug, 2010 7 commits
-
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/1985042
-
Rob Pike authored
the solution must work around a weakness in the reflection library: there is no way to do type-safe conversions under reflection. R=rsc CC=golang-dev https://golang.org/cl/2000041
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/1953044
-
Russ Cox authored
Fixes #1023. R=gri CC=golang-dev https://golang.org/cl/1968043
-
Mikkel Krautz authored
This changeset implements client certificate support in crypto/tls for both handshake_server.go and handshake_client.go The updated server implementation sends an empty CertificateAuthorities field in the CertificateRequest, thus allowing clients to send any certificates they wish. Likewise, the client code will only respond with its certificate when the server requests a certificate with this field empty. R=agl, rsc, agl1 CC=golang-dev https://golang.org/cl/1975042
-
Russ Cox authored
R=agl, agl1 CC=golang-dev https://golang.org/cl/1959042
-
Nigel Tao authored
R=r, mpl CC=golang-dev https://golang.org/cl/1944043
-
- 15 Aug, 2010 1 commit
-
-
Rob Pike authored
R=gri CC=golang-dev https://golang.org/cl/1960044
-
- 14 Aug, 2010 2 commits
-
-
Ken Thompson authored
R=rsc CC=golang-dev https://golang.org/cl/1942043
-
Stephen Ma authored
R=golang-dev CC=golang-dev https://golang.org/cl/1982042
-
- 13 Aug, 2010 7 commits
-
-
Rob Pike authored
Fixes #1024. R=rsc CC=golang-dev https://golang.org/cl/1961042
-
Ken Thompson authored
(thanks to avp@mit.edu) R=rsc CC=golang-dev https://golang.org/cl/1998041
-
Robert Griesemer authored
- change ast.Ident back to contain the name and adjust all dependent code - identifier object information will be added again through an optional typechecker phase (in the works). - remove tracking of scopes in parser - it's easier to do this in a separate phase (in the works) - in godoc, generate popup info table directly instead of through a formatter for simpler data flow (at the expense of a little bit more code) Runs all tests. As a result of this change, the currently shown popup information (const, var, type, func, followed by identifier name) will not be shown anymore temporarily. R=rsc CC=golang-dev https://golang.org/cl/1994041
-
Rob Pike authored
Rearrange code to clarify handling of %T, Formatter, GoStringer, and Stringer. R=rsc CC=golang-dev https://golang.org/cl/1973043
-
Russ Cox authored
Makes godoc --http=:1234 not crash on linux/amd64. R=r CC=golang-dev https://golang.org/cl/1975044
-
Alex Brainman authored
Fixes #864. R=rsc CC=golang-dev https://golang.org/cl/1975043
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/1995041
-