An error occurred fetching the project authors.
- 16 Nov, 2011 1 commit
-
-
Russ Cox authored
Fix bug377.go to be gofmt-compliant. R=gri, r, r CC=golang-dev https://golang.org/cl/5400045
-
- 07 Oct, 2011 1 commit
-
-
Robert Griesemer authored
R=r CC=golang-dev https://golang.org/cl/5235043
-
- 17 Aug, 2011 1 commit
-
-
Robert Griesemer authored
- Resolves a long-standing TODO. - Replacement for CL 4908042 by befelemepeseveze@gmail.com Fixes #2155. R=rsc CC=golang-dev https://golang.org/cl/4904048
-
- 06 Aug, 2011 1 commit
-
-
Robert Griesemer authored
R=r, rsc CC=golang-dev https://golang.org/cl/4832055
-
- 08 Jun, 2011 1 commit
-
-
Robert Griesemer authored
(TODO: should replace this with a Go program, eventually) R=bradfitz CC=golang-dev https://golang.org/cl/4584047
-
- 15 May, 2011 1 commit
-
-
Robert Hencke authored
bug340.go is a test case for a syntax error R=golang-dev, r CC=golang-dev https://golang.org/cl/4523069
-
- 03 May, 2011 1 commit
-
-
Robert Griesemer authored
R=iant, iant2 CC=golang-dev https://golang.org/cl/4453058
-
- 15 Apr, 2011 1 commit
-
-
Robert Griesemer authored
R=r, r2 CC=golang-dev https://golang.org/cl/4398048
-
- 04 Mar, 2011 1 commit
-
-
Robert Griesemer authored
R=r, r2 CC=golang-dev https://golang.org/cl/4252053
-
- 12 Feb, 2011 1 commit
-
-
Robert Griesemer authored
R=r, r2 CC=golang-dev https://golang.org/cl/4160047
-
- 16 Sep, 2010 1 commit
-
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/2233043
-
- 25 Aug, 2010 1 commit
-
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/1982049
-
- 18 Aug, 2010 1 commit
-
-
Russ Cox authored
R=adg, r, PeterGo CC=golang-dev https://golang.org/cl/1942044
-
- 12 Aug, 2010 1 commit
-
-
Robert Griesemer authored
go/scanner: return information on semicolon (real or inserted) when found in source go/parser: better error message when a semicolon is found unexpectedly For instance, if an unexpected semicolon is found that was automatically inserted, the parser error message is now: "expected '}', found newline" Fixes #1006. R=rsc CC=golang-dev https://golang.org/cl/1936044
-
- 05 Aug, 2010 1 commit
-
-
Robert Griesemer authored
- don't allow parenthesized receiver base types or anonymous fields - fixed a couple of other omissions - adjusted gofmt test script - removed several TODOs R=rsc CC=golang-dev https://golang.org/cl/1897043
-
- 09 Jul, 2010 1 commit
-
-
Robert Griesemer authored
R=r CC=golang-dev https://golang.org/cl/1791041
-
- 09 Jun, 2010 2 commits
-
-
Robert Griesemer authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/1636043
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/1621041
-
- 14 May, 2010 1 commit
-
-
Robert Griesemer authored
R=adg CC=golang-dev https://golang.org/cl/1228041
-
- 12 Feb, 2010 1 commit
-
-
Robert Griesemer authored
R=adg CC=golang-dev https://golang.org/cl/207088
-
- 26 Jan, 2010 1 commit
-
-
Robert Griesemer authored
Update gofmt test script. R=rsc CC=golang-dev https://golang.org/cl/195044
-
- 12 Jan, 2010 1 commit
-
-
Roger Peppe authored
than one explicitly named file. R=rsc, gri CC=golang-dev https://golang.org/cl/186095
-
- 21 Dec, 2009 1 commit
-
-
Robert Griesemer authored
R=r CC=golang-dev https://golang.org/cl/179120
-
- 11 Dec, 2009 1 commit
-
-
Robert Griesemer authored
- some factoring for easier experimentation R=rsc https://golang.org/cl/174048
-
- 02 Dec, 2009 1 commit
-
-
Devon H. O'Dell authored
R=gri https://golang.org/cl/163067
-
- 01 Dec, 2009 1 commit
-
-
Robert Griesemer authored
R=rsc https://golang.org/cl/164059
-
- 24 Nov, 2009 1 commit
-
-
Sergio Luis O. B. Correia authored
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 #115. R=rsc, dsymonds1 https://golang.org/cl/157067
-
- 20 Nov, 2009 1 commit
-
-
Robert Griesemer authored
R=rsc https://golang.org/cl/157096
-
- 14 Nov, 2009 1 commit
-
-
Devon H. O'Dell authored
This does still contain some FreeBSD-specific bits, but it's a pain to do partial diffs. R=rsc https://golang.org/cl/152138
-
- 01 Nov, 2009 1 commit
-
-
Robert Griesemer authored
were excluded before because of incorrect comment formatting (comment formatting is mostly idempotent at this point) R=rsc http://go/go-review/1018014
-
- 20 Oct, 2009 1 commit
-
-
Robert Griesemer authored
- operates on stdin, a single file, or all files in a file tree - setting -w flag writes to (source) file instead of stdout - setting -l flag lists files whose formatting has changed R=rsc DELTA=201 (102 added, 71 deleted, 28 changed) OCL=35890 CL=35926
-
- 06 Oct, 2009 1 commit
-
-
Robert Griesemer authored
R=rsc DELTA=2 (0 added, 0 deleted, 2 changed) OCL=35355 CL=35358
-
- 15 Sep, 2009 1 commit
-
-
Robert Griesemer authored
- printing of expressions: put spaces only where "needed" - printing of import statements: no double indentation if there are no renames - print labels on separate lines - added extra test files go/ast: - unified basic literal nodes and as a result deleted duplicated code - added initial code to track scopes (not fully used yet) replaces CL 34553 R=rsc DELTA=881 (579 added, 223 deleted, 79 changed) OCL=34623 CL=34651
-
- 11 Sep, 2009 1 commit
-
-
Robert Griesemer authored
- first cut a better line breaks in expr lists - trailing commas and semis printed where we tend to write them - fixed a couple of minor spacing issues (interface{}, chan<-, map[x]y, x: y) - removed some formatting flags from gofmt: no need to change default - removed option to reverse declaration order when printing - excluded files from test that cause trouble with idempotency test for now R=rsc DELTA=497 (364 added, 83 deleted, 50 changed) OCL=34539 CL=34544
-
- 28 Jul, 2009 1 commit
-
-
Robert Griesemer authored
gofmt formatted source code looks pretty good already; with a bit more fine-tuning it should be great. printer.go: - Implemented comment intersperse algorithm. The approach is a result of many trial-and-error experiments but at this point reasonably simple and open to arbitrary fine-tuning. parser.go: - Simplified handling of lead and line comments (formerly called leading and trailing comments). - Use a comments list instead of an array (I may change this back - this is not obviously better and uses more space). doc.go: - Remove comments from AST nodes that have been 'consumed' in the documentation to avoid duplicate printing of them. Allows for better control of what is printed w/o use of printing control flags (which are hard to use and not fine-grained enough). Corresponding adjustments to various clients of these files. R=rsc DELTA=478 (275 added, 108 deleted, 95 changed) OCL=32185 CL=32380
-
- 07 Jul, 2009 1 commit
-
-
Robert Griesemer authored
- fixed typo in parser.go - removed test w/ syntax errors from gofmt test script R=rsc DELTA=25 (21 added, 0 deleted, 4 changed) OCL=31296 CL=31298
-
- 02 Jul, 2009 1 commit
-
-
Robert Griesemer authored
- remove a test case w/ syntax errors from test suite R=rsc DELTA=104 (44 added, 5 deleted, 55 changed) OCL=31078 CL=31085
-
- 16 Jun, 2009 1 commit
-
-
Robert Griesemer authored
- remove some left-over files R=rsc DELTA=1465 (281 added, 1181 deleted, 3 changed) OCL=30350 CL=30353
-
- 15 Jun, 2009 1 commit
-
-
Robert Griesemer authored
- replacement for pretty; app to format a single .go file printer.go (pkg/go/printer): - replacement for astprinter.go; implements AST printing - also replaces pkg/go/ast/format.go for now cleanups: - removed/saved away old code R=r,rsc,iant DELTA=2833 (1183 added, 1628 deleted, 22 changed) OCL=30226 CL=30306
-
- 05 Jun, 2009 1 commit
-
-
Russ Cox authored
remove a few hardcoded paths elsewhere too. R=r,gri DELTA=123 (44 added, 15 deleted, 64 changed) OCL=29914 CL=29945
-