@@ -21,7 +21,7 @@ use rustc_hir::{
21
21
ImplItem , ImplItemKind , IsAuto , Item , ItemKind , Lit , LoopSource , MatchSource , MutTy , Node , Path , QPath , Safety ,
22
22
TraitItem , TraitItemKind , Ty , TyKind , UnOp , UnsafeSource , Variant , VariantData , YieldSource ,
23
23
} ;
24
- use rustc_lint:: { LateContext , LintContext } ;
24
+ use rustc_lint:: { LateContext , LintContext , EarlyContext } ;
25
25
use rustc_middle:: ty:: TyCtxt ;
26
26
use rustc_session:: Session ;
27
27
use rustc_span:: symbol:: { Ident , kw} ;
@@ -429,11 +429,12 @@ impl_with_search_pat!((_cx: LateContext<'tcx>, self: ImplItem<'_>) => impl_item_
429
429
impl_with_search_pat ! ( ( _cx: LateContext <' tcx>, self : FieldDef <' _>) => field_def_search_pat( self ) ) ;
430
430
impl_with_search_pat ! ( ( _cx: LateContext <' tcx>, self : Variant <' _>) => variant_search_pat( self ) ) ;
431
431
impl_with_search_pat ! ( ( _cx: LateContext <' tcx>, self : Ty <' _>) => ty_search_pat( self ) ) ;
432
- impl_with_search_pat ! ( ( _cx: LateContext <' tcx>, self : Attribute ) => attr_search_pat( self ) ) ;
433
432
impl_with_search_pat ! ( ( _cx: LateContext <' tcx>, self : Ident ) => ident_search_pat( * self ) ) ;
434
433
impl_with_search_pat ! ( ( _cx: LateContext <' tcx>, self : Lit ) => lit_search_pat( & self . node) ) ;
435
434
impl_with_search_pat ! ( ( _cx: LateContext <' tcx>, self : Path <' _>) => path_search_pat( self ) ) ;
436
435
436
+ impl_with_search_pat ! ( ( _cx: EarlyContext <' tcx>, self : Attribute ) => attr_search_pat( self ) ) ;
437
+
437
438
impl < ' cx > WithSearchPat < ' cx > for ( & FnKind < ' cx > , & Body < ' cx > , HirId , Span ) {
438
439
type Context = LateContext < ' cx > ;
439
440
0 commit comments