You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: compiler/rustc_parse/src/parser/pat.rs
+24-21
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,6 @@ use rustc_session::errors::ExprParenthesesNeeded;
24
24
use rustc_span::source_map::{respan,Spanned};
25
25
use rustc_span::symbol::{kw, sym,Ident};
26
26
use rustc_span::{ErrorGuaranteed,Span};
27
-
use std::borrow::Cow;
28
27
use thin_vec::{thin_vec,ThinVec};
29
28
30
29
#[derive(PartialEq,Copy,Clone)]
@@ -337,11 +336,19 @@ impl<'a> Parser<'a> {
337
336
}
338
337
}
339
338
340
-
/// Ensures that the last parsed pattern is not followed by a method call or an operator.
339
+
/// Ensures that the last parsed pattern (or pattern range bound) is not followed by a method call or an operator.
340
+
///
341
+
/// `is_end_bound` indicates whether the last parsed thing was the end bound of a range pattern (see [`parse_pat_range_end`](Self::parse_pat_range_end))
342
+
/// in order to say "expected a pattern range bound" instead of "expected a pattern";
343
+
/// ```text
344
+
/// 0..=1 + 2
345
+
/// ^^^^^
346
+
/// ```
347
+
/// Only the end bound is spanned, and this function have no idea if there were a `..=` before `pat_span`, hence the parameter.
341
348
#[must_use = "the pattern must be discarded as `PatKind::Err` if this function returns Some"]
0 commit comments