@@ -856,7 +856,7 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
856
856
. tables
857
857
. children
858
858
. get ( self , index)
859
- . unwrap_or ( Lazy :: empty ( ) )
859
+ . unwrap_or_else ( Lazy :: empty)
860
860
. decode ( self )
861
861
. map ( |index| ty:: FieldDef {
862
862
did : self . local_def_id ( index) ,
@@ -888,7 +888,7 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
888
888
. tables
889
889
. children
890
890
. get ( self , item_id)
891
- . unwrap_or ( Lazy :: empty ( ) )
891
+ . unwrap_or_else ( Lazy :: empty)
892
892
. decode ( self )
893
893
. map ( |index| self . get_variant ( & self . kind ( index) , index, did, tcx. sess ) )
894
894
. collect ( )
@@ -1075,7 +1075,7 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
1075
1075
1076
1076
// Iterate over all children.
1077
1077
let macros_only = self . dep_kind . lock ( ) . macros_only ( ) ;
1078
- let children = self . root . tables . children . get ( self , id) . unwrap_or ( Lazy :: empty ( ) ) ;
1078
+ let children = self . root . tables . children . get ( self , id) . unwrap_or_else ( Lazy :: empty) ;
1079
1079
for child_index in children. decode ( ( self , sess) ) {
1080
1080
if macros_only {
1081
1081
continue ;
@@ -1098,7 +1098,7 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
1098
1098
. tables
1099
1099
. children
1100
1100
. get ( self , child_index)
1101
- . unwrap_or ( Lazy :: empty ( ) ) ;
1101
+ . unwrap_or_else ( Lazy :: empty) ;
1102
1102
for child_index in child_children. decode ( ( self , sess) ) {
1103
1103
let kind = self . def_kind ( child_index) ;
1104
1104
callback ( Export {
@@ -1284,7 +1284,7 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
1284
1284
}
1285
1285
1286
1286
fn get_item_variances ( & self , id : DefIndex ) -> Vec < ty:: Variance > {
1287
- self . root . tables . variances . get ( self , id) . unwrap_or ( Lazy :: empty ( ) ) . decode ( self ) . collect ( )
1287
+ self . root . tables . variances . get ( self , id) . unwrap_or_else ( Lazy :: empty) . decode ( self ) . collect ( )
1288
1288
}
1289
1289
1290
1290
fn get_ctor_kind ( & self , node_id : DefIndex ) -> CtorKind {
@@ -1323,7 +1323,7 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
1323
1323
. tables
1324
1324
. attributes
1325
1325
. get ( self , item_id)
1326
- . unwrap_or ( Lazy :: empty ( ) )
1326
+ . unwrap_or_else ( Lazy :: empty)
1327
1327
. decode ( ( self , sess) )
1328
1328
. collect :: < Vec < _ > > ( )
1329
1329
}
@@ -1333,7 +1333,7 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
1333
1333
. tables
1334
1334
. children
1335
1335
. get ( self , id)
1336
- . unwrap_or ( Lazy :: empty ( ) )
1336
+ . unwrap_or_else ( Lazy :: empty)
1337
1337
. decode ( self )
1338
1338
. map ( |index| respan ( self . get_span ( index, sess) , self . item_ident ( index, sess) . name ) )
1339
1339
. collect ( )
@@ -1349,7 +1349,7 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
1349
1349
. tables
1350
1350
. inherent_impls
1351
1351
. get ( self , id)
1352
- . unwrap_or ( Lazy :: empty ( ) )
1352
+ . unwrap_or_else ( Lazy :: empty)
1353
1353
. decode ( self )
1354
1354
. map ( |index| self . local_def_id ( index) ) ,
1355
1355
)
0 commit comments