func go/types.Instantiate
8 uses
go/types (current package)
instantiate.go#L54: func Instantiate(ctxt *Context, orig Type, targs []Type, validate bool) (Type, error) {
go.pact.im/x/plumb/internal/gotypes
subst.go#L100: inst, err := types.Instantiate(s.ctxt, u.Origin(), na, false)
go.pact.im/x/plumb/internal/solve
instance.go#L143: t, e := types.Instantiate(ctxt, sig, targs, true)
instance.go#L159: t, e := types.Instantiate(ctxt, gotypes.GenericOrigin(p.Owner), targs, true)
instance.go#L188: t, e := types.Instantiate(ctxt, gotypes.GenericOrigin(p.Owner), targs, true)
instance.go#L214: t, e := types.Instantiate(ctxt, gotypes.GenericOrigin(p.Declared), targs, true)
golang.org/x/tools/internal/gcimporter
iimport.go#L1012: t, _ := types.Instantiate(nil, baseType, targs, false)
ureader.go#L354: t, _ := types.Instantiate(r.p.ctxt, name.Type(), targs, false)