@@ -629,18 +629,11 @@ pub(super) enum Constructor<'tcx> {
629
629
/// `#[doc(hidden)]` ones.
630
630
Hidden ,
631
631
/// Fake extra constructor for constructors that are not seen in the matrix, as explained in the
632
- /// code for [`Constructor::split`]. The carried `bool` is used for the
633
- /// `non_exhaustive_omitted_patterns` lint.
634
- Missing {
635
- nonexhaustive_enum_missing_visible_variants : bool ,
636
- } ,
632
+ /// code for [`Constructor::split`].
633
+ Missing ,
637
634
}
638
635
639
636
impl < ' tcx > Constructor < ' tcx > {
640
- pub ( super ) fn is_wildcard ( & self ) -> bool {
641
- matches ! ( self , Wildcard )
642
- }
643
-
644
637
pub ( super ) fn is_non_exhaustive ( & self ) -> bool {
645
638
matches ! ( self , NonExhaustive )
646
639
}
@@ -778,14 +771,8 @@ impl<'tcx> Constructor<'tcx> {
778
771
let all_missing = split_set. present . is_empty ( ) ;
779
772
let report_when_all_missing =
780
773
pcx. is_top_level && !IntRange :: is_integral ( pcx. ty ) ;
781
- let ctor = if all_missing && !report_when_all_missing {
782
- Wildcard
783
- } else {
784
- Missing {
785
- nonexhaustive_enum_missing_visible_variants : split_set
786
- . nonexhaustive_enum_missing_visible_variants ,
787
- }
788
- } ;
774
+ let ctor =
775
+ if all_missing && !report_when_all_missing { Wildcard } else { Missing } ;
789
776
smallvec ! [ ctor]
790
777
} else {
791
778
split_set. present
@@ -905,11 +892,9 @@ pub(super) enum ConstructorSet {
905
892
/// either fully included in or disjoint from each constructor in the column. This avoids
906
893
/// non-trivial intersections like between `0..10` and `5..15`.
907
894
#[ derive( Debug ) ]
908
- struct SplitConstructorSet < ' tcx > {
909
- present : SmallVec < [ Constructor < ' tcx > ; 1 ] > ,
910
- missing : Vec < Constructor < ' tcx > > ,
911
- /// For the `non_exhaustive_omitted_patterns` lint.
912
- nonexhaustive_enum_missing_visible_variants : bool ,
895
+ pub ( super ) struct SplitConstructorSet < ' tcx > {
896
+ pub ( super ) present : SmallVec < [ Constructor < ' tcx > ; 1 ] > ,
897
+ pub ( super ) missing : Vec < Constructor < ' tcx > > ,
913
898
}
914
899
915
900
impl ConstructorSet {
@@ -1039,7 +1024,7 @@ impl ConstructorSet {
1039
1024
/// constructors to 1/ determine which constructors of the type (if any) are missing; 2/ split
1040
1025
/// constructors to handle non-trivial intersections e.g. on ranges or slices.
1041
1026
#[ instrument( level = "debug" , skip( self , pcx, ctors) , ret) ]
1042
- fn split < ' a , ' tcx > (
1027
+ pub ( super ) fn split < ' a , ' tcx > (
1043
1028
& self ,
1044
1029
pcx : & PatCtxt < ' _ , ' _ , ' tcx > ,
1045
1030
ctors : impl Iterator < Item = & ' a Constructor < ' tcx > > + Clone ,
@@ -1051,7 +1036,6 @@ impl ConstructorSet {
1051
1036
let mut missing = Vec :: new ( ) ;
1052
1037
// Constructors in `ctors`, except wildcards.
1053
1038
let mut seen = ctors. filter ( |c| !( matches ! ( c, Opaque | Wildcard ) ) ) ;
1054
- let mut nonexhaustive_enum_missing_visible_variants = false ;
1055
1039
match self {
1056
1040
ConstructorSet :: Single => {
1057
1041
if seen. next ( ) . is_none ( ) {
@@ -1063,6 +1047,7 @@ impl ConstructorSet {
1063
1047
ConstructorSet :: Variants { visible_variants, hidden_variants, non_exhaustive } => {
1064
1048
let seen_set: FxHashSet < _ > = seen. map ( |c| c. as_variant ( ) . unwrap ( ) ) . collect ( ) ;
1065
1049
let mut skipped_a_hidden_variant = false ;
1050
+
1066
1051
for variant in visible_variants {
1067
1052
let ctor = Variant ( * variant) ;
1068
1053
if seen_set. contains ( & variant) {
@@ -1071,8 +1056,6 @@ impl ConstructorSet {
1071
1056
missing. push ( ctor) ;
1072
1057
}
1073
1058
}
1074
- nonexhaustive_enum_missing_visible_variants =
1075
- * non_exhaustive && !missing. is_empty ( ) ;
1076
1059
1077
1060
for variant in hidden_variants {
1078
1061
let ctor = Variant ( * variant) ;
@@ -1159,7 +1142,7 @@ impl ConstructorSet {
1159
1142
ConstructorSet :: Uninhabited => { }
1160
1143
}
1161
1144
1162
- SplitConstructorSet { present, missing, nonexhaustive_enum_missing_visible_variants }
1145
+ SplitConstructorSet { present, missing }
1163
1146
}
1164
1147
1165
1148
/// Compute the set of constructors missing from this column.
@@ -1519,6 +1502,13 @@ impl<'p, 'tcx> DeconstructedPat<'p, 'tcx> {
1519
1502
pub ( super ) fn is_or_pat ( & self ) -> bool {
1520
1503
matches ! ( self . ctor, Or )
1521
1504
}
1505
+ pub ( super ) fn flatten_or_pat ( & ' p self ) -> SmallVec < [ & ' p Self ; 1 ] > {
1506
+ if self . is_or_pat ( ) {
1507
+ self . iter_fields ( ) . flat_map ( |p| p. flatten_or_pat ( ) ) . collect ( )
1508
+ } else {
1509
+ smallvec ! [ self ]
1510
+ }
1511
+ }
1522
1512
1523
1513
pub ( super ) fn ctor ( & self ) -> & Constructor < ' tcx > {
1524
1514
& self . ctor
@@ -1704,7 +1694,7 @@ impl<'p, 'tcx> fmt::Debug for DeconstructedPat<'p, 'tcx> {
1704
1694
#[ derive( Debug , Clone ) ]
1705
1695
pub ( crate ) struct WitnessPat < ' tcx > {
1706
1696
ctor : Constructor < ' tcx > ,
1707
- fields : Vec < WitnessPat < ' tcx > > ,
1697
+ pub ( crate ) fields : Vec < WitnessPat < ' tcx > > ,
1708
1698
ty : Ty < ' tcx > ,
1709
1699
}
1710
1700
0 commit comments