Age | Commit message (Collapse) | Author | Files | Lines |
|
Without this change, the spec parses <-c.(type) as (<-c).(type)
but parses <-c.(int) as <-(c.(int)).
With this change, the former parses as <-(c.(type)).
All three parsers already implement this rule, because
they look for the "type" word during parsing of a standard
type assertion. This change merely brings the
spec in line with the implementations.
http://code.google.com/p/go/source/browse/src/cmd/gc/go.y#801
http://code.google.com/p/go/source/browse/src/pkg/go/parser/parser.go#900
http://gcc.gnu.org/viewcvs/branches/gccgo/gcc/go/parse.cc?revision=155389&view=markup#l2469
Pointed out by Brett Kail on golang-nuts.
R=gri
CC=golang-dev
http://codereview.appspot.com/182044
|
|
Fixes issue 452.
R=gri
CC=golang-dev, dougfelt
http://codereview.appspot.com/181043
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/180075
|
|
Also adds Development heading on navbar, with Roadmap being
the only current entry.
R=r
CC=golang-dev
http://codereview.appspot.com/180069
|
|
Fixes issue 422.
R=r
CC=golang-dev
http://codereview.appspot.com/180057
|
|
eliminate all tab characters while we're here.
R=rsc
CC=golang-dev
http://codereview.appspot.com/180055
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/179063
|
|
R=rsc
CC=pwil3058
http://codereview.appspot.com/174087
|
|
This change removes the necessity to have GOBIN in $PATH,
and also doesn't assume that the build is being run from
$GOROOT/src. This is a minimal set of necessary changes
to get Go to build happily from the FreeBSD ports
collection.
R=rsc
CC=golang-dev
http://codereview.appspot.com/171044
Committer: Russ Cox <rsc@golang.org>
|
|
this change.
R=rsc
CC=golang-dev
http://codereview.appspot.com/171048
Committer: Russ Cox <rsc@golang.org>
|
|
R=rsc, r, iant, ken2
CC=golang-dev
http://codereview.appspot.com/166066
Committer: Robert Griesemer <gri@golang.org>
|
|
not hg submit.
R=r
http://codereview.appspot.com/171046
|
|
R=r
http://codereview.appspot.com/170042
|
|
R=gri
CC=golang-dev
http://codereview.appspot.com/164088
|
|
R=jini, r
http://codereview.appspot.com/163092
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/164082
|
|
R=gri
http://codereview.appspot.com/164081
|
|
Easy stuff in this round, more to come.
R=iant, rsc, r, ken2
http://codereview.appspot.com/163058
|
|
- simplified dealing with parse errors: no need to intersperse them in the source
- improve visibility of highlighted identifiers by showing them in bold
R=rsc
http://codereview.appspot.com/163051
|
|
R=golang-dev, rsc
http://codereview.appspot.com/164052
Committer: Russ Cox <rsc@golang.org>
|
|
R=rsc, sergio
http://codereview.appspot.com/162058
Committer: Russ Cox <rsc@golang.org>
|
|
make the GOOS/GOARCH pair a table to avoid the confusion caused when it was of the form linux/386.
R=rsc
CC=golang-dev
http://codereview.appspot.com/160061
|
|
the current system is too painful, so instead let's just have the coders tell us the details.
we can update the files ourselves.
R=rsc, r1
CC=golang-dev
http://codereview.appspot.com/157158
|
|
R=rsc
CC=r
http://codereview.appspot.com/160056
|
|
R=rsc
CC=golang-dev, reneefrench
http://codereview.appspot.com/157144
|
|
the bash scripts and makefiles for building go didn't take into account
the fact $GOROOT / $GOBIN could both be directories containing whitespaces,
and was not possible to build it in such a situation.
this commit adjusts the various makefiles/scripts to make it aware of that
possibility, and now it builds successfully when using a path with whitespaces
as well.
Fixes issue 115.
R=rsc, dsymonds1
http://codereview.appspot.com/157067
Committer: Russ Cox <rsc@golang.org>
|
|
Fixes issue 113.
R=gri, rsc
CC=golang-dev
http://codereview.appspot.com/159049
|
|
of keeping a checked-in copy. doesn't
slow down make.bash appreciably.
R=r
http://codereview.appspot.com/156099
|
|
Built-in function copy.
Addresses issue 203.
R=rsc, r, iant
http://codereview.appspot.com/156089
|
|
R=r
http://codereview.appspot.com/156080
|
|
R=dho
CC=golang-dev
http://codereview.appspot.com/156067
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/156044
|
|
R=rsc
http://codereview.appspot.com/155058
|
|
Fixes issue 218
R=r
CC=golang-dev
http://codereview.appspot.com/155067
Committer: Rob Pike <r@golang.org>
|
|
- Slight re-phrasing of struct type section since "field name" was not
properly introduced.
Fixes issue 164.
R=r, rsc, iant
http://codereview.appspot.com/155061
|
|
Fixes issue 173.
R=r, rsc, r1
http://codereview.appspot.com/154156
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/154153
|
|
Thanks to anno.langen.
Fixes issue 103.
R=r
http://codereview.appspot.com/155050
|
|
Fixes issue 196.
R=rsc
http://codereview.appspot.com/154152
|
|
Fixes issue 189.
R=r
CC=rsc
http://codereview.appspot.com/155055
|
|
R=rsc
http://codereview.appspot.com/152128
|
|
fix a typo caught by kakugawa@gmail.com
Fixes issue 92.
R=rsc
CC=golang-dev
http://codereview.appspot.com/152105
|
|
add a mention of range to the tutorial.
change tutorial's title.
R=rsc
CC=golang-dev
http://codereview.appspot.com/152098
|
|
R=rsc, agl1
CC=golang-dev
http://codereview.appspot.com/154076
|
|
Fixes issue 69.
R=r
http://codereview.appspot.com/152082
|
|
Fixes issue 59.
Add note about export.
R=r
http://codereview.appspot.com/152079
|
|
R=rsc, iant
CC=golang-dev
http://codereview.appspot.com/154059
|
|
Fixes issue 45.
R=rsc, r1
CC=golang-dev
http://codereview.appspot.com/154055
|
|
Fixes issue 14.
R=r
http://codereview.appspot.com/152052
|
|
R=rsc
CC=go-dev
http://codereview.appspot.com/152050
|