remove bound_type_of query; make type_of return EarlyBinder; change type_of in metadata
This commit is contained in:
parent
d822b97a27
commit
c183110cc2
164 changed files with 325 additions and 380 deletions
|
@ -31,7 +31,7 @@ fn representability(tcx: TyCtxt<'_>, def_id: LocalDefId) -> Representability {
|
|||
}
|
||||
Representability::Representable
|
||||
}
|
||||
DefKind::Field => representability_ty(tcx, tcx.bound_type_of(def_id).subst_identity()),
|
||||
DefKind::Field => representability_ty(tcx, tcx.type_of(def_id).subst_identity()),
|
||||
def_kind => bug!("unexpected {def_kind:?}"),
|
||||
}
|
||||
}
|
||||
|
@ -91,11 +91,7 @@ fn params_in_repr(tcx: TyCtxt<'_>, def_id: DefId) -> BitSet<u32> {
|
|||
let mut params_in_repr = BitSet::new_empty(generics.params.len());
|
||||
for variant in adt_def.variants() {
|
||||
for field in variant.fields.iter() {
|
||||
params_in_repr_ty(
|
||||
tcx,
|
||||
tcx.bound_type_of(field.did).subst_identity(),
|
||||
&mut params_in_repr,
|
||||
);
|
||||
params_in_repr_ty(tcx, tcx.type_of(field.did).subst_identity(), &mut params_in_repr);
|
||||
}
|
||||
}
|
||||
params_in_repr
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue