Fix other tools
This commit is contained in:
parent
bd83649b1d
commit
579bc3c0e8
@ -228,6 +228,8 @@ fn clean_generic_bound<'tcx>(
|
|||||||
|
|
||||||
GenericBound::TraitBound(clean_poly_trait_ref(t, cx), modifier)
|
GenericBound::TraitBound(clean_poly_trait_ref(t, cx), modifier)
|
||||||
}
|
}
|
||||||
|
// FIXME(precise_capturing): Implement rustdoc support
|
||||||
|
hir::GenericBound::Use(..) => return None,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -724,11 +724,8 @@ pub fn eq_ty(l: &Ty, r: &Ty) -> bool {
|
|||||||
(Tup(l), Tup(r)) => over(l, r, |l, r| eq_ty(l, r)),
|
(Tup(l), Tup(r)) => over(l, r, |l, r| eq_ty(l, r)),
|
||||||
(Path(lq, lp), Path(rq, rp)) => both(lq, rq, eq_qself) && eq_path(lp, rp),
|
(Path(lq, lp), Path(rq, rp)) => both(lq, rq, eq_qself) && eq_path(lp, rp),
|
||||||
(TraitObject(lg, ls), TraitObject(rg, rs)) => ls == rs && over(lg, rg, eq_generic_bound),
|
(TraitObject(lg, ls), TraitObject(rg, rs)) => ls == rs && over(lg, rg, eq_generic_bound),
|
||||||
(ImplTrait(_, lg, lc), ImplTrait(_, rg, rc)) => {
|
(ImplTrait(_, lg), ImplTrait(_, rg)) => {
|
||||||
over(lg, rg, eq_generic_bound)
|
over(lg, rg, eq_generic_bound)
|
||||||
&& both(lc, rc, |lc, rc| {
|
|
||||||
over(lc.0.as_slice(), rc.0.as_slice(), eq_precise_capture)
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
(Typeof(l), Typeof(r)) => eq_expr(&l.value, &r.value),
|
(Typeof(l), Typeof(r)) => eq_expr(&l.value, &r.value),
|
||||||
(MacCall(l), MacCall(r)) => eq_mac_call(l, r),
|
(MacCall(l), MacCall(r)) => eq_mac_call(l, r),
|
||||||
|
Loading…
Reference in New Issue
Block a user