mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
Add comments to opportunistic resolve functions
This commit is contained in:
parent
909d0e83d6
commit
c6e4284f8b
@ -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…
Reference in New Issue
Block a user