go/doc.Type.Methods (field)

7 uses

	go/doc (current package)
		doc.go#L63: 	Methods []*Func  // sorted list of methods (including embedded ones) of this type
		doc.go#L169: 		p.collectFuncs(t.Methods)
		example.go#L648: 		for _, m := range t.Methods {
		filter.go#L87: 			td.Methods = filterFuncs(td.Methods, f)
		filter.go#L88: 			n += len(td.Consts) + len(td.Vars) + len(td.Funcs) + len(td.Methods)
		reader.go#L874: 			Methods: sortedFuncs(t.methods, allMethods),