summaryrefslogtreecommitdiff
path: root/src/pkg/go/doc
AgeCommit message (Expand)AuthorFilesLines
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý1-1/+1
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý3-62/+39
2010-07-01strings and bytes.Split: make count of 0 mean 0, not infinite.Rob Pike1-1/+1
2010-05-26godoc: collect package comments from all package files, not just the first on...Robert Griesemer1-6/+23
2010-03-29godoc: support for filtering of command-line output in -src modeRobert Griesemer1-41/+20
2010-03-26bytes, strings: IndexOfAnyRobert Griesemer1-9/+2
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-05godoc: don't throw away function documentationRobert Griesemer1-4/+22
2010-02-25strings: delete Runes, BytesRuss Cox1-6/+6
2010-02-24go/ast: streamline representation of field listsRobert Griesemer1-4/+4
2010-02-19go/ast: use a slice instead of a linked list for the list of commentsRobert Griesemer1-2/+2
2010-02-16remove assumption that all files belonging to a package are in the same direc...Robert Griesemer1-5/+3
2010-01-15 Steps towards tracking scopes for identifiers.Robert Griesemer1-10/+10
2009-12-151) Change default gofmt default settings forRobert Griesemer2-271/+271
2009-12-03- include type-associated consts and vars when filtering a PackageDocRobert Griesemer1-7/+9
2009-11-24Change to container/vector interface:Robert Griesemer1-3/+3
2009-11-23go: makes it build for the case $GOROOT has whitespacesSergio Luis O. B. Correia1-2/+2
2009-11-20gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkgRuss Cox2-6/+6
2009-11-09 - replaced gofmt expression formatting algorithm withRobert Griesemer2-8/+8
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer2-48/+48
2009-11-08assorted cleanupRuss Cox1-22/+8
2009-11-08added package documentationRobert Griesemer1-0/+1
2009-11-06- fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer2-24/+8
2009-11-04gofmt-ify src/pkg/go (excluding printer directory due to pending CL,Robert Griesemer2-21/+20
2009-11-02use the new routine regexp.MustCompile to clean up some code that uses global...Rob Pike1-15/+2
2009-10-27files that are okay from the last gofmt roundRuss Cox1-4/+4
2009-10-15Work-around for factory function heuristic failure:Robert Griesemer1-9/+27
2009-10-08more lgtm files from gofmtRuss Cox1-71/+87
2009-10-06fix build - missing from 35404Russ Cox1-0/+7
2009-10-06more comment work.Russ Cox1-50/+21
2009-10-05preserve blank lines in // commentsRuss Cox1-18/+19
2009-09-17unused importsRuss Cox2-4/+0
2009-09-16publish doc.CommentTextRuss Cox2-19/+17
2009-09-15more "declared and not used".Russ Cox2-6/+6
2009-09-01don't show exported methods of non-exported typesRobert Griesemer1-33/+13
2009-08-31simplified heuristic for associating const/var decls with typesRobert Griesemer1-21/+15
2009-08-31associate const and var declarations with a type where possibleRobert Griesemer1-18/+82
2009-08-28- don't associate factory methods to basic types (which have no explicit decl...Robert Griesemer1-12/+61
2009-08-28- collect consts and vars in one listRobert Griesemer1-75/+69
2009-08-12convert non-low-level non-google pkg codeRuss Cox2-65/+5
2009-08-05support []byte (more efficient) as well as string in the interfaces.Rob Pike2-6/+6
2009-07-31fix long-standing bug in doc reader:Robert Griesemer1-7/+22
2009-07-30go/ast/filter.go:Robert Griesemer1-25/+49
2009-07-28Intersperse comments nicely when printing an AST.Robert Griesemer1-5/+16
2009-07-16ast:Robert Griesemer1-7/+7
2009-07-15- do not collect BUG comments w/o bug descriptionRobert Griesemer1-9/+17
2009-07-13- handle type forward declarations correctlyRobert Griesemer1-2/+8
2009-07-09Show BUG comments in godoc:Robert Griesemer2-21/+78
2009-07-06- ast.FilterExports: strips all non-exported nodes from an ASTRobert Griesemer1-40/+10