fn member_constraint to add_member_constraint

This commit is contained in:
lcnr 2024-12-17 09:00:18 +01:00
parent e6349b414e
commit c76eb22356
3 changed files with 4 additions and 4 deletions

View file

@ -689,7 +689,7 @@ impl<'tcx> InferCtxt<'tcx> {
/// Require that the region `r` be equal to one of the regions in /// Require that the region `r` be equal to one of the regions in
/// the set `regions`. /// the set `regions`.
#[instrument(skip(self), level = "debug")] #[instrument(skip(self), level = "debug")]
pub fn member_constraint( pub fn add_member_constraint(
&self, &self,
key: ty::OpaqueTypeKey<'tcx>, key: ty::OpaqueTypeKey<'tcx>,
definition_span: Span, definition_span: Span,
@ -697,7 +697,7 @@ impl<'tcx> InferCtxt<'tcx> {
region: ty::Region<'tcx>, region: ty::Region<'tcx>,
in_regions: Lrc<Vec<ty::Region<'tcx>>>, in_regions: Lrc<Vec<ty::Region<'tcx>>>,
) { ) {
self.inner.borrow_mut().unwrap_region_constraints().member_constraint( self.inner.borrow_mut().unwrap_region_constraints().add_member_constraint(
key, key,
definition_span, definition_span,
hidden_ty, hidden_ty,

View file

@ -364,7 +364,7 @@ impl<'tcx> InferCtxt<'tcx> {
concrete_ty.visit_with(&mut ConstrainOpaqueTypeRegionVisitor { concrete_ty.visit_with(&mut ConstrainOpaqueTypeRegionVisitor {
tcx: self.tcx, tcx: self.tcx,
op: |r| { op: |r| {
self.member_constraint( self.add_member_constraint(
opaque_type_key, opaque_type_key,
span, span,
concrete_ty, concrete_ty,

View file

@ -466,7 +466,7 @@ impl<'tcx> RegionConstraintCollector<'_, 'tcx> {
} }
} }
pub(super) fn member_constraint( pub(super) fn add_member_constraint(
&mut self, &mut self,
key: ty::OpaqueTypeKey<'tcx>, key: ty::OpaqueTypeKey<'tcx>,
definition_span: Span, definition_span: Span,