Document what collected_lifetimes vec containts

This commit is contained in:
Santiago Pastorino 2022-08-03 19:40:54 -03:00
parent d85720a083
commit 76b518fc83
No known key found for this signature in database
GPG Key ID: 8131A24E0C79EFAF
1 changed files with 3 additions and 0 deletions

View File

@ -1396,6 +1396,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
let opaque_ty_def_id = self.local_def_id(opaque_ty_node_id);
// Contains the new lifetime definitions created for the TAIT (if any).
let mut collected_lifetimes = Vec::new();
let mut new_remapping = FxHashMap::default();
@ -1760,6 +1761,8 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
// by the opaque type. This should include all in-scope
// lifetime parameters, including those defined in-band.
// Contains the new lifetime definitions created for the TAIT (if any) generated for the
// return type.
let mut captures = Vec::new();
let mut new_remapping = FxHashMap::default();