Commit 1dbd3c8d authored by Russ Cox's avatar Russ Cox

reflect: document that PkgPath and Name return

	empty string for unnamed types.

Fixes #249.

R=r
https://golang.org/cl/156052
parent 849e6f99
......@@ -252,9 +252,11 @@ type Method struct {
type Type interface {
// PkgPath returns the type's package path.
// The package path is a full package import path like "container/vector".
// PkgPath returns an empty string for unnamed types.
PkgPath() string;
// Name returns the type's name within its package.
// Name returns an empty string for unnamed types.
Name() string;
// String returns a string representation of the type.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment