func go/types.NewSignature
7 uses
go/types (current package)
signature.go#L37: func NewSignature(recv *Var, params, results *Tuple, variadic bool) *Signature {
golang.org/x/exp/apidiff
apidiff.go#L219: return types.NewSignature(sig.Recv(), dename(sig.Params()), dename(sig.Results()), sig.Variadic())
golang.org/x/tools/internal/gcimporter
bimport.go#L297: sig := types.NewSignature(nil, params, result, isddd)
bimport.go#L475: sig := types.NewSignature(recv.At(0), params, result, isddd)
bimport.go#L535: *t = *types.NewSignature(nil, params, result, isddd)
bimport.go#L667: sig := types.NewSignature(recv, params, result, isddd)
ureader_yes.go#L573: methods[i] = types.NewFunc(fn.Pos(), fn.Pkg(), fn.Name(), types.NewSignature(recv, sig.Params(), sig.Results(), sig.Variadic()))