summaryrefslogtreecommitdiff
path: root/src/pkg/go
AgeCommit message (Expand)AuthorFilesLines
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý24-146/+360
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý38-479/+4680
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý9-17/+22
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý44-857/+3396
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý10-73/+106
2011-02-18Imported Upstream version 2011.02.15upstream/2011.02.15Ondřej Surý5-170/+370
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý15-144/+279
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý42-1665/+4296
2010-07-01strings and bytes.Split: make count of 0 mean 0, not infinite.Rob Pike1-1/+1
2010-06-09go/scanner: report illegal escape sequencesRobert Griesemer1-20/+29
2010-06-08go/printer: deleted dead codeRobert Griesemer2-23/+14
2010-06-08go/parser: correct position of empty statement ';'Robert Griesemer3-10/+9
2010-05-27changes &x -> x[0:] for array to slice conversionRuss Cox1-1/+1
2010-05-26godoc: collect package comments from all package files, not just the first on...Robert Griesemer1-6/+23
2010-05-21go/printer, gofmt: fix printing of labels,Robert Griesemer4-16/+45
2010-05-14go/printer (gofmt): don't lose mandatory semicolonsRobert Griesemer4-17/+59
2010-04-27fix buildRobert Griesemer1-1/+1
2010-04-27gofmt: fine-tune stripping of parenthesesRobert Griesemer3-46/+96
2010-04-27go/parser: don't require parens around composite literals inside a composite ...Robert Griesemer2-0/+5
2010-04-27gofmt: don't strip mandatory ()'s around composite literals in control clausesRobert Griesemer3-7/+73
2010-04-15go/ast: Update comment to mention imaginary literalsEvan Shaw1-1/+1
2010-04-15"godoc -src pkg_name" excludes duplicates entriesAndrei Vieru1-9/+15
2010-04-09rename os.Dir to os.FileInfoRob Pike2-3/+3
2010-03-30go/printer: follow-up on CL 802043Robert Griesemer5-23/+87
2010-03-30Gofmt preserves newlines in multiline selector expressions.Risto Jaakko Saarelma4-6/+298
2010-03-30simplify various code using new map index ruleRuss Cox1-2/+2
2010-03-30single argument panicRuss Cox3-5/+4
2010-03-29go/printer: fix a commentRobert Griesemer1-1/+1
2010-03-29godoc: support for filtering of command-line output in -src modeRobert Griesemer1-41/+20
2010-03-29go/ast: generalized ast filteringRobert Griesemer2-26/+129
2010-03-26bytes, strings: IndexOfAnyRobert Griesemer1-9/+2
2010-03-25godoc: don't convert multi-line functions into one-liners by defaultRobert Griesemer9-64/+150
2010-03-23fix build - unused importRuss Cox1-1/+0
2010-03-23go/printer: avoid reflect in printRuss Cox1-7/+5
2010-03-23ast/printer: support for printing ast.Spec nodesAndrew Gerrand1-0/+3
2010-03-19godoc: improved comment formatting: recognize URLsRobert Griesemer1-39/+135
2010-03-18go/doc cleanup: remove some unnecessary string conversionsRobert Griesemer1-3/+2
2010-03-16gofmt: more consistent formatting of const/var declsRobert Griesemer10-55/+105
2010-03-16godoc: initial support for showing popup informationRobert Griesemer1-0/+13
2010-03-12gofmt: make sure there is a newline afterRobert Griesemer5-19/+30
2010-03-12go/printer: fix a couple of hidden crashes that becomeRobert Griesemer5-3/+20
2010-03-11ast/filter.go: missing nil-check causes crashRobert Griesemer1-1/+1
2010-03-11godoc: fix formatting of -src outputRobert Griesemer2-12/+122
2010-03-05godoc: don't throw away function documentationRobert Griesemer1-4/+22
2010-03-04gofmt: modified algorithm for alignment of multi-line composite/list entriesRobert Griesemer3-24/+117
2010-03-02gofmt: fix alignment of multi-line var declarationsRobert Griesemer3-20/+68
2010-03-02gofmt: experiment: align values in map composites where possibleRobert Griesemer5-176/+210
2010-02-26go/parser cleanup: remove some state by writing more functional codeRobert Griesemer1-16/+17
2010-02-26go/scanner: the position of '\n's chars must be the last position of the curr...Robert Griesemer2-8/+12
2010-02-25use []byte("abc") in place of []byte{'a', 'b', 'c'}Russ Cox2-2/+2