1
1
use rustc_pattern_analysis:: errors:: Uncovered ;
2
2
use rustc_pattern_analysis:: rustc:: {
3
- Constructor , DeconstructedPat , MatchArm , RustcMatchCheckCtxt as MatchCheckCtxt , Usefulness ,
4
- UsefulnessReport , WitnessPat ,
3
+ Constructor , DeconstructedPat , MatchArm , RustcPatCtxt as PatCtxt , Usefulness , UsefulnessReport ,
4
+ WitnessPat ,
5
5
} ;
6
6
7
7
use crate :: errors:: * ;
@@ -276,7 +276,7 @@ impl<'p, 'tcx> MatchVisitor<'p, 'tcx> {
276
276
277
277
fn lower_pattern (
278
278
& mut self ,
279
- cx : & MatchCheckCtxt < ' p , ' tcx > ,
279
+ cx : & PatCtxt < ' p , ' tcx > ,
280
280
pat : & ' p Pat < ' tcx > ,
281
281
) -> Result < & ' p DeconstructedPat < ' p , ' tcx > , ErrorGuaranteed > {
282
282
if let Err ( err) = pat. pat_error_reported ( ) {
@@ -375,7 +375,7 @@ impl<'p, 'tcx> MatchVisitor<'p, 'tcx> {
375
375
whole_match_span : Option < Span > ,
376
376
scrutinee : Option < & Expr < ' tcx > > ,
377
377
scrut_span : Span ,
378
- ) -> MatchCheckCtxt < ' p , ' tcx > {
378
+ ) -> PatCtxt < ' p , ' tcx > {
379
379
let refutable = match refutability {
380
380
Irrefutable => false ,
381
381
Refutable => true ,
@@ -384,7 +384,7 @@ impl<'p, 'tcx> MatchVisitor<'p, 'tcx> {
384
384
// require validity.
385
385
let known_valid_scrutinee =
386
386
scrutinee. map ( |scrut| self . is_known_valid_scrutinee ( scrut) ) . unwrap_or ( true ) ;
387
- MatchCheckCtxt {
387
+ PatCtxt {
388
388
tcx : self . tcx ,
389
389
typeck_results : self . typeck_results ,
390
390
param_env : self . param_env ,
@@ -400,7 +400,7 @@ impl<'p, 'tcx> MatchVisitor<'p, 'tcx> {
400
400
401
401
fn analyze_patterns (
402
402
& mut self ,
403
- cx : & MatchCheckCtxt < ' p , ' tcx > ,
403
+ cx : & PatCtxt < ' p , ' tcx > ,
404
404
arms : & [ MatchArm < ' p , ' tcx > ] ,
405
405
scrut_ty : Ty < ' tcx > ,
406
406
) -> Result < UsefulnessReport < ' p , ' tcx > , ErrorGuaranteed > {
@@ -584,7 +584,7 @@ impl<'p, 'tcx> MatchVisitor<'p, 'tcx> {
584
584
pat : & ' p Pat < ' tcx > ,
585
585
refutability : RefutableFlag ,
586
586
scrut : Option < & Expr < ' tcx > > ,
587
- ) -> Result < ( MatchCheckCtxt < ' p , ' tcx > , UsefulnessReport < ' p , ' tcx > ) , ErrorGuaranteed > {
587
+ ) -> Result < ( PatCtxt < ' p , ' tcx > , UsefulnessReport < ' p , ' tcx > ) , ErrorGuaranteed > {
588
588
let cx = self . new_cx ( refutability, None , scrut, pat. span ) ;
589
589
let pat = self . lower_pattern ( & cx, pat) ?;
590
590
let arms = [ MatchArm { pat, arm_data : self . lint_level , has_guard : false } ] ;
@@ -849,7 +849,7 @@ fn check_for_bindings_named_same_as_variants(
849
849
850
850
/// Check that never patterns are only used on inhabited types.
851
851
fn check_never_pattern < ' tcx > (
852
- cx : & MatchCheckCtxt < ' _ , ' tcx > ,
852
+ cx : & PatCtxt < ' _ , ' tcx > ,
853
853
pat : & Pat < ' tcx > ,
854
854
) -> Result < ( ) , ErrorGuaranteed > {
855
855
if let PatKind :: Never = pat. kind {
@@ -884,7 +884,7 @@ fn report_irrefutable_let_patterns(
884
884
885
885
/// Report unreachable arms, if any.
886
886
fn report_unreachable_pattern < ' p , ' tcx > (
887
- cx : & MatchCheckCtxt < ' p , ' tcx > ,
887
+ cx : & PatCtxt < ' p , ' tcx > ,
888
888
hir_id : HirId ,
889
889
span : Span ,
890
890
catchall : Option < Span > ,
@@ -898,10 +898,7 @@ fn report_unreachable_pattern<'p, 'tcx>(
898
898
}
899
899
900
900
/// Report unreachable arms, if any.
901
- fn report_arm_reachability < ' p , ' tcx > (
902
- cx : & MatchCheckCtxt < ' p , ' tcx > ,
903
- report : & UsefulnessReport < ' p , ' tcx > ,
904
- ) {
901
+ fn report_arm_reachability < ' p , ' tcx > ( cx : & PatCtxt < ' p , ' tcx > , report : & UsefulnessReport < ' p , ' tcx > ) {
905
902
let mut catchall = None ;
906
903
for ( arm, is_useful) in report. arm_usefulness . iter ( ) {
907
904
if matches ! ( is_useful, Usefulness :: Redundant ) {
@@ -926,7 +923,7 @@ fn pat_is_catchall(pat: &DeconstructedPat<'_, '_>) -> bool {
926
923
927
924
/// Report that a match is not exhaustive.
928
925
fn report_non_exhaustive_match < ' p , ' tcx > (
929
- cx : & MatchCheckCtxt < ' p , ' tcx > ,
926
+ cx : & PatCtxt < ' p , ' tcx > ,
930
927
thir : & Thir < ' tcx > ,
931
928
scrut_ty : Ty < ' tcx > ,
932
929
sp : Span ,
@@ -1126,7 +1123,7 @@ fn report_non_exhaustive_match<'p, 'tcx>(
1126
1123
}
1127
1124
1128
1125
fn joined_uncovered_patterns < ' p , ' tcx > (
1129
- cx : & MatchCheckCtxt < ' p , ' tcx > ,
1126
+ cx : & PatCtxt < ' p , ' tcx > ,
1130
1127
witnesses : & [ WitnessPat < ' p , ' tcx > ] ,
1131
1128
) -> String {
1132
1129
const LIMIT : usize = 3 ;
@@ -1147,7 +1144,7 @@ fn joined_uncovered_patterns<'p, 'tcx>(
1147
1144
}
1148
1145
1149
1146
fn collect_non_exhaustive_tys < ' tcx > (
1150
- cx : & MatchCheckCtxt < ' _ , ' tcx > ,
1147
+ cx : & PatCtxt < ' _ , ' tcx > ,
1151
1148
pat : & WitnessPat < ' _ , ' tcx > ,
1152
1149
non_exhaustive_tys : & mut FxIndexSet < Ty < ' tcx > > ,
1153
1150
) {
0 commit comments