Open kortschak opened 10 years ago
This is a tool bug but godoc is included in the release. Looks like a serious bug, relatively speaking: godoc shouldn't throw away comments. It's probably easy to fix, though. Tagging for 1.3.
Labels changed: added repo-tools, release-go1.3.
Owner changed to @griesemer.
Status changed to Accepted.
This is non-trivial to fix: At the moment, godoc shows only comments that are collected by go/doc; and go/doc only collects comments that are associated with a declaration (above, or on the same line). It should be possible to use the newer CommentMap mechanism instead (or in addition), but that will require quite a bit of re-engineering in go/doc and godoc. This should be fixed eventually, but before putting in the work, the long-term strategy of go/ast, go/doc, and friends needs to be worked out first. There are higher-priority issues for 1.3.
Labels changed: added release-none, removed release-go1.3.
Owner changed to ---.
Status changed to LongTerm.