Home | History | Annotate | Download | only in doc

Lines Matching refs:mset

38 // set creates the corresponding Func for f and adds it to mset.
42 func (mset methodSet) set(f *ast.FuncDecl) {
44 if g := mset[name]; g != nil && g.Doc != "" {
62 mset[name] = &Func{
76 func (mset methodSet) add(m *Func) {
77 old := mset[m.Name]
79 mset[m.Name] = m
84 mset[m.Name] = &Func{
599 // collectEmbeddedMethods collects the embedded methods of typ in mset.
601 func (r *reader) collectEmbeddedMethods(mset methodSet, typ *namedType, recvTypeName string, embeddedIsPtr bool, level int, visited embeddedSet) {
613 mset.add(customizeRecv(m, recvTypeName, thisEmbeddedIsPtr, level))
617 r.collectEmbeddedMethods(mset, embedded, recvTypeName, thisEmbeddedIsPtr, level+1, visited)