@@ -98,7 +98,7 @@ impl<'thir, 'tcx> Visitor<'thir, 'tcx> for MatchVisitor<'thir, '_, 'tcx> {
9898 }
9999
100100 #[ instrument( level = "trace" , skip( self ) ) ]
101- fn visit_arm ( & mut self , arm : & Arm < ' tcx > ) {
101+ fn visit_arm ( & mut self , arm : & ' thir Arm < ' tcx > ) {
102102 self . with_lint_level ( arm. lint_level , |this| {
103103 match arm. guard {
104104 Some ( Guard :: If ( expr) ) => {
@@ -121,7 +121,7 @@ impl<'thir, 'tcx> Visitor<'thir, 'tcx> for MatchVisitor<'thir, '_, 'tcx> {
121121 }
122122
123123 #[ instrument( level = "trace" , skip( self ) ) ]
124- fn visit_expr ( & mut self , ex : & Expr < ' tcx > ) {
124+ fn visit_expr ( & mut self , ex : & ' thir Expr < ' tcx > ) {
125125 match ex. kind {
126126 ExprKind :: Scope { value, lint_level, .. } => {
127127 self . with_lint_level ( lint_level, |this| {
@@ -174,7 +174,7 @@ impl<'thir, 'tcx> Visitor<'thir, 'tcx> for MatchVisitor<'thir, '_, 'tcx> {
174174 self . with_let_source ( LetSource :: None , |this| visit:: walk_expr ( this, ex) ) ;
175175 }
176176
177- fn visit_stmt ( & mut self , stmt : & Stmt < ' tcx > ) {
177+ fn visit_stmt ( & mut self , stmt : & ' thir Stmt < ' tcx > ) {
178178 match stmt. kind {
179179 StmtKind :: Let {
180180 box ref pattern, initializer, else_block, lint_level, span, ..
@@ -224,7 +224,7 @@ impl<'thir, 'p, 'tcx> MatchVisitor<'thir, 'p, 'tcx> {
224224 /// subexpressions we are not handling ourselves.
225225 fn visit_land (
226226 & mut self ,
227- ex : & Expr < ' tcx > ,
227+ ex : & ' thir Expr < ' tcx > ,
228228 accumulator : & mut Vec < Option < ( Span , RefutableFlag ) > > ,
229229 ) -> Result < ( ) , ErrorGuaranteed > {
230230 match ex. kind {
@@ -251,7 +251,7 @@ impl<'thir, 'p, 'tcx> MatchVisitor<'thir, 'p, 'tcx> {
251251 /// expression. This must call `visit_expr` on the subexpressions we are not handling ourselves.
252252 fn visit_land_rhs (
253253 & mut self ,
254- ex : & Expr < ' tcx > ,
254+ ex : & ' thir Expr < ' tcx > ,
255255 ) -> Result < Option < ( Span , RefutableFlag ) > , ErrorGuaranteed > {
256256 match ex. kind {
257257 ExprKind :: Scope { value, lint_level, .. } => {
@@ -276,7 +276,7 @@ impl<'thir, 'p, 'tcx> MatchVisitor<'thir, 'p, 'tcx> {
276276 fn lower_pattern (
277277 & mut self ,
278278 cx : & MatchCheckCtxt < ' p , ' tcx > ,
279- pat : & Pat < ' tcx > ,
279+ pat : & ' thir Pat < ' tcx > ,
280280 ) -> Result < & ' p DeconstructedPat < ' p , ' tcx > , ErrorGuaranteed > {
281281 if let Err ( err) = pat. pat_error_reported ( ) {
282282 self . error = Err ( err) ;
@@ -395,7 +395,7 @@ impl<'thir, 'p, 'tcx> MatchVisitor<'thir, 'p, 'tcx> {
395395 }
396396
397397 #[ instrument( level = "trace" , skip( self ) ) ]
398- fn check_let ( & mut self , pat : & Pat < ' tcx > , scrutinee : Option < ExprId > , span : Span ) {
398+ fn check_let ( & mut self , pat : & ' thir Pat < ' tcx > , scrutinee : Option < ExprId > , span : Span ) {
399399 assert ! ( self . let_source != LetSource :: None ) ;
400400 let scrut = scrutinee. map ( |id| & self . thir [ id] ) ;
401401 if let LetSource :: PlainLet = self . let_source {
@@ -547,7 +547,7 @@ impl<'thir, 'p, 'tcx> MatchVisitor<'thir, 'p, 'tcx> {
547547
548548 fn analyze_binding (
549549 & mut self ,
550- pat : & Pat < ' tcx > ,
550+ pat : & ' thir Pat < ' tcx > ,
551551 refutability : RefutableFlag ,
552552 scrut : Option < & Expr < ' tcx > > ,
553553 ) -> Result < ( MatchCheckCtxt < ' p , ' tcx > , UsefulnessReport < ' p , ' tcx > ) , ErrorGuaranteed > {
@@ -560,7 +560,7 @@ impl<'thir, 'p, 'tcx> MatchVisitor<'thir, 'p, 'tcx> {
560560
561561 fn is_let_irrefutable (
562562 & mut self ,
563- pat : & Pat < ' tcx > ,
563+ pat : & ' thir Pat < ' tcx > ,
564564 scrut : Option < & Expr < ' tcx > > ,
565565 ) -> Result < RefutableFlag , ErrorGuaranteed > {
566566 let ( cx, report) = self . analyze_binding ( pat, Refutable , scrut) ?;
@@ -575,7 +575,7 @@ impl<'thir, 'p, 'tcx> MatchVisitor<'thir, 'p, 'tcx> {
575575 #[ instrument( level = "trace" , skip( self ) ) ]
576576 fn check_binding_is_irrefutable (
577577 & mut self ,
578- pat : & Pat < ' tcx > ,
578+ pat : & ' thir Pat < ' tcx > ,
579579 origin : & str ,
580580 scrut : Option < & Expr < ' tcx > > ,
581581 sp : Option < Span > ,
0 commit comments