@@ -259,13 +259,13 @@ fn clean_lifetime<'tcx>(lifetime: &hir::Lifetime, cx: &mut DocContext<'tcx>) ->
259
259
pub ( crate ) fn clean_const < ' tcx > ( constant : & hir:: ConstArg , cx : & mut DocContext < ' tcx > ) -> Constant {
260
260
let def_id = cx. tcx . hir ( ) . body_owner_def_id ( constant. value . body ) . to_def_id ( ) ;
261
261
Constant {
262
- type_ : clean_middle_ty (
262
+ type_ : Box :: new ( clean_middle_ty (
263
263
ty:: Binder :: dummy ( cx. tcx . type_of ( def_id) . instantiate_identity ( ) ) ,
264
264
cx,
265
265
Some ( def_id) ,
266
266
None ,
267
- ) ,
268
- generics : Box :: new ( Generics :: default ( ) ) ,
267
+ ) ) ,
268
+ generics : Generics :: default ( ) ,
269
269
kind : ConstantKind :: Anonymous { body : constant. value . body } ,
270
270
}
271
271
}
@@ -276,8 +276,8 @@ pub(crate) fn clean_middle_const<'tcx>(
276
276
) -> Constant {
277
277
// FIXME: instead of storing the stringified expression, store `self` directly instead.
278
278
Constant {
279
- type_ : clean_middle_ty ( constant. map_bound ( |c| c. ty ( ) ) , cx, None , None ) ,
280
- generics : Box :: new ( Generics :: default ( ) ) ,
279
+ type_ : Box :: new ( clean_middle_ty ( constant. map_bound ( |c| c. ty ( ) ) , cx, None , None ) ) ,
280
+ generics : Generics :: default ( ) ,
281
281
kind : ConstantKind :: TyConst { expr : constant. skip_binder ( ) . to_string ( ) . into ( ) } ,
282
282
}
283
283
}
@@ -1216,14 +1216,14 @@ fn clean_trait_item<'tcx>(trait_item: &hir::TraitItem<'tcx>, cx: &mut DocContext
1216
1216
hir:: TraitItemKind :: Const ( ty, Some ( default) ) => {
1217
1217
let generics = enter_impl_trait ( cx, |cx| clean_generics ( trait_item. generics , cx) ) ;
1218
1218
AssocConstItem (
1219
- Box :: new ( generics) ,
1220
- clean_ty ( ty, cx) ,
1219
+ generics,
1220
+ Box :: new ( clean_ty ( ty, cx) ) ,
1221
1221
ConstantKind :: Local { def_id : local_did, body : default } ,
1222
1222
)
1223
1223
}
1224
1224
hir:: TraitItemKind :: Const ( ty, None ) => {
1225
1225
let generics = enter_impl_trait ( cx, |cx| clean_generics ( trait_item. generics , cx) ) ;
1226
- TyAssocConstItem ( Box :: new ( generics ) , clean_ty ( ty, cx) )
1226
+ TyAssocConstItem ( generics , Box :: new ( clean_ty ( ty, cx) ) )
1227
1227
}
1228
1228
hir:: TraitItemKind :: Fn ( ref sig, hir:: TraitFn :: Provided ( body) ) => {
1229
1229
let m = clean_function ( cx, sig, trait_item. generics , FunctionArgs :: Body ( body) ) ;
@@ -1272,7 +1272,7 @@ pub(crate) fn clean_impl_item<'tcx>(
1272
1272
hir:: ImplItemKind :: Const ( ty, expr) => {
1273
1273
let generics = clean_generics ( impl_. generics , cx) ;
1274
1274
let default = ConstantKind :: Local { def_id : local_did, body : expr } ;
1275
- AssocConstItem ( Box :: new ( generics ) , clean_ty ( ty, cx) , default)
1275
+ AssocConstItem ( generics , Box :: new ( clean_ty ( ty, cx) ) , default)
1276
1276
}
1277
1277
hir:: ImplItemKind :: Fn ( ref sig, body) => {
1278
1278
let m = clean_function ( cx, sig, impl_. generics , FunctionArgs :: Body ( body) ) ;
@@ -1311,18 +1311,18 @@ pub(crate) fn clean_middle_assoc_item<'tcx>(
1311
1311
let tcx = cx. tcx ;
1312
1312
let kind = match assoc_item. kind {
1313
1313
ty:: AssocKind :: Const => {
1314
- let ty = clean_middle_ty (
1314
+ let ty = Box :: new ( clean_middle_ty (
1315
1315
ty:: Binder :: dummy ( tcx. type_of ( assoc_item. def_id ) . instantiate_identity ( ) ) ,
1316
1316
cx,
1317
1317
Some ( assoc_item. def_id ) ,
1318
1318
None ,
1319
- ) ;
1319
+ ) ) ;
1320
1320
1321
- let mut generics = Box :: new ( clean_ty_generics (
1321
+ let mut generics = clean_ty_generics (
1322
1322
cx,
1323
1323
tcx. generics_of ( assoc_item. def_id ) ,
1324
1324
tcx. explicit_predicates_of ( assoc_item. def_id ) ,
1325
- ) ) ;
1325
+ ) ;
1326
1326
simplify:: move_bounds_to_generic_parameters ( & mut generics) ;
1327
1327
1328
1328
let provided = match assoc_item. container {
@@ -2718,8 +2718,8 @@ fn clean_maybe_renamed_item<'tcx>(
2718
2718
StaticItem ( Static { type_ : clean_ty ( ty, cx) , mutability, expr : Some ( body_id) } )
2719
2719
}
2720
2720
ItemKind :: Const ( ty, generics, body_id) => ConstantItem ( Constant {
2721
- type_ : clean_ty ( ty, cx) ,
2722
- generics : Box :: new ( clean_generics ( generics, cx) ) ,
2721
+ type_ : Box :: new ( clean_ty ( ty, cx) ) ,
2722
+ generics : clean_generics ( generics, cx) ,
2723
2723
kind : ConstantKind :: Local { body : body_id, def_id } ,
2724
2724
} ) ,
2725
2725
ItemKind :: OpaqueTy ( ref ty) => OpaqueTyItem ( OpaqueTy {
0 commit comments