go/doc: hide methods on locally-declared predeclared types

Currently if you declare a type overwriting a predeclared type
and export methods on it they will be exposed in godoc, even
though the type itself is not exported. This corrects that
by making all methods on these types hidden, since that's
the expected output.

Fixes #9860

Change-Id: I14037bdcef1b4bbefcf299a143bac8bf363718e0
Reviewed-on: https://go-review.googlesource.com/20610
Reviewed-by: Russ Cox <rsc@golang.org>
This commit is contained in:
Larz Conwell 2016-03-12 02:57:24 -05:00 committed by Russ Cox
parent eee727d085
commit 5fd6bb4c14
5 changed files with 69 additions and 5 deletions

View file

@ -645,7 +645,9 @@ func (r *reader) computeMethodSets() {
func (r *reader) cleanupTypes() {
for _, t := range r.types {
visible := r.isVisible(t.name)
if t.decl == nil && (predeclaredTypes[t.name] || visible && (t.isEmbedded || r.hasDotImp)) {
predeclared := predeclaredTypes[t.name]
if t.decl == nil && (predeclared || visible && (t.isEmbedded || r.hasDotImp)) {
// t.name is a predeclared type (and was not redeclared in this package),
// or it was embedded somewhere but its declaration is missing (because
// the AST is incomplete), or we have a dot-import (and all bets are off):
@ -660,10 +662,12 @@ func (r *reader) cleanupTypes() {
r.funcs[name] = f
}
// 3) move methods
for name, m := range t.methods {
// don't overwrite functions with the same name - drop them
if _, found := r.funcs[name]; !found {
r.funcs[name] = m
if !predeclared {
for name, m := range t.methods {
// don't overwrite functions with the same name - drop them
if _, found := r.funcs[name]; !found {
r.funcs[name] = m
}
}
}
}

View file

@ -0,0 +1,8 @@
// Package predeclared is a go/doc test for handling of exported ...
PACKAGE predeclared
IMPORTPATH
testdata/predeclared
FILENAMES
testdata/predeclared.go

View file

@ -0,0 +1,22 @@
// Package predeclared is a go/doc test for handling of exported ...
PACKAGE predeclared
IMPORTPATH
testdata/predeclared
FILENAMES
testdata/predeclared.go
TYPES
//
type bool int
// Must not be visible.
func (b bool) String() string
//
type error struct{}
// Must not be visible.
func (e error) Error() string

View file

@ -0,0 +1,8 @@
// Package predeclared is a go/doc test for handling of exported ...
PACKAGE predeclared
IMPORTPATH
testdata/predeclared
FILENAMES
testdata/predeclared.go

22
src/go/doc/testdata/predeclared.go vendored Normal file
View file

@ -0,0 +1,22 @@
// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package predeclared is a go/doc test for handling of
// exported methods on locally-defined predeclared types.
// See issue 9860.
package predeclared
type error struct{}
// Must not be visible.
func (e error) Error() string {
return ""
}
type bool int
// Must not be visible.
func (b bool) String() string {
return ""
}