-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
go/doc: Examples not executable if pkg.name != basename(pkg.path) #12794
Comments
Not such a terrible assumption. :-) |
I see that this example is discarded as not executable in this block of code: https://github.com/golang/go/blob/master/src/go/doc/example.go#L211-L243:
Specifically, |
@alandonovan can you hint me how I can figure out what is the actual package name is being imported given it's package name and path? Should program try to prser.parseDir() the actual package to get its name? |
@ysmolsky I'd use go/build. It's going to do quite a bit of work that's probably unnecessary but it will always be correct and there are a surprising number of edge cases. |
% export GOPATH=$(pwd)
% cat src/foo1/foo.go
package foo
func Foo() {
}
% cat src/foo1/foo_test.go
package foo_test
import "foo1" // defines foo
func ExampleFoo() {
foo.Foo()
}
% godoc -play -http :9999 &
% open http://localhost:9999/pkg/foo1/#pkg-examples
The example is shown but not executable (grey not yellow); renaming foo1 to foo makes it executable, as does using an explicit (redundant) renaming import:
import foo "foo1"
Seems like some code in godoc is assuming pkg.name == basename(pkg.path) instead of finding the actual package name.
The text was updated successfully, but these errors were encountered: