1use std::mem;
23use rustc_ast::token::{self, MetaVarKind, Token, TokenKind};
4use rustc_ast::{
5selfas ast, AngleBracketedArg, AngleBracketedArgs, AnonConst, AssocItemConstraint,
6AssocItemConstraintKind, BlockCheckMode, GenericArg, GenericArgs, Generics, ParenthesizedArgs,
7Path, PathSegment, QSelf,
8};
9use rustc_errors::{Applicability, Diag, PResult};
10use rustc_span::{BytePos, Ident, Span, kw, sym};
11use thin_vec::ThinVec;
12use tracing::debug;
1314use super::ty::{AllowPlus, RecoverQPath, RecoverReturnSign};
15use super::{Parser, Restrictions, TokenType};
16use crate::ast::{PatKind, TyKind};
17use crate::diagnostics::{
18self, ConstGenericWithoutBraces, ConstGenericWithoutBracesSugg, PathFoundAttributeInParams,
19PathFoundCVariadicParams, PathSingleColon, PathTripleColon,
20};
21use crate::exp;
22use crate::parser::{CommaRecoveryMode, Expr, FnContext, FnParseMode, RecoverColon, RecoverComma};
2324/// Specifies how to parse a path.
25#[derive(#[automatically_derived]
impl ::core::marker::Copy for PathStyle { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for PathStyle { }
#[automatically_derived]
impl ::core::clone::Clone for PathStyle {
#[inline]
fn clone(&self) -> Self { *self }
}Clone, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for PathStyle { }
#[automatically_derived]
impl ::core::cmp::PartialEq for PathStyle {
#[inline]
fn eq(&self, other: &Self) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr
}
}PartialEq)]
26pub enum PathStyle {
27/// In some contexts, notably in expressions, paths with generic arguments are ambiguous
28 /// with something else. For example, in expressions `segment < ....` can be interpreted
29 /// as a comparison and `segment ( ....` can be interpreted as a function call.
30 /// In all such contexts the non-path interpretation is preferred by default for practical
31 /// reasons, but the path interpretation can be forced by the disambiguator `::`, e.g.
32 /// `x<y>` - comparisons, `x::<y>` - unambiguously a path.
33 ///
34 /// Also, a path may never be followed by a `:`. This means that we can eagerly recover if
35 /// we encounter it.
36Expr,
37/// The same as `Expr`, but may be followed by a `:`.
38 /// For example, this code:
39 /// ```rust
40 /// struct S;
41 ///
42 /// let S: S;
43 /// // ^ Followed by a `:`
44 /// ```
45Pat,
46/// In other contexts, notably in types, no ambiguity exists and paths can be written
47 /// without the disambiguator, e.g., `x<y>` - unambiguously a path.
48 /// Paths with disambiguators are still accepted, `x::<Y>` - unambiguously a path too.
49Type,
50/// A path with generic arguments disallowed, e.g., `foo::bar::Baz`, used in imports,
51 /// visibilities or attributes.
52 /// Technically, this variant is unnecessary and e.g., `Expr` can be used instead
53 /// (paths in "mod" contexts have to be checked later for absence of generic arguments
54 /// anyway, due to macros), but it is used to avoid weird suggestions about expected
55 /// tokens when something goes wrong.
56Mod,
57}
5859impl PathStyle {
60fn has_generic_ambiguity(&self) -> bool {
61#[allow(non_exhaustive_omitted_patterns)] match self {
Self::Expr | Self::Pat => true,
_ => false,
}matches!(self, Self::Expr | Self::Pat)62 }
63}
6465impl<'a> Parser<'a> {
66/// Parses a qualified path.
67 /// Assumes that the leading `<` has been parsed already.
68 ///
69 /// `qualified_path = <type [as trait_ref]>::path`
70 ///
71 /// # Examples
72 /// `<T>::default`
73 /// `<T as U>::a`
74 /// `<T as U>::F::a<S>` (without disambiguator)
75 /// `<T as U>::F::a::<S>` (with disambiguator)
76pub(super) fn parse_qpath(&mut self, style: PathStyle) -> PResult<'a, (Box<QSelf>, Path)> {
77let lo = self.prev_token.span;
78let ty = self.parse_ty()?;
7980// `path` will contain the prefix of the path up to the `>`,
81 // if any (e.g., `U` in the `<T as U>::*` examples
82 // above). `path_span` has the span of that path, or an empty
83 // span in the case of something like `<T>::Bar`.
84let (mut path, path_span);
85if self.eat_keyword(crate::parser::token_type::ExpKeywordPair {
kw: rustc_span::symbol::kw::As,
token_type: crate::parser::token_type::TokenType::KwAs,
}exp!(As)) {
86let path_lo = self.token.span;
87path = self.parse_path(PathStyle::Type)?;
88path_span = path_lo.to(self.prev_token.span);
89 } else {
90path_span = self.token.span.to(self.token.span);
91path = ast::Path { segments: ThinVec::new(), span: path_span };
92 }
9394// See doc comment for `unmatched_angle_bracket_count`.
95self.expect(crate::parser::token_type::ExpTokenPair {
tok: rustc_ast::token::Gt,
token_type: crate::parser::token_type::TokenType::Gt,
}exp!(Gt))?;
96if self.unmatched_angle_bracket_count > 0 {
97self.unmatched_angle_bracket_count -= 1;
98{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/6bb1652a020e80cef79332741d89e996d71933c9/compiler/rustc_parse/src/parser/path.rs:98",
"rustc_parse::parser::path", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/6bb1652a020e80cef79332741d89e996d71933c9/compiler/rustc_parse/src/parser/path.rs"),
::tracing_core::__macro_support::Option::Some(98u32),
::tracing_core::__macro_support::Option::Some("rustc_parse::parser::path"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("parse_qpath: (decrement) count={0:?}",
self.unmatched_angle_bracket_count) as
&dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("parse_qpath: (decrement) count={:?}", self.unmatched_angle_bracket_count);
99 }
100101let is_import_coupler = self.is_import_coupler();
102if !is_import_coupler && !self.recover_colon_before_qpath_proj() {
103self.expect(crate::parser::token_type::ExpTokenPair {
tok: rustc_ast::token::PathSep,
token_type: crate::parser::token_type::TokenType::PathSep,
}exp!(PathSep))?;
104 }
105106let qself = Box::new(QSelf { ty, path_span, position: path.segments.len() });
107if !is_import_coupler {
108self.parse_path_segments(&mut path.segments, style, None)?;
109 }
110111Ok((qself, Path { segments: path.segments, span: lo.to(self.prev_token.span) }))
112 }
113114/// Recover from an invalid single colon, when the user likely meant a qualified path.
115 /// We avoid emitting this if not followed by an identifier, as our assumption that the user
116 /// intended this to be a qualified path may not be correct.
117 ///
118 /// ```ignore (diagnostics)
119 /// <Bar as Baz<T>>:Qux
120 /// ^ help: use double colon
121 /// ```
122fn recover_colon_before_qpath_proj(&mut self) -> bool {
123if !self.check_noexpect(&TokenKind::Colon)
124 || self.look_ahead(1, |t| !t.is_non_reserved_ident())
125 {
126return false;
127 }
128129self.bump(); // colon
130131self.dcx()
132 .struct_span_err(
133self.prev_token.span,
134"found single colon before projection in qualified path",
135 )
136 .with_span_suggestion(
137self.prev_token.span,
138"use double colon",
139"::",
140 Applicability::MachineApplicable,
141 )
142 .emit();
143144true
145}
146147pub fn parse_path(&mut self, style: PathStyle) -> PResult<'a, Path> {
148self.parse_path_inner(style, None)
149 }
150151/// Parses simple paths.
152 ///
153 /// `path = [::] segment+`
154 /// `segment = ident | ident[::]<args> | ident[::](args) [-> type]`
155 ///
156 /// # Examples
157 /// `a::b::C<D>` (without disambiguator)
158 /// `a::b::C::<D>` (with disambiguator)
159 /// `Fn(Args)` (without disambiguator)
160 /// `Fn::(Args)` (with disambiguator)
161pub(super) fn parse_path_inner(
162&mut self,
163 style: PathStyle,
164 ty_generics: Option<&Generics>,
165 ) -> PResult<'a, Path> {
166let reject_generics_if_mod_style = |parser: &Parser<'_>, path: Path| {
167// Ensure generic arguments don't end up in attribute paths, such as:
168 //
169 // macro_rules! m {
170 // ($p:path) => { #[$p] struct S; }
171 // }
172 //
173 // m!(inline<u8>); //~ ERROR: unexpected generic arguments in path
174 //
175if style == PathStyle::Mod && path.segments.iter().any(|segment| segment.args.is_some())
176 {
177let span = path178 .segments
179 .iter()
180 .filter_map(|segment| segment.args.as_ref())
181 .map(|arg| arg.span())
182 .collect::<Vec<_>>();
183parser.dcx().emit_err(diagnostics::GenericsInPath { span });
184// Ignore these arguments to prevent unexpected behaviors.
185let segments = path186 .segments
187 .iter()
188 .map(|segment| PathSegment { ident: segment.ident, id: segment.id, args: None })
189 .collect();
190Path { segments, ..path }
191 } else {
192path193 }
194 };
195196if let Some(path) =
197self.eat_metavar_seq(MetaVarKind::Path, |this| this.parse_path(PathStyle::Type))
198 {
199return Ok(reject_generics_if_mod_style(self, path));
200 }
201202// If we have a `ty` metavar in the form of a path, reparse it directly as a path, instead
203 // of reparsing it as a `ty` and then extracting the path.
204if let Some(path) = self.eat_metavar_seq(MetaVarKind::Ty { is_path: true }, |this| {
205this.parse_path(PathStyle::Type)
206 }) {
207return Ok(reject_generics_if_mod_style(self, path));
208 }
209210let lo = self.token.span;
211let mut segments = ThinVec::new();
212let mod_sep_ctxt = self.token.span.ctxt();
213if self.eat_path_sep() {
214segments.push(PathSegment::path_root(lo.shrink_to_lo().with_ctxt(mod_sep_ctxt)));
215 }
216self.parse_path_segments(&mut segments, style, ty_generics)?;
217Ok(Path { segments, span: lo.to(self.prev_token.span) })
218 }
219220pub(super) fn parse_path_segments(
221&mut self,
222 segments: &mut ThinVec<PathSegment>,
223 style: PathStyle,
224 ty_generics: Option<&Generics>,
225 ) -> PResult<'a, ()> {
226loop {
227let segment = self.parse_path_segment(style, ty_generics)?;
228if style.has_generic_ambiguity() {
229// In order to check for trailing angle brackets, we must have finished
230 // recursing (`parse_path_segment` can indirectly call this function),
231 // that is, the next token must be the highlighted part of the below example:
232 //
233 // `Foo::<Bar as Baz<T>>::Qux`
234 // ^ here
235 //
236 // As opposed to the below highlight (if we had only finished the first
237 // recursion):
238 //
239 // `Foo::<Bar as Baz<T>>::Qux`
240 // ^ here
241 //
242 // `PathStyle::Expr` is only provided at the root invocation and never in
243 // `parse_path_segment` to recurse and therefore can be checked to maintain
244 // this invariant.
245self.check_trailing_angle_brackets(&segment, &[crate::parser::token_type::ExpTokenPair {
tok: rustc_ast::token::PathSep,
token_type: crate::parser::token_type::TokenType::PathSep,
}exp!(PathSep)]);
246 }
247segments.push(segment);
248249if self.is_import_coupler() || !self.eat_path_sep() {
250// IMPORTANT: We can *only ever* treat single colons as typo'ed double colons in
251 // expression contexts (!) since only there paths cannot possibly be followed by
252 // a colon and still form a syntactically valid construct. In pattern contexts,
253 // a path may be followed by a type annotation. E.g., `let pat:ty`. In type
254 // contexts, a path may be followed by a list of bounds. E.g., `where ty:bound`.
255if self.may_recover()
256 && style == PathStyle::Expr// (!)
257&& self.token == token::Colon258 && self.look_ahead(1, |token| token.is_non_reserved_ident())
259 {
260// Emit a special error message for `a::b:c` to help users
261 // otherwise, `a: c` might have meant to introduce a new binding
262if self.token.span.lo() == self.prev_token.span.hi()
263 && self.look_ahead(1, |token| self.token.span.hi() == token.span.lo())
264 {
265self.bump(); // bump past the colon
266self.dcx().emit_err(PathSingleColon {
267 span: self.prev_token.span,
268 suggestion: self.prev_token.span.shrink_to_hi(),
269 });
270 }
271continue;
272 }
273274return Ok(());
275 }
276 }
277 }
278279/// Eat `::` or, potentially, `:::`.
280#[must_use]
281pub(super) fn eat_path_sep(&mut self) -> bool {
282let result = self.eat(crate::parser::token_type::ExpTokenPair {
tok: rustc_ast::token::PathSep,
token_type: crate::parser::token_type::TokenType::PathSep,
}exp!(PathSep));
283if result && self.may_recover() {
284if self.eat_noexpect(&token::Colon) {
285self.dcx().emit_err(PathTripleColon { span: self.prev_token.span });
286 }
287 }
288result289 }
290291pub(super) fn parse_path_segment(
292&mut self,
293 style: PathStyle,
294 ty_generics: Option<&Generics>,
295 ) -> PResult<'a, PathSegment> {
296let ident = self.parse_path_segment_ident()?;
297let is_args_start = |token: &Token| {
298#[allow(non_exhaustive_omitted_patterns)] match token.kind {
token::Lt | token::Shl | token::OpenParen | token::LArrow => true,
_ => false,
}matches!(token.kind, token::Lt | token::Shl | token::OpenParen | token::LArrow)299 };
300let check_args_start = |this: &mut Self| {
301this.expected_token_types.insert(TokenType::Lt);
302this.expected_token_types.insert(TokenType::OpenParen);
303is_args_start(&this.token)
304 };
305306Ok(
307if style == PathStyle::Type && check_args_start(self)
308 || style != PathStyle::Mod && self.check_path_sep_and_look_ahead(is_args_start)
309 {
310// We use `style == PathStyle::Expr` to check if this is in a recursion or not. If
311 // it isn't, then we reset the unmatched angle bracket count as we're about to start
312 // parsing a new path.
313if style == PathStyle::Expr {
314self.unmatched_angle_bracket_count = 0;
315 }
316317// Generic arguments are found - `<`, `(`, `::<` or `::(`.
318 // First, eat `::` if it exists.
319let _ = self.eat_path_sep();
320321let lo = self.token.span;
322let args = if self.eat_lt() {
323// `<'a, T, A = U>`
324let args = self.parse_angle_args_with_leading_angle_bracket_recovery(
325 style,
326 lo,
327 ty_generics,
328 )?;
329self.expect_gt().map_err(|mut err| {
330// Try to recover a `:` into a `::`
331if self.token == token::Colon
332 && self.look_ahead(1, |token| token.is_non_reserved_ident())
333 {
334 err.cancel();
335 err = self.dcx().create_err(PathSingleColon {
336 span: self.token.span,
337 suggestion: self.prev_token.span.shrink_to_hi(),
338 });
339 }
340// Attempt to find places where a missing `>` might belong.
341else if let Some(arg) = args
342 .iter()
343 .rev()
344 .find(|arg| !#[allow(non_exhaustive_omitted_patterns)] match arg {
AngleBracketedArg::Constraint(_) => true,
_ => false,
}matches!(arg, AngleBracketedArg::Constraint(_)))
345 {
346 err.span_suggestion_verbose(
347 arg.span().shrink_to_hi(),
348"you might have meant to end the type parameters here",
349">",
350 Applicability::MaybeIncorrect,
351 );
352 }
353 err
354 })?;
355let span = lo.to(self.prev_token.span);
356AngleBracketedArgs { args, span }.into()
357 } else if self.token == token::OpenParen358// FIXME(return_type_notation): Could also recover `...` here.
359&& self.look_ahead(1, |t| *t == token::DotDot)
360 {
361self.bump(); // (
362self.bump(); // ..
363self.expect(crate::parser::token_type::ExpTokenPair {
tok: rustc_ast::token::CloseParen,
token_type: crate::parser::token_type::TokenType::CloseParen,
}exp!(CloseParen))?;
364let span = lo.to(self.prev_token.span);
365366self.psess.gated_spans.gate(sym::return_type_notation, span);
367368let prev_lo = self.prev_token.span.shrink_to_hi();
369if self.eat_noexpect(&token::RArrow) {
370let lo = self.prev_token.span;
371let ty = self.parse_ty()?;
372let span = lo.to(ty.span);
373let suggestion = prev_lo.to(ty.span);
374self.dcx().emit_err(diagnostics::BadReturnTypeNotationOutput {
375span,
376suggestion,
377 });
378 }
379380Box::new(ast::GenericArgs::ParenthesizedElided(span))
381 } else {
382// `(T, U) -> R`
383384let prev_token_before_parsing = self.prev_token;
385let token_before_parsing = self.token;
386let mut snapshot = None;
387if self.may_recover()
388 && prev_token_before_parsing == token::PathSep389 && (style == PathStyle::Expr && self.token.can_begin_expr()
390 || style == PathStyle::Pat391 && self.token.can_begin_pattern(token::NtPatKind::PatParam {
392 inferred: false,
393 }))
394 {
395snapshot = Some(self.create_snapshot_for_diagnostic());
396 }
397398let dcx = self.dcx();
399let mut first_param = true;
400let parse_params_result = self.parse_paren_comma_seq(|p| {
401// Inside parenthesized type arguments, we want types only, not names.
402let mode = FnParseMode {
403 context: FnContext::ParenthesizedArgumentList,
404 req_name: |_, _| false,
405 req_body: false,
406 };
407let param = p.parse_param_general(&mode, first_param)?;
408first_param = false;
409if !#[allow(non_exhaustive_omitted_patterns)] match param.pat.kind {
PatKind::Missing => true,
_ => false,
}matches!(param.pat.kind, PatKind::Missing) {
410self.psess
411 .gated_spans
412 .gate(sym::named_fn_trait_parameters, param.pat.span);
413 }
414if #[allow(non_exhaustive_omitted_patterns)] match param.ty.kind {
TyKind::CVarArgs => true,
_ => false,
}matches!(param.ty.kind, TyKind::CVarArgs) {
415dcx.emit_err(PathFoundCVariadicParams { span: param.pat.span });
416 }
417if !param.attrs.is_empty() {
418dcx.emit_err(PathFoundAttributeInParams { span: param.attrs[0].span });
419 }
420Ok(param)
421 });
422423let (inputs, _) = match parse_params_result {
424Ok(output) => output,
425Err(mut error) if prev_token_before_parsing == token::PathSep => {
426error.span_label(
427prev_token_before_parsing.span.to(token_before_parsing.span),
428"while parsing this parenthesized list of type arguments starting here",
429 );
430431if let Some(mut snapshot) = snapshot {
432snapshot.recover_fn_call_leading_path_sep(
433style,
434prev_token_before_parsing,
435&mut error,
436 )
437 }
438439return Err(error);
440 }
441Err(error) => return Err(error),
442 };
443let inputs_span = lo.to(self.prev_token.span);
444let output =
445self.parse_ret_ty(AllowPlus::No, RecoverQPath::No, RecoverReturnSign::No)?;
446let span = ident.span.to(self.prev_token.span);
447ParenthesizedArgs { span, inputs, inputs_span, output }.into()
448 };
449450PathSegment { ident, args: Some(args), id: ast::DUMMY_NODE_ID }
451 } else {
452// Generic arguments are not found.
453PathSegment::from_ident(ident)
454 },
455 )
456 }
457458pub(super) fn parse_path_segment_ident(&mut self) -> PResult<'a, Ident> {
459if let Some(ident) = self.token.non_raw_ident()
460 && ident.is_path_segment_keyword()
461 {
462self.bump();
463Ok(ident)
464 } else {
465self.parse_ident()
466 }
467 }
468469/// Recover `$path::(...)` as `$path(...)`.
470 ///
471 /// ```ignore (diagnostics)
472 /// foo::(420, "bar")
473 /// ^^ remove extra separator to make the function call
474 /// // or
475 /// match x {
476 /// Foo::(420, "bar") => { ... },
477 /// ^^ remove extra separator to turn this into tuple struct pattern
478 /// _ => { ... },
479 /// }
480 /// ```
481fn recover_fn_call_leading_path_sep(
482&mut self,
483 style: PathStyle,
484 prev_token_before_parsing: Token,
485 error: &mut Diag<'_>,
486 ) {
487match style {
488 PathStyle::Expr489if let Ok(_) = self490 .parse_paren_comma_seq(|p| p.parse_expr())
491 .map_err(|error| error.cancel()) => {}
492 PathStyle::Pat493if let Ok(_) = self494 .parse_paren_comma_seq(|p| {
495p.parse_pat_allow_top_guard(
496None,
497 RecoverComma::No,
498 RecoverColon::No,
499 CommaRecoveryMode::LikelyTuple,
500 )
501 })
502 .map_err(|error| error.cancel()) => {}
503_ => {
504return;
505 }
506 }
507508if let token::PathSep | token::RArrow = self.token.kind {
509return;
510 }
511512error.span_suggestion_verbose(
513prev_token_before_parsing.span,
514::alloc::__export::must_use({
::alloc::fmt::format(format_args!("consider removing the `::` here to {0}",
match style {
PathStyle::Expr => "call the expression",
PathStyle::Pat => "turn this into a tuple struct pattern",
_ => { return; }
}))
})format!(
515"consider removing the `::` here to {}",
516match style {
517 PathStyle::Expr => "call the expression",
518 PathStyle::Pat => "turn this into a tuple struct pattern",
519_ => {
520return;
521 }
522 }
523 ),
524"",
525 Applicability::MaybeIncorrect,
526 );
527 }
528529/// Parses generic args (within a path segment) with recovery for extra leading angle brackets.
530 /// For the purposes of understanding the parsing logic of generic arguments, this function
531 /// can be thought of being the same as just calling `self.parse_angle_args()` if the source
532 /// had the correct amount of leading angle brackets.
533 ///
534 /// ```ignore (diagnostics)
535 /// bar::<<<<T as Foo>::Output>();
536 /// ^^ help: remove extra angle brackets
537 /// ```
538fn parse_angle_args_with_leading_angle_bracket_recovery(
539&mut self,
540 style: PathStyle,
541 lo: Span,
542 ty_generics: Option<&Generics>,
543 ) -> PResult<'a, ThinVec<AngleBracketedArg>> {
544// We need to detect whether there are extra leading left angle brackets and produce an
545 // appropriate error and suggestion. This cannot be implemented by looking ahead at
546 // upcoming tokens for a matching `>` character - if there are unmatched `<` tokens
547 // then there won't be matching `>` tokens to find.
548 //
549 // To explain how this detection works, consider the following example:
550 //
551 // ```ignore (diagnostics)
552 // bar::<<<<T as Foo>::Output>();
553 // ^^ help: remove extra angle brackets
554 // ```
555 //
556 // Parsing of the left angle brackets starts in this function. We start by parsing the
557 // `<` token (incrementing the counter of unmatched angle brackets on `Parser` via
558 // `eat_lt`):
559 //
560 // *Upcoming tokens:* `<<<<T as Foo>::Output>;`
561 // *Unmatched count:* 1
562 // *`parse_path_segment` calls deep:* 0
563 //
564 // This has the effect of recursing as this function is called if a `<` character
565 // is found within the expected generic arguments:
566 //
567 // *Upcoming tokens:* `<<<T as Foo>::Output>;`
568 // *Unmatched count:* 2
569 // *`parse_path_segment` calls deep:* 1
570 //
571 // Eventually we will have recursed until having consumed all of the `<` tokens and
572 // this will be reflected in the count:
573 //
574 // *Upcoming tokens:* `T as Foo>::Output>;`
575 // *Unmatched count:* 4
576 // `parse_path_segment` calls deep:* 3
577 //
578 // The parser will continue until reaching the first `>` - this will decrement the
579 // unmatched angle bracket count and return to the parent invocation of this function
580 // having succeeded in parsing:
581 //
582 // *Upcoming tokens:* `::Output>;`
583 // *Unmatched count:* 3
584 // *`parse_path_segment` calls deep:* 2
585 //
586 // This will continue until the next `>` character which will also return successfully
587 // to the parent invocation of this function and decrement the count:
588 //
589 // *Upcoming tokens:* `;`
590 // *Unmatched count:* 2
591 // *`parse_path_segment` calls deep:* 1
592 //
593 // At this point, this function will expect to find another matching `>` character but
594 // won't be able to and will return an error. This will continue all the way up the
595 // call stack until the first invocation:
596 //
597 // *Upcoming tokens:* `;`
598 // *Unmatched count:* 2
599 // *`parse_path_segment` calls deep:* 0
600 //
601 // In doing this, we have managed to work out how many unmatched leading left angle
602 // brackets there are, but we cannot recover as the unmatched angle brackets have
603 // already been consumed. To remedy this, we keep a snapshot of the parser state
604 // before we do the above. We can then inspect whether we ended up with a parsing error
605 // and unmatched left angle brackets and if so, restore the parser state before we
606 // consumed any `<` characters to emit an error and consume the erroneous tokens to
607 // recover by attempting to parse again.
608 //
609 // In practice, the recursion of this function is indirect and there will be other
610 // locations that consume some `<` characters - as long as we update the count when
611 // this happens, it isn't an issue.
612613let is_first_invocation = style == PathStyle::Expr;
614// Take a snapshot before attempting to parse - we can restore this later.
615let snapshot = is_first_invocation.then(|| self.clone());
616617self.angle_bracket_nesting += 1;
618{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/6bb1652a020e80cef79332741d89e996d71933c9/compiler/rustc_parse/src/parser/path.rs:618",
"rustc_parse::parser::path", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/6bb1652a020e80cef79332741d89e996d71933c9/compiler/rustc_parse/src/parser/path.rs"),
::tracing_core::__macro_support::Option::Some(618u32),
::tracing_core::__macro_support::Option::Some("rustc_parse::parser::path"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("parse_generic_args_with_leading_angle_bracket_recovery: (snapshotting)")
as &dyn ::tracing::field::Value))])
});
} else { ; }
};debug!("parse_generic_args_with_leading_angle_bracket_recovery: (snapshotting)");
619match self.parse_angle_args(ty_generics) {
620Ok(args) => {
621self.angle_bracket_nesting -= 1;
622Ok(args)
623 }
624Err(e) if self.angle_bracket_nesting > 10 => {
625self.angle_bracket_nesting -= 1;
626// When encountering severely malformed code where there are several levels of
627 // nested unclosed angle args (`f::<f::<f::<f::<...`), we avoid severe O(n^2)
628 // behavior by bailing out earlier (#117080).
629e.emit_err().raise_fatal();
630 }
631Err(e) if is_first_invocation && self.unmatched_angle_bracket_count > 0 => {
632self.angle_bracket_nesting -= 1;
633634// Swap `self` with our backup of the parser state before attempting to parse
635 // generic arguments.
636let snapshot = mem::replace(self, snapshot.unwrap());
637638// Eat the unmatched angle brackets.
639let all_angle_brackets = (0..snapshot.unmatched_angle_bracket_count)
640 .fold(true, |a, _| a && self.eat_lt());
641642if !all_angle_brackets {
643// If there are other tokens in between the extraneous `<`s, we cannot simply
644 // suggest to remove them. This check also prevents us from accidentally ending
645 // up in the middle of a multibyte character (issue #84104).
646let _ = mem::replace(self, snapshot);
647Err(e)
648 } else {
649// Cancel error from being unable to find `>`. We know the error
650 // must have been this due to a non-zero unmatched angle bracket
651 // count.
652e.cancel();
653654{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/6bb1652a020e80cef79332741d89e996d71933c9/compiler/rustc_parse/src/parser/path.rs:654",
"rustc_parse::parser::path", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("/rustc-dev/6bb1652a020e80cef79332741d89e996d71933c9/compiler/rustc_parse/src/parser/path.rs"),
::tracing_core::__macro_support::Option::Some(654u32),
::tracing_core::__macro_support::Option::Some("rustc_parse::parser::path"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("parse_generic_args_with_leading_angle_bracket_recovery: (snapshot failure) snapshot.count={0:?}",
snapshot.unmatched_angle_bracket_count) as
&dyn ::tracing::field::Value))])
});
} else { ; }
};debug!(
655"parse_generic_args_with_leading_angle_bracket_recovery: (snapshot failure) \
656 snapshot.count={:?}",
657 snapshot.unmatched_angle_bracket_count,
658 );
659660// Make a span over ${unmatched angle bracket count} characters.
661 // This is safe because `all_angle_brackets` ensures that there are only `<`s,
662 // i.e. no multibyte characters, in this range.
663let span = lo664 .with_hi(lo.lo() + BytePos(snapshot.unmatched_angle_bracket_count.into()));
665self.dcx().emit_err(diagnostics::UnmatchedAngle {
666span,
667 plural: snapshot.unmatched_angle_bracket_count > 1,
668 });
669670// Try again without unmatched angle bracket characters.
671self.parse_angle_args(ty_generics)
672 }
673 }
674Err(e) => {
675self.angle_bracket_nesting -= 1;
676Err(e)
677 }
678 }
679 }
680681/// Parses (possibly empty) list of generic arguments / associated item constraints,
682 /// possibly including trailing comma.
683pub(super) fn parse_angle_args(
684&mut self,
685 ty_generics: Option<&Generics>,
686 ) -> PResult<'a, ThinVec<AngleBracketedArg>> {
687let mut args = ThinVec::new();
688while let Some(arg) = self.parse_angle_arg(ty_generics)? {
689 args.push(arg);
690if !self.eat(crate::parser::token_type::ExpTokenPair {
tok: rustc_ast::token::Comma,
token_type: crate::parser::token_type::TokenType::Comma,
}exp!(Comma)) {
691if self.check_noexpect(&TokenKind::Semi)
692 && self.look_ahead(1, |t| t.is_ident() || t.is_lifetime())
693 {
694// Add `>` to the list of expected tokens.
695self.check(crate::parser::token_type::ExpTokenPair {
tok: rustc_ast::token::Gt,
token_type: crate::parser::token_type::TokenType::Gt,
}exp!(Gt));
696// Handle `,` to `;` substitution
697let mut err = self.unexpected().unwrap_err();
698self.bump();
699 err.span_suggestion_verbose(
700self.prev_token.span.until(self.token.span),
701"use a comma to separate type parameters",
702", ",
703 Applicability::MachineApplicable,
704 );
705 err.emit();
706continue;
707 }
708if !self.token.kind.should_end_const_arg()
709 && self.handle_ambiguous_unbraced_const_arg(&mut args)?
710{
711// We've managed to (partially) recover, so continue trying to parse
712 // arguments.
713continue;
714 }
715break;
716 }
717 }
718Ok(args)
719 }
720721/// Parses a single argument in the angle arguments `<...>` of a path segment.
722fn parse_angle_arg(
723&mut self,
724 ty_generics: Option<&Generics>,
725 ) -> PResult<'a, Option<AngleBracketedArg>> {
726let lo = self.token.span;
727let arg = self.parse_generic_arg(ty_generics)?;
728match arg {
729Some(arg) => {
730// we are using noexpect here because we first want to find out if either `=` or `:`
731 // is present and then use that info to push the other token onto the tokens list
732let separated =
733self.check_noexpect(&token::Colon) || self.check_noexpect(&token::Eq);
734if separated && (self.check(crate::parser::token_type::ExpTokenPair {
tok: rustc_ast::token::Colon,
token_type: crate::parser::token_type::TokenType::Colon,
}exp!(Colon)) | self.check(crate::parser::token_type::ExpTokenPair {
tok: rustc_ast::token::Eq,
token_type: crate::parser::token_type::TokenType::Eq,
}exp!(Eq))) {
735let arg_span = arg.span();
736let (binder, ident, gen_args) = match self.get_ident_from_generic_arg(&arg) {
737Ok(ident_gen_args) => ident_gen_args,
738Err(()) => return Ok(Some(AngleBracketedArg::Arg(arg))),
739 };
740if binder {
741// FIXME(compiler-errors): this could be improved by suggesting lifting
742 // this up to the trait, at least before this becomes real syntax.
743 // e.g. `Trait<for<'a> Assoc = Ty>` -> `for<'a> Trait<Assoc = Ty>`
744return Err(self.dcx().struct_span_err(
745arg_span,
746"`for<...>` is not allowed on associated type bounds",
747 ));
748 }
749let kind = if self.eat(crate::parser::token_type::ExpTokenPair {
tok: rustc_ast::token::Colon,
token_type: crate::parser::token_type::TokenType::Colon,
}exp!(Colon)) {
750 AssocItemConstraintKind::Bound { bounds: self.parse_generic_bounds()? }
751 } else if self.check(crate::parser::token_type::ExpTokenPair {
tok: rustc_ast::token::Eq,
token_type: crate::parser::token_type::TokenType::Eq,
}exp!(Eq)) {
752self.parse_assoc_equality_term(ident, gen_args.as_ref())?
753} else {
754::core::panicking::panic("internal error: entered unreachable code");unreachable!();
755 };
756757let span = lo.to(self.prev_token.span);
758let constraint =
759AssocItemConstraint { id: ast::DUMMY_NODE_ID, ident, gen_args, kind, span };
760Ok(Some(AngleBracketedArg::Constraint(constraint)))
761 } else {
762// we only want to suggest `:` and `=` in contexts where the previous token
763 // is an ident and the current token or the next token is an ident
764if self.prev_token.is_ident()
765 && (self.token.is_ident() || self.look_ahead(1, |token| token.is_ident()))
766 {
767self.check(crate::parser::token_type::ExpTokenPair {
tok: rustc_ast::token::Colon,
token_type: crate::parser::token_type::TokenType::Colon,
}exp!(Colon));
768self.check(crate::parser::token_type::ExpTokenPair {
tok: rustc_ast::token::Eq,
token_type: crate::parser::token_type::TokenType::Eq,
}exp!(Eq));
769 }
770Ok(Some(AngleBracketedArg::Arg(arg)))
771 }
772 }
773_ => Ok(None),
774 }
775 }
776777/// Parse the term to the right of an associated item equality constraint.
778 ///
779 /// That is, parse `$term` in `Item = $term` where `$term` is a type or
780 /// a const expression (wrapped in curly braces if complex).
781fn parse_assoc_equality_term(
782&mut self,
783 ident: Ident,
784 gen_args: Option<&GenericArgs>,
785 ) -> PResult<'a, AssocItemConstraintKind> {
786let prev_token_span = self.prev_token.span;
787let eq_span = self.token.span;
788self.expect(crate::parser::token_type::ExpTokenPair {
tok: rustc_ast::token::Eq,
token_type: crate::parser::token_type::TokenType::Eq,
}exp!(Eq))?;
789let arg = self.parse_generic_arg(None)?;
790let span = ident.span.to(self.prev_token.span);
791let term = match arg {
792Some(GenericArg::Type(ty)) => ty.into(),
793Some(GenericArg::Const(c)) => {
794self.psess.gated_spans.gate(sym::associated_const_equality, span);
795c.into()
796 }
797Some(GenericArg::Lifetime(lt)) => {
798let guar = self.dcx().emit_err(diagnostics::LifetimeInEqConstraint {
799 span: lt.ident.span,
800 lifetime: lt.ident,
801 binding_label: span,
802 colon_sugg: gen_args803 .map_or(ident.span, |args| args.span())
804 .between(lt.ident.span),
805 });
806self.mk_ty(lt.ident.span, ast::TyKind::Err(guar)).into()
807 }
808None => {
809let after_eq = eq_span.shrink_to_hi();
810let before_next = self.token.span.shrink_to_lo();
811let mut err = self812 .dcx()
813 .struct_span_err(after_eq.to(before_next), "missing type to the right of `=`");
814if #[allow(non_exhaustive_omitted_patterns)] match self.token.kind {
token::Comma | token::Gt => true,
_ => false,
}matches!(self.token.kind, token::Comma | token::Gt) {
815err.span_suggestion_verbose(
816self.psess.source_map().next_point(eq_span).to(before_next),
817"to constrain the associated type, add a type after `=`",
818" TheType",
819 Applicability::HasPlaceholders,
820 );
821err.span_suggestion_verbose(
822prev_token_span.shrink_to_hi().to(before_next),
823::alloc::__export::must_use({
::alloc::fmt::format(format_args!("remove the `=` if `{0}` is a type",
ident))
})format!("remove the `=` if `{ident}` is a type"),
824"",
825 Applicability::MaybeIncorrect,
826 )
827 } else {
828err.span_label(
829self.token.span,
830::alloc::__export::must_use({
::alloc::fmt::format(format_args!("expected type, found {0}",
super::token_descr(&self.token)))
})format!("expected type, found {}", super::token_descr(&self.token)),
831 )
832 };
833return Err(err);
834 }
835 };
836Ok(AssocItemConstraintKind::Equality { term })
837 }
838839/// We do not permit arbitrary expressions as const arguments. They must be one of:
840 /// - An expression surrounded in `{}`.
841 /// - A literal.
842 /// - A numeric literal prefixed by `-`.
843 /// - A single-segment path.
844 /// - A const block (under mGCA)
845pub(super) fn expr_is_valid_const_arg(&self, expr: &Box<rustc_ast::Expr>) -> bool {
846match &expr.kind {
847 ast::ExprKind::Block(_, _)
848 | ast::ExprKind::Lit(_)
849 | ast::ExprKind::IncludedBytes(..) => true,
850 ast::ExprKind::Unary(ast::UnOp::Neg, expr) => {
851#[allow(non_exhaustive_omitted_patterns)] match expr.kind {
ast::ExprKind::Lit(_) => true,
_ => false,
}matches!(expr.kind, ast::ExprKind::Lit(_))852 }
853// We can only resolve single-segment paths at the moment, because multi-segment paths
854 // require type-checking: see `visit_generic_arg` in `src/librustc_resolve/late.rs`.
855ast::ExprKind::Path(None, path)
856if let [segment] = path.segments.as_slice()
857 && segment.args.is_none() =>
858 {
859true
860}
861 ast::ExprKind::ConstBlock(_) => {
862self.psess.gated_spans.gate(sym::min_generic_const_args, expr.span);
863true
864}
865_ => false,
866 }
867 }
868869/// Parse a const argument, e.g. `<3>`. It is assumed the angle brackets will be parsed by
870 /// the caller.
871pub(super) fn parse_const_arg(&mut self) -> PResult<'a, AnonConst> {
872// Parse const argument.
873let value = if self.token.kind == token::OpenBrace {
874self.parse_expr_block(None, self.token.span, BlockCheckMode::Default)?
875} else {
876self.parse_unambiguous_unbraced_const_arg()?
877};
878Ok(AnonConst { id: ast::DUMMY_NODE_ID, value })
879 }
880881/// Attempt to parse a const argument that has not been enclosed in braces.
882 /// There are a limited number of expressions that are permitted without being
883 /// enclosed in braces:
884 /// - Literals.
885 /// - Single-segment paths (i.e. standalone generic const parameters).
886 /// All other expressions that can be parsed will emit an error suggesting the expression be
887 /// wrapped in braces.
888pub(super) fn parse_unambiguous_unbraced_const_arg(&mut self) -> PResult<'a, Box<Expr>> {
889let start = self.token.span;
890let expr = self.parse_expr_res(Restrictions::CONST_EXPR).map_err(|mut err| {
891 err.span_label(
892 start.shrink_to_lo(),
893"while parsing a const generic argument starting here",
894 );
895 err
896 })?;
897if !self.expr_is_valid_const_arg(&expr) {
898return Err(self.dcx().create_err(ConstGenericWithoutBraces {
899 span: expr.span,
900 sugg: ConstGenericWithoutBracesSugg {
901 left: expr.span.shrink_to_lo(),
902 right: expr.span.shrink_to_hi(),
903 },
904 }));
905 }
906907Ok(expr)
908 }
909910/// Parse a generic argument in a path segment.
911 /// This does not include constraints, e.g., `Item = u8`, which is handled in `parse_angle_arg`.
912pub(super) fn parse_generic_arg(
913&mut self,
914 ty_generics: Option<&Generics>,
915 ) -> PResult<'a, Option<GenericArg>> {
916self.recover_from_outer_attributes("generic arguments")?;
917918let start = self.token.span;
919let arg = if self.check_lifetime() && self.look_ahead(1, |t| !t.is_like_plus()) {
920// Parse lifetime argument.
921GenericArg::Lifetime(self.expect_lifetime())
922 } else if self.check_const_arg() {
923// Parse const argument.
924GenericArg::Const(self.parse_const_arg()?)
925 } else if self.check_type() {
926// Parse type argument.
927928 // Proactively create a parser snapshot enabling us to rewind and try to reparse the
929 // input as a const expression in case we fail to parse a type. If we successfully
930 // do so, we will report an error that it needs to be wrapped in braces.
931let mut snapshot = None;
932if self.may_recover() && self.token.can_begin_expr() {
933snapshot = Some(self.create_snapshot_for_diagnostic());
934 }
935936match self.parse_ty() {
937Ok(ty) => GenericArg::Type(ty),
938Err(err) => {
939if let Some(snapshot) = snapshot940 && let Some(expr) =
941self.recover_unbraced_const_arg_that_can_begin_ty(snapshot)
942 {
943return Ok(Some(self.dummy_const_arg_needs_braces(err, expr.span)));
944 }
945// Try to recover from possible `const` arg without braces.
946return self.recover_const_arg(start, err).map(Some);
947 }
948 }
949 } else if self.token.is_keyword(kw::Const) {
950return self.recover_const_param_declaration(ty_generics);
951 } else {
952// Fall back by trying to parse a const-expr expression. If we successfully do so,
953 // then we should report an error that it needs to be wrapped in braces.
954let snapshot = self.create_snapshot_for_diagnostic();
955match self.parse_expr_res(Restrictions::CONST_EXPR) {
956Ok(expr) => {
957return Ok(Some(self.dummy_const_arg_needs_braces(
958self.dcx().struct_span_err(expr.span, "invalid const generic expression"),
959expr.span,
960 )));
961 }
962Err(err) => {
963self.restore_snapshot(snapshot);
964err.cancel();
965return Ok(None);
966 }
967 }
968 };
969970Ok(Some(arg))
971 }
972973/// Given a arg inside of generics, we try to destructure it as if it were the LHS in
974 /// `LHS = ...`, i.e. an associated item binding.
975 /// This returns a bool indicating if there are any `for<'a, 'b>` binder args, the
976 /// identifier, and any GAT arguments.
977fn get_ident_from_generic_arg(
978&self,
979 gen_arg: &GenericArg,
980 ) -> Result<(bool, Ident, Option<GenericArgs>), ()> {
981if let GenericArg::Type(ty) = gen_arg {
982if let ast::TyKind::Path(qself, path) = &ty.kind
983 && qself.is_none()
984 && let [seg] = path.segments.as_slice()
985 {
986return Ok((false, seg.ident, seg.args.as_deref().cloned()));
987 } else if let ast::TyKind::TraitObject(bounds, ast::TraitObjectSyntax::None) = &ty.kind
988 && let [ast::GenericBound::Trait(trait_ref)] = bounds.as_slice()
989 && trait_ref.modifiers == ast::TraitBoundModifiers::NONE990 && let [seg] = trait_ref.trait_ref.path.segments.as_slice()
991 {
992return Ok((true, seg.ident, seg.args.as_deref().cloned()));
993 }
994 }
995Err(())
996 }
997}