Age | Commit message (Collapse) | Author | Files | Lines |
|
Wrong position information for identifier
could lead to destructive reformatting of
source via hg gofmt.
R=rsc
CC=golang-dev
http://codereview.appspot.com/189100
|
|
bytes.Buffer.WriteString
Fixes issue 535.
R=rsc
CC=golang-dev
http://codereview.appspot.com/189096
|
|
gccgo currently passes this test; 8g currently does not. I
think I counted everything out right.
R=rsc
CC=golang-dev
http://codereview.appspot.com/186165
|
|
Fixes range.go test for 6g.
R=rsc
CC=golang-dev
http://codereview.appspot.com/189093
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/186169
|
|
http://code.google.com/p/go/issues/detail?id=313
This conflics with Chris' patch at:
http://codereview.appspot.com/181063
But I believe this is more complete since it has a simple caching and proper tests.
R=cw, rsc
CC=golang-dev
http://codereview.appspot.com/183066
Committer: Russ Cox <rsc@golang.org>
|
|
- Identifiers refer now to the language entity (Object)
that they denote. At the moment this is at best an
approximation.
- Initial data structures for language entities (Objects)
and expression types (Type) independent of the actual
type notations.
- Initial support for declaring and looking up identifiers.
- Updated various dependent files and added support functions.
- Extensively tested to avoid breakage. This is an AST change.
R=rsc
CC=golang-dev, rog
http://codereview.appspot.com/189080
|
|
R=golang-dev, rsc
CC=golang-dev
http://codereview.appspot.com/181151
Committer: Russ Cox <rsc@golang.org>
|
|
Added special case tests to all_test.go. Added tests to hypot.go,
otherwise hangs.
R=rsc
CC=golang-dev
http://codereview.appspot.com/186118
Committer: Russ Cox <rsc@golang.org>
|
|
sin, cos, tan, asin, acos, atan, exp, log, log10,
floor, ceil, and fabs
R=rsc
CC=golang-dev
http://codereview.appspot.com/189083
Committer: Russ Cox <rsc@golang.org>
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/189088
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/186161
|
|
Fixes issue 531.
R=r
CC=golang-dev
http://codereview.appspot.com/189078
|
|
Fixes issue 527.
R=rsc
CC=golang-dev
http://codereview.appspot.com/186159
|
|
8l: add GOOS=pchw, stop spelling out all the elf numbers.
R=r
CC=golang-dev
http://codereview.appspot.com/186144
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/186148
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/186146
Committer: Russ Cox <rsc@golang.org>
|
|
* move memory code into $GOOS-specific directory.
* allow printing of static strings < 256 bytes.
(dynamic strings will bump maxstring as they are allocated.)
* use cgo2c for runtime.mal.
R=r, dho
CC=golang-dev
http://codereview.appspot.com/186143
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/189062
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/186147
|
|
allow formatting of ruby-style times.
Fixes issue 518.
R=rsc
CC=golang-dev
http://codereview.appspot.com/186119
|
|
to #defined things.
Fixes issue 520.
R=rsc, rsaarelm
CC=golang-dev
http://codereview.appspot.com/186138
Committer: Russ Cox <rsc@golang.org>
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/186145
|
|
move talk-20091030 down.
add talk given at Stanford 2010/01/12.
add doc/go-logo-white.png.
R=r
CC=golang-dev
http://codereview.appspot.com/186132
Committer: Russ Cox <rsc@golang.org>
|
|
Replacement for CL 184084; originally by Roger Peppe (rogpeppe@gmail.com).
R=rsc
CC=golang-dev, rog
http://codereview.appspot.com/189059
|
|
R=gri
CC=golang-dev
http://codereview.appspot.com/186139
|
|
demo at http://wreck:8080/doc/
click on go_talk-20100112.html
R=gri
CC=golang-dev
http://codereview.appspot.com/186137
|
|
R=gri, rsc
CC=golang-dev
http://codereview.appspot.com/189057
|
|
Fixes issue 307.
R=rsc
CC=golang-dev
http://codereview.appspot.com/186073
Committer: Russ Cox <rsc@golang.org>
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/184069
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/186108
|
|
allow an underscore to stand for a space or digit if the following number is >=10.
R=rsc
CC=golang-dev
http://codereview.appspot.com/186115
|
|
by definition, they know what they are building for.
makes it easier to switch architectures when testing.
% 6g x.go
% 6l x.6
% 6.out
"Wed Jan 13 10:57:46 EST 2010"
% 8g x.go
% 8l x.8
% 8.out
"Wed Jan 13 10:57:46 EST 2010"
% echo $GOARCH
%
R=rsc
CC=golang-dev
http://codereview.appspot.com/186116
|
|
Sometimes during editing, when the buffer is emptied (for example,
as part of a call to M-x gofmt), an error is raised when
remove-text-properties is called. Ensure that these calls use point-max
instead of buffer-size to determine their end point.
R=golang-dev, r
CC=golang-dev
http://codereview.appspot.com/189042
Committer: Rob Pike <r@golang.org>
|
|
and specify a lowest id granted to users.
R=rsc
CC=golang-dev
http://codereview.appspot.com/186081
|
|
R=gri
CC=golang-dev
http://codereview.appspot.com/186113
|
|
Emphasis on minimal interface and fast scanning.
Recognizes all Go literals by default. Easily
configurable to recognize different whitespace
characters and tokens.
Provides detailed position information for each
token.
R=rsc, r
CC=golang-dev
http://codereview.appspot.com/181160
|
|
R=rsc, agl, r
CC=golang-dev
http://codereview.appspot.com/188043
|
|
* Highlight built in functions
* Add copy built in function
* Handle multi-line strings
R=rsc
CC=golang-dev
http://codereview.appspot.com/184059
Committer: Russ Cox <rsc@golang.org>
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/186078
|
|
than one explicitly named file.
R=rsc, gri
CC=golang-dev
http://codereview.appspot.com/186095
Committer: Robert Griesemer <gri@golang.org>
|
|
Added special case tests to all_test.go. Added tests to Floor,
in-lined tests in Exp and Log.
R=rsc
CC=golang-dev
http://codereview.appspot.com/184081
Committer: Russ Cox <rsc@golang.org>
|
|
Fixes issue 515.
R=rsc
CC=golang-dev
http://codereview.appspot.com/184079
|
|
Fixes issue 516.
R=rsc
CC=golang-dev, golang-dev
http://codereview.appspot.com/184080
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/186079
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/186079
|
|
amd64 linux only.
R=rsc
CC=golang-dev
http://codereview.appspot.com/186077
|
|
Added special case tests to all_test.go for Fmod. Fixed Fmod [hung
for Fmod(+/-Inf, <finite>)]. Also added test for Ceil in all_test.go.
R=rsc
CC=golang-dev
http://codereview.appspot.com/186076
Committer: Russ Cox <rsc@golang.org>
|
|
R=golang-dev, rsc
CC=golang-dev
http://codereview.appspot.com/184055
Committer: Russ Cox <rsc@golang.org>
|
|
Fixes issue 435
R=rsc
CC=golang-dev
http://codereview.appspot.com/181161
Committer: Russ Cox <rsc@golang.org>
|