@@ -53,8 +53,7 @@ use rustc_feature::BUILTIN_ATTRIBUTES;
5353use rustc_hir:: attrs:: StrippedCfgItem ;
5454use rustc_hir:: def:: Namespace :: { self , * } ;
5555use rustc_hir:: def:: {
56- self , CtorOf , DefKind , DocLinkResMap , LifetimeRes , MacroKinds , NonMacroAttrKind , PartialRes ,
57- PerNS ,
56+ self , CtorOf , DefKind , DocLinkResMap , MacroKinds , NonMacroAttrKind , PartialRes , PerNS ,
5857} ;
5958use rustc_hir:: def_id:: { CRATE_DEF_ID , CrateNum , DefId , LOCAL_CRATE , LocalDefId , LocalDefIdMap } ;
6059use rustc_hir:: definitions:: { PerParentDisambiguatorState , PerParentDisambiguatorsMap } ;
@@ -1369,8 +1368,6 @@ pub struct Resolver<'ra, 'tcx> {
13691368 import_res_map : NodeMap < PerNS < Option < Res > > > = Default :: default ( ) ,
13701369 /// An import will be inserted into this map if it has been used.
13711370 import_use_map : FxHashMap < Import < ' ra > , Used > = default:: fx_hash_map ( ) ,
1372- /// Resolutions for lifetimes.
1373- lifetimes_res_map : NodeMap < LifetimeRes > = Default :: default ( ) ,
13741371 /// Lifetime parameters that lowering will have to introduce.
13751372 extra_lifetime_params_map : NodeMap < Vec < ( Ident , NodeId , MissingLifetimeKind ) > > = Default :: default ( ) ,
13761373
@@ -2001,7 +1998,6 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
20011998 let ast_lowering = ty:: ResolverAstLowering {
20021999 partial_res_map : self . partial_res_map ,
20032000 import_res_map : self . import_res_map ,
2004- lifetimes_res_map : self . lifetimes_res_map ,
20052001 extra_lifetime_params_map : self . extra_lifetime_params_map ,
20062002 next_node_id : self . next_node_id ,
20072003 owners : self . owners ,
0 commit comments