@@ -130,7 +130,7 @@ impl<'tcx> Clean<'tcx, Attributes> for [ast::Attribute] {
130
130
impl < ' tcx > Clean < ' tcx , Option < GenericBound > > for hir:: GenericBound < ' tcx > {
131
131
fn clean ( & self , cx : & mut DocContext < ' tcx > ) -> Option < GenericBound > {
132
132
Some ( match * self {
133
- hir:: GenericBound :: Outlives ( lt) => GenericBound :: Outlives ( lt . clean ( cx) ) ,
133
+ hir:: GenericBound :: Outlives ( lt) => GenericBound :: Outlives ( clean_lifetime ( lt , cx) ) ,
134
134
hir:: GenericBound :: LangItemTrait ( lang_item, span, _, generic_args) => {
135
135
let def_id = cx. tcx . require_lang_item ( lang_item, Some ( span) ) ;
136
136
@@ -214,21 +214,19 @@ impl<'tcx> Clean<'tcx, GenericBound> for ty::PolyTraitRef<'tcx> {
214
214
}
215
215
}
216
216
217
- impl < ' tcx > Clean < ' tcx , Lifetime > for hir:: Lifetime {
218
- fn clean ( & self , cx : & mut DocContext < ' tcx > ) -> Lifetime {
219
- let def = cx. tcx . named_region ( self . hir_id ) ;
220
- if let Some (
221
- rl:: Region :: EarlyBound ( _, node_id)
222
- | rl:: Region :: LateBound ( _, _, node_id)
223
- | rl:: Region :: Free ( _, node_id) ,
224
- ) = def
225
- {
226
- if let Some ( lt) = cx. substs . get ( & node_id) . and_then ( |p| p. as_lt ( ) ) . cloned ( ) {
227
- return lt;
228
- }
217
+ fn clean_lifetime < ' tcx > ( lifetime : hir:: Lifetime , cx : & mut DocContext < ' tcx > ) -> Lifetime {
218
+ let def = cx. tcx . named_region ( lifetime. hir_id ) ;
219
+ if let Some (
220
+ rl:: Region :: EarlyBound ( _, node_id)
221
+ | rl:: Region :: LateBound ( _, _, node_id)
222
+ | rl:: Region :: Free ( _, node_id) ,
223
+ ) = def
224
+ {
225
+ if let Some ( lt) = cx. substs . get ( & node_id) . and_then ( |p| p. as_lt ( ) ) . cloned ( ) {
226
+ return lt;
229
227
}
230
- Lifetime ( self . name . ident ( ) . name )
231
228
}
229
+ Lifetime ( lifetime. name . ident ( ) . name )
232
230
}
233
231
234
232
pub ( crate ) fn clean_const < ' tcx > ( constant : & hir:: ConstArg , cx : & mut DocContext < ' tcx > ) -> Constant {
@@ -305,7 +303,7 @@ impl<'tcx> Clean<'tcx, Option<WherePredicate>> for hir::WherePredicate<'tcx> {
305
303
}
306
304
307
305
hir:: WherePredicate :: RegionPredicate ( ref wrp) => WherePredicate :: RegionPredicate {
308
- lifetime : wrp. lifetime . clean ( cx) ,
306
+ lifetime : clean_lifetime ( wrp. lifetime , cx) ,
309
307
bounds : wrp. bounds . iter ( ) . filter_map ( |x| x. clean ( cx) ) . collect ( ) ,
310
308
} ,
311
309
@@ -518,7 +516,7 @@ fn clean_generic_param<'tcx>(
518
516
. filter ( |bp| !bp. in_where_clause )
519
517
. flat_map ( |bp| bp. bounds )
520
518
. map ( |bound| match bound {
521
- hir:: GenericBound :: Outlives ( lt) => lt . clean ( cx) ,
519
+ hir:: GenericBound :: Outlives ( lt) => clean_lifetime ( * lt , cx) ,
522
520
_ => panic ! ( ) ,
523
521
} )
524
522
. collect ( )
@@ -1425,7 +1423,8 @@ fn maybe_expand_private_type_alias<'tcx>(
1425
1423
} ) ;
1426
1424
if let Some ( lt) = lifetime. cloned ( ) {
1427
1425
let lt_def_id = cx. tcx . hir ( ) . local_def_id ( param. hir_id ) ;
1428
- let cleaned = if !lt. is_elided ( ) { lt. clean ( cx) } else { Lifetime :: elided ( ) } ;
1426
+ let cleaned =
1427
+ if !lt. is_elided ( ) { clean_lifetime ( lt, cx) } else { Lifetime :: elided ( ) } ;
1429
1428
substs. insert ( lt_def_id. to_def_id ( ) , SubstParam :: Lifetime ( cleaned) ) ;
1430
1429
}
1431
1430
indices. lifetimes += 1 ;
@@ -1497,7 +1496,7 @@ pub(crate) fn clean_ty<'tcx>(ty: &hir::Ty<'tcx>, cx: &mut DocContext<'tcx>) -> T
1497
1496
// there's no case where it could cause the function to fail to compile.
1498
1497
let elided =
1499
1498
l. is_elided ( ) || matches ! ( l. name, LifetimeName :: Param ( _, ParamName :: Fresh ) ) ;
1500
- let lifetime = if elided { None } else { Some ( l . clean ( cx) ) } ;
1499
+ let lifetime = if elided { None } else { Some ( clean_lifetime ( * l , cx) ) } ;
1501
1500
BorrowedRef { lifetime, mutability : m. mutbl , type_ : Box :: new ( clean_ty ( m. ty , cx) ) }
1502
1501
}
1503
1502
TyKind :: Slice ( ty) => Slice ( Box :: new ( clean_ty ( ty, cx) ) ) ,
@@ -1533,7 +1532,8 @@ pub(crate) fn clean_ty<'tcx>(ty: &hir::Ty<'tcx>, cx: &mut DocContext<'tcx>) -> T
1533
1532
TyKind :: Path ( _) => clean_qpath ( ty, cx) ,
1534
1533
TyKind :: TraitObject ( bounds, ref lifetime, _) => {
1535
1534
let bounds = bounds. iter ( ) . map ( |bound| bound. clean ( cx) ) . collect ( ) ;
1536
- let lifetime = if !lifetime. is_elided ( ) { Some ( lifetime. clean ( cx) ) } else { None } ;
1535
+ let lifetime =
1536
+ if !lifetime. is_elided ( ) { Some ( clean_lifetime ( * lifetime, cx) ) } else { None } ;
1537
1537
DynTrait ( bounds, lifetime)
1538
1538
}
1539
1539
TyKind :: BareFn ( barefn) => BareFunction ( Box :: new ( barefn. clean ( cx) ) ) ,
@@ -1871,7 +1871,7 @@ impl<'tcx> Clean<'tcx, GenericArgs> for hir::GenericArgs<'tcx> {
1871
1871
. iter ( )
1872
1872
. map ( |arg| match arg {
1873
1873
hir:: GenericArg :: Lifetime ( lt) if !lt. is_elided ( ) => {
1874
- GenericArg :: Lifetime ( lt . clean ( cx) )
1874
+ GenericArg :: Lifetime ( clean_lifetime ( * lt , cx) )
1875
1875
}
1876
1876
hir:: GenericArg :: Lifetime ( _) => GenericArg :: Lifetime ( Lifetime :: elided ( ) ) ,
1877
1877
hir:: GenericArg :: Type ( ty) => GenericArg :: Type ( clean_ty ( ty, cx) ) ,
0 commit comments