reflect.Method.Type (field)

13 uses

	reflect (current package)
		type.go#L617: 	Type  Type  // method type
		type.go#L870: 	m.Type = mt
		type.go#L1116: 	m.Type = toType(t.typeOff(p.typ))

	github.com/go-pg/pg/v10/orm
		table.go#L526: 		if m.Type.NumIn() > 1 {
		table.go#L529: 		if m.Type.NumOut() != 1 {
		table.go#L533: 		retType := m.Type.Out(0)

	github.com/golang/protobuf/proto
		properties.go#L264: 			oneofWrappers = fn.Func.Call([]reflect.Value{reflect.Zero(fn.Type.In(0))})[3].Interface().([]interface{})
		properties.go#L267: 			oneofWrappers = fn.Func.Call([]reflect.Value{reflect.Zero(fn.Type.In(0))})[0].Interface().([]interface{})

	github.com/google/go-cmp/cmp
		compare.go#L313: 	if !ok || !function.IsType(m.Type, function.EqualAssignable) {

	github.com/google/go-cmp/cmp/internal/value
		name.go#L152: 			b = appendTypeName(b, m.Type, qualified, true)

	google.golang.org/protobuf/internal/impl
		legacy_message.go#L211: 			for _, v := range fn.Func.Call([]reflect.Value{reflect.Zero(fn.Type.In(0))}) {
		legacy_message.go#L223: 		vs := fn.Func.Call([]reflect.Value{reflect.Zero(fn.Type.In(0))})[0]
		message.go#L197: 			for _, v := range fn.Func.Call([]reflect.Value{reflect.Zero(fn.Type.In(0))}) {