type go/doc.Value

13 uses

	go/doc (current package)
		doc.go#L29: 	Consts []*Value
		doc.go#L31: 	Vars   []*Value
		doc.go#L41: type Value struct {
		doc.go#L56: 	Consts  []*Value // sorted list of constants of (mostly) this type
		doc.go#L57: 	Vars    []*Value // sorted list of variables of (mostly) this type
		filter.go#L54: func filterValues(a []*Value, f Filter) []*Value {
		reader.go#L165: 	values  []*Value // consts and vars
		reader.go#L191: 	values    []*Value // consts and vars
		reader.go#L333: 	*values = append(*values, &Value{
		reader.go#L826: func sortedValues(m []*Value, tok token.Token) []*Value {
		reader.go#L827: 	list := make([]*Value, len(m)) // big enough in any case