Home | History | Annotate | Download | only in api

Lines Matching refs:methodNames

712 	var methodNames map[string]bool
718 if methodNames == nil {
719 methodNames = make(map[string]bool)
721 methodNames[m.Obj().Name()] = true
731 if m.Obj().Exported() && !methodNames[m.Obj().Name()] {
759 var methodNames []string
768 methodNames = append(methodNames, m.Name())
789 if len(methodNames) == 0 {
794 sort.Strings(methodNames)
795 w.emitf("type %s interface { %s }", name, strings.Join(methodNames, ", "))