Age | Commit message (Expand) | Author | Files | Lines |
2009-10-22 | minor changes to walk | Robert Griesemer | 1 | -59/+52 |
2009-10-22 | simple AST walking support | Robert Griesemer | 2 | -0/+310 |
2009-10-22 | go/printer: | Robert Griesemer | 2 | -57/+83 |
2009-10-19 | support one-line functions | Robert Griesemer | 6 | -43/+161 |
2009-10-15 | improved handling of expression lists | Robert Griesemer | 7 | -70/+179 |
2009-10-15 | close file after use | Robert Griesemer | 1 | -0/+1 |
2009-10-15 | - bug fix: must not insert indentation tabs into multi-line strings in RawFormat | Robert Griesemer | 3 | -29/+221 |
2009-10-15 | bug fix: do not modify (string) literals in any way even if they | Robert Griesemer | 3 | -38/+45 |
2009-10-15 | Work-around for factory function heuristic failure: | Robert Griesemer | 1 | -9/+27 |
2009-10-13 | reduce stutter: sort.SortInterface -> sort.Interface. | Rob Pike | 1 | -1/+1 |
2009-10-12 | bug fix: convert \v's into \t's if there's no tabwriter | Robert Griesemer | 1 | -3/+13 |
2009-10-12 | - improved comment intersperse heuristic: | Robert Griesemer | 11 | -191/+480 |
2009-10-08 | more lgtm files from gofmt | Russ Cox | 2 | -73/+89 |
2009-10-08 | - rewrite declaration printing to take full use of discardable tabwriter columns | Robert Griesemer | 6 | -139/+334 |
2009-10-06 | apply gofmt to go, gob, hash, http, image, io, json, log | Russ Cox | 6 | -338/+406 |
2009-10-06 | fix build - missing from 35404 | Russ Cox | 1 | -0/+7 |
2009-10-06 | more comment work. | Russ Cox | 1 | -50/+21 |
2009-10-06 | - simplify "needsBlanks" logic for identifiers and strings | Robert Griesemer | 3 | -6/+12 |
2009-10-06 | change tabwidth to 8 for tests | Robert Griesemer | 4 | -39/+39 |
2009-10-05 | various go printer fixes: | Robert Griesemer | 9 | -33/+394 |
2009-10-05 | preserve blank lines in // comments | Russ Cox | 1 | -18/+19 |
2009-10-02 | - improved handling of white space around declarations and statements | Robert Griesemer | 11 | -98/+325 |
2009-10-02 | - allow parenthesized [...]T types as in: ([...]int){} | Robert Griesemer | 3 | -18/+55 |
2009-09-28 | permit only one method name per method signature in interface types | Robert Griesemer | 7 | -38/+34 |
2009-09-24 | go/printer: fix sync bug - avoid sending on errors twice - | Russ Cox | 1 | -1/+4 |
2009-09-21 | improved spacing around if, switch, and for control clauses | Robert Griesemer | 4 | -5/+82 |
2009-09-19 | - filter trailing whitespace | Robert Griesemer | 4 | -26/+95 |
2009-09-17 | - improved formatting of declarations | Robert Griesemer | 7 | -94/+411 |
2009-09-17 | unused imports | Russ Cox | 7 | -15/+0 |
2009-09-17 | - don't add "..." anonymous field to structs/interfaces if entries are stripped | Robert Griesemer | 9 | -68/+270 |
2009-09-16 | publish doc.CommentText | Russ Cox | 2 | -19/+17 |
2009-09-16 | make String work on Position values, to enable | Russ Cox | 1 | -11/+9 |
2009-09-16 | rename bytes.Buffer.Data() to bytes.Buffer.Bytes() | Rob Pike | 2 | -3/+3 |
2009-09-15 | bug fix: allow function types as operands | Robert Griesemer | 1 | -4/+9 |
2009-09-15 | consider each case in a switch independent from the previous one for alignmen... | Robert Griesemer | 1 | -3/+3 |
2009-09-15 | fix build: added missing files | Robert Griesemer | 2 | -0/+56 |
2009-09-15 | go/printer: | Robert Griesemer | 12 | -136/+492 |
2009-09-15 | more "declared and not used". | Russ Cox | 8 | -16/+16 |
2009-09-14 | fix "declared and not used" errors in non-test code. | Russ Cox | 1 | -1/+0 |
2009-09-10 | fix build | Robert Griesemer | 1 | -1/+1 |
2009-09-10 | better gofmt formatting: | Robert Griesemer | 5 | -116/+406 |
2009-09-08 | documentation edits: | Russ Cox | 1 | -63/+63 |
2009-09-03 | add ParseDeclList | Russ Cox | 2 | -0/+34 |
2009-09-03 | parse expression statements beginning with | Russ Cox | 1 | -1/+1 |
2009-09-01 | don't show exported methods of non-exported types | Robert Griesemer | 1 | -33/+13 |
2009-08-31 | simplified heuristic for associating const/var decls with types | Robert Griesemer | 1 | -21/+15 |
2009-08-31 | associate const and var declarations with a type where possible | Robert Griesemer | 1 | -18/+82 |
2009-08-28 | - don't associate factory methods to basic types (which have no explicit decl... | Robert Griesemer | 1 | -12/+61 |
2009-08-28 | - collect consts and vars in one list | Robert Griesemer | 1 | -75/+69 |
2009-08-27 | Cleanups: | Robert Griesemer | 2 | -159/+80 |