@@ -568,7 +568,7 @@ impl Pat {
568
568
// In a type expression `_` is an inference variable.
569
569
PatKind :: Wild => TyKind :: Infer ,
570
570
// An IDENT pattern with no binding mode would be valid as path to a type. E.g. `u32`.
571
- PatKind :: Ident ( BindingAnnotation :: NONE , ident, None ) => {
571
+ PatKind :: Ident ( BindingMode :: NONE , ident, None ) => {
572
572
TyKind :: Path ( None , Path :: from_ident ( * ident) )
573
573
}
574
574
PatKind :: Path ( qself, path) => TyKind :: Path ( qself. clone ( ) , path. clone ( ) ) ,
@@ -675,7 +675,7 @@ impl Pat {
675
675
pub fn descr ( & self ) -> Option < String > {
676
676
match & self . kind {
677
677
PatKind :: Wild => Some ( "_" . to_string ( ) ) ,
678
- PatKind :: Ident ( BindingAnnotation :: NONE , ident, None ) => Some ( format ! ( "{ident}" ) ) ,
678
+ PatKind :: Ident ( BindingMode :: NONE , ident, None ) => Some ( format ! ( "{ident}" ) ) ,
679
679
PatKind :: Ref ( pat, mutbl) => pat. descr ( ) . map ( |d| format ! ( "&{}{d}" , mutbl. prefix_str( ) ) ) ,
680
680
_ => None ,
681
681
}
@@ -707,14 +707,25 @@ pub enum ByRef {
707
707
No ,
708
708
}
709
709
710
- /// Explicit binding annotations given in the HIR for a binding. Note
711
- /// that this is not the final binding *mode* that we infer after type
712
- /// inference.
710
+ impl ByRef {
711
+ pub fn cap_ref_mutability ( mut self , mutbl : Mutability ) -> Self {
712
+ if let ByRef :: Yes ( old_mutbl) = & mut self {
713
+ * old_mutbl = cmp:: min ( * old_mutbl, mutbl) ;
714
+ }
715
+ self
716
+ }
717
+ }
718
+
719
+ /// The mode of a binding (`mut`, `ref mut`, etc).
720
+ /// Used for both the explicit binding annotations given in the HIR for a binding
721
+ /// and the final binding mode that we infer after type inference/match ergonomics.
722
+ /// `.0` is the by-reference mode (`ref`, `ref mut`, or by value),
723
+ /// `.1` is the mutability of the binding.
713
724
#[ derive( Clone , Copy , Debug , Eq , PartialEq ) ]
714
725
#[ derive( Encodable , Decodable , HashStable_Generic ) ]
715
- pub struct BindingAnnotation ( pub ByRef , pub Mutability ) ;
726
+ pub struct BindingMode ( pub ByRef , pub Mutability ) ;
716
727
717
- impl BindingAnnotation {
728
+ impl BindingMode {
718
729
pub const NONE : Self = Self ( ByRef :: No , Mutability :: Not ) ;
719
730
pub const REF : Self = Self ( ByRef :: Yes ( Mutability :: Not ) , Mutability :: Not ) ;
720
731
pub const MUT : Self = Self ( ByRef :: No , Mutability :: Mut ) ;
@@ -732,13 +743,6 @@ impl BindingAnnotation {
732
743
Self :: MUT_REF_MUT => "mut ref mut " ,
733
744
}
734
745
}
735
-
736
- pub fn cap_ref_mutability ( mut self , mutbl : Mutability ) -> Self {
737
- if let ByRef :: Yes ( old_mutbl) = & mut self . 0 {
738
- * old_mutbl = cmp:: min ( * old_mutbl, mutbl) ;
739
- }
740
- self
741
- }
742
746
}
743
747
744
748
#[ derive( Clone , Encodable , Decodable , Debug ) ]
@@ -769,7 +773,7 @@ pub enum PatKind {
769
773
/// or a unit struct/variant pattern, or a const pattern (in the last two cases the third
770
774
/// field must be `None`). Disambiguation cannot be done with parser alone, so it happens
771
775
/// during name resolution.
772
- Ident ( BindingAnnotation , Ident , Option < P < Pat > > ) ,
776
+ Ident ( BindingMode , Ident , Option < P < Pat > > ) ,
773
777
774
778
/// A struct or struct variant pattern (e.g., `Variant {x, y, ..}`).
775
779
Struct ( Option < P < QSelf > > , Path , ThinVec < PatField > , PatFieldsRest ) ,
@@ -2382,7 +2386,7 @@ pub type ExplicitSelf = Spanned<SelfKind>;
2382
2386
impl Param {
2383
2387
/// Attempts to cast parameter to `ExplicitSelf`.
2384
2388
pub fn to_self ( & self ) -> Option < ExplicitSelf > {
2385
- if let PatKind :: Ident ( BindingAnnotation ( ByRef :: No , mutbl) , ident, _) = self . pat . kind {
2389
+ if let PatKind :: Ident ( BindingMode ( ByRef :: No , mutbl) , ident, _) = self . pat . kind {
2386
2390
if ident. name == kw:: SelfLower {
2387
2391
return match self . ty . kind {
2388
2392
TyKind :: ImplicitSelf => Some ( respan ( self . pat . span , SelfKind :: Value ( mutbl) ) ) ,
@@ -2434,7 +2438,7 @@ impl Param {
2434
2438
attrs,
2435
2439
pat : P ( Pat {
2436
2440
id : DUMMY_NODE_ID ,
2437
- kind : PatKind :: Ident ( BindingAnnotation ( ByRef :: No , mutbl) , eself_ident, None ) ,
2441
+ kind : PatKind :: Ident ( BindingMode ( ByRef :: No , mutbl) , eself_ident, None ) ,
2438
2442
span,
2439
2443
tokens : None ,
2440
2444
} ) ,
0 commit comments