Add comments to opportunistic resolve functions
This commit is contained in:
parent
909d0e83d6
commit
c6e4284f8b
1 changed files with 4 additions and 0 deletions
|
@ -623,10 +623,14 @@ impl<'tcx> RegionConstraintCollector<'_, 'tcx> {
|
|||
}
|
||||
}
|
||||
|
||||
/// Resolves the passed RegionVid to the root RegionVid in the unification table
|
||||
pub fn opportunistic_resolve_var(&mut self, rid: ty::RegionVid) -> ty::RegionVid {
|
||||
self.unification_table().find(rid).vid
|
||||
}
|
||||
|
||||
/// If the Region is a `ReVar`, then resolves it either to the root value in
|
||||
/// the unification table, if it exists, or to the root `ReVar` in the table.
|
||||
/// If the Region is not a `ReVar`, just returns the Region itself.
|
||||
pub fn opportunistic_resolve_region(
|
||||
&mut self,
|
||||
tcx: TyCtxt<'tcx>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue