@@ -21,9 +21,9 @@ pub(super) const PARAM_EXPECTED: Expected = Some("parameter name");
21
21
#[ derive( PartialEq ) ]
22
22
pub enum GateOr { Yes , No }
23
23
24
- /// Whether or not this is the top level pattern context .
24
+ /// Whether or not to recover a `,` when parsing or-patterns .
25
25
#[ derive( PartialEq , Copy , Clone ) ]
26
- enum TopLevel { Yes , No }
26
+ enum RecoverComma { Yes , No }
27
27
28
28
impl < ' a > Parser < ' a > {
29
29
/// Parses a pattern.
@@ -52,7 +52,7 @@ impl<'a> Parser<'a> {
52
52
let gated_leading_vert = self . eat_or_separator ( ) && gate_or == GateOr :: Yes ;
53
53
54
54
// Parse the possibly-or-pattern.
55
- let pat = self . parse_pat_with_or ( None , gate_or, TopLevel :: Yes ) ?;
55
+ let pat = self . parse_pat_with_or ( None , gate_or, RecoverComma :: Yes ) ?;
56
56
57
57
// If we parsed a leading `|` which should be gated,
58
58
// and no other gated or-pattern has been parsed thus far,
@@ -72,7 +72,7 @@ impl<'a> Parser<'a> {
72
72
/// Special recovery is provided for or-patterns and leading `|`.
73
73
pub ( super ) fn parse_fn_param_pat ( & mut self ) -> PResult < ' a , P < Pat > > {
74
74
self . recover_leading_vert ( "not allowed in a parameter pattern" ) ;
75
- let pat = self . parse_pat_with_or ( PARAM_EXPECTED , GateOr :: No , TopLevel :: No ) ?;
75
+ let pat = self . parse_pat_with_or ( PARAM_EXPECTED , GateOr :: No , RecoverComma :: No ) ?;
76
76
77
77
if let PatKind :: Or ( ..) = & pat. node {
78
78
self . ban_illegal_fn_param_or_pat ( & pat) ;
@@ -96,11 +96,11 @@ impl<'a> Parser<'a> {
96
96
& mut self ,
97
97
expected : Expected ,
98
98
gate_or : GateOr ,
99
- top_level : TopLevel ,
99
+ rc : RecoverComma ,
100
100
) -> PResult < ' a , P < Pat > > {
101
101
// Parse the first pattern.
102
102
let first_pat = self . parse_pat ( expected) ?;
103
- self . maybe_recover_unexpected_comma ( first_pat. span , top_level ) ?;
103
+ self . maybe_recover_unexpected_comma ( first_pat. span , rc ) ?;
104
104
105
105
// If the next token is not a `|`,
106
106
// this is not an or-pattern and we should exit here.
@@ -115,7 +115,7 @@ impl<'a> Parser<'a> {
115
115
err. span_label ( lo, "while parsing this or-pattern staring here" ) ;
116
116
err
117
117
} ) ?;
118
- self . maybe_recover_unexpected_comma ( pat. span , top_level ) ?;
118
+ self . maybe_recover_unexpected_comma ( pat. span , rc ) ?;
119
119
pats. push ( pat) ;
120
120
}
121
121
let or_pattern_span = lo. to ( self . prev_span ) ;
@@ -156,8 +156,8 @@ impl<'a> Parser<'a> {
156
156
157
157
/// Some special error handling for the "top-level" patterns in a match arm,
158
158
/// `for` loop, `let`, &c. (in contrast to subpatterns within such).
159
- fn maybe_recover_unexpected_comma ( & mut self , lo : Span , top_level : TopLevel ) -> PResult < ' a , ( ) > {
160
- if top_level == TopLevel :: No || self . token != token:: Comma {
159
+ fn maybe_recover_unexpected_comma ( & mut self , lo : Span , rc : RecoverComma ) -> PResult < ' a , ( ) > {
160
+ if rc == RecoverComma :: No || self . token != token:: Comma {
161
161
return Ok ( ( ) ) ;
162
162
}
163
163
@@ -207,7 +207,7 @@ impl<'a> Parser<'a> {
207
207
/// See `parse_pat_with_or` for details on parsing or-patterns.
208
208
fn parse_pat_with_or_inner ( & mut self ) -> PResult < ' a , P < Pat > > {
209
209
self . recover_leading_vert ( "only allowed in a top-level pattern" ) ;
210
- self . parse_pat_with_or ( None , GateOr :: Yes , TopLevel :: No )
210
+ self . parse_pat_with_or ( None , GateOr :: Yes , RecoverComma :: No )
211
211
}
212
212
213
213
/// Recover if `|` or `||` is here.
0 commit comments