func go/types.NewTerm
9 uses
go/types (current package)
builtins.go#L1064: terms = append(terms, NewTerm(t.tilde, r))
subst.go#L350: return NewTerm(t.tilde, typ)
union.go#L40: func NewTerm(tilde bool, typ Type) *Term { return &Term{tilde, typ} }
union.go#L160: term := NewTerm(tilde, typ)
go.pact.im/x/plumb/internal/gotypes
subst.go#L57: terms[i] = types.NewTerm(tm.Tilde(), s.subst(tm.Type()))
golang.org/x/tools/internal/gcimporter
iimport.go#L1024: terms[i] = types.NewTerm(r.bool(), r.typ())
ureader.go#L413: terms[i] = types.NewTerm(r.Bool(), r.typ())
golang.org/x/tools/internal/typeparams
coretype.go#L128: return []*types.Term{types.NewTerm(false, T)}, nil
normalize.go#L108: terms = append(terms, types.NewTerm(term.tilde, term.typ))