go/types.Func.Signature (method)

10 uses

	go/types (current package)
		object.go#L422: func (obj *Func) Signature() *Signature {
		object.go#L709: 		if obj.Signature().Recv() != nil {
		subst.go#L364: 		sig := method.Signature()

	golang.org/x/exp/apidiff
		compatibility.go#L347: 	return method.(*types.Func).Signature().Recv().Type()

	golang.org/x/tools/go/types/objectpath
		objectpath.go#L310: 		if recv := obj.Signature().Recv(); recv == nil {
		objectpath.go#L688: 	_, named := typesinternal.ReceiverNamed(meth.Signature().Recv())

	golang.org/x/tools/go/types/typeutil
		callee.go#L84: 	recv := f.Signature().Recv()

	golang.org/x/tools/internal/typesinternal
		isnamed.go#L51: 		f.Signature().Recv() == nil &&
		isnamed.go#L63: 		if recv := fn.Signature().Recv(); recv != nil {
		types.go#L232: 		if obj.Signature().Recv() != nil {