]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_parse/src/parser/path.rs
Rollup merge of #104558 - thomcc:unalign-diriter, r=ChrisDenton
[rust.git] / compiler / rustc_parse / src / parser / path.rs
1 use super::ty::{AllowPlus, RecoverQPath, RecoverReturnSign};
2 use super::{Parser, Restrictions, TokenType};
3 use crate::maybe_whole;
4 use rustc_ast::ptr::P;
5 use rustc_ast::token::{self, Delimiter, Token, TokenKind};
6 use rustc_ast::{
7     self as ast, AngleBracketedArg, AngleBracketedArgs, AnonConst, AssocConstraint,
8     AssocConstraintKind, BlockCheckMode, GenericArg, GenericArgs, Generics, ParenthesizedArgs,
9     Path, PathSegment, QSelf,
10 };
11 use rustc_errors::{pluralize, Applicability, PResult};
12 use rustc_span::source_map::{BytePos, Span};
13 use rustc_span::symbol::{kw, sym, Ident};
14 use std::mem;
15 use thin_vec::ThinVec;
16 use tracing::debug;
17
18 /// Specifies how to parse a path.
19 #[derive(Copy, Clone, PartialEq)]
20 pub enum PathStyle {
21     /// In some contexts, notably in expressions, paths with generic arguments are ambiguous
22     /// with something else. For example, in expressions `segment < ....` can be interpreted
23     /// as a comparison and `segment ( ....` can be interpreted as a function call.
24     /// In all such contexts the non-path interpretation is preferred by default for practical
25     /// reasons, but the path interpretation can be forced by the disambiguator `::`, e.g.
26     /// `x<y>` - comparisons, `x::<y>` - unambiguously a path.
27     Expr,
28     /// In other contexts, notably in types, no ambiguity exists and paths can be written
29     /// without the disambiguator, e.g., `x<y>` - unambiguously a path.
30     /// Paths with disambiguators are still accepted, `x::<Y>` - unambiguously a path too.
31     Type,
32     /// A path with generic arguments disallowed, e.g., `foo::bar::Baz`, used in imports,
33     /// visibilities or attributes.
34     /// Technically, this variant is unnecessary and e.g., `Expr` can be used instead
35     /// (paths in "mod" contexts have to be checked later for absence of generic arguments
36     /// anyway, due to macros), but it is used to avoid weird suggestions about expected
37     /// tokens when something goes wrong.
38     Mod,
39 }
40
41 impl<'a> Parser<'a> {
42     /// Parses a qualified path.
43     /// Assumes that the leading `<` has been parsed already.
44     ///
45     /// `qualified_path = <type [as trait_ref]>::path`
46     ///
47     /// # Examples
48     /// `<T>::default`
49     /// `<T as U>::a`
50     /// `<T as U>::F::a<S>` (without disambiguator)
51     /// `<T as U>::F::a::<S>` (with disambiguator)
52     pub(super) fn parse_qpath(&mut self, style: PathStyle) -> PResult<'a, (P<QSelf>, Path)> {
53         let lo = self.prev_token.span;
54         let ty = self.parse_ty()?;
55
56         // `path` will contain the prefix of the path up to the `>`,
57         // if any (e.g., `U` in the `<T as U>::*` examples
58         // above). `path_span` has the span of that path, or an empty
59         // span in the case of something like `<T>::Bar`.
60         let (mut path, path_span);
61         if self.eat_keyword(kw::As) {
62             let path_lo = self.token.span;
63             path = self.parse_path(PathStyle::Type)?;
64             path_span = path_lo.to(self.prev_token.span);
65         } else {
66             path_span = self.token.span.to(self.token.span);
67             path = ast::Path { segments: ThinVec::new(), span: path_span, tokens: None };
68         }
69
70         // See doc comment for `unmatched_angle_bracket_count`.
71         self.expect(&token::Gt)?;
72         if self.unmatched_angle_bracket_count > 0 {
73             self.unmatched_angle_bracket_count -= 1;
74             debug!("parse_qpath: (decrement) count={:?}", self.unmatched_angle_bracket_count);
75         }
76
77         if !self.recover_colon_before_qpath_proj() {
78             self.expect(&token::ModSep)?;
79         }
80
81         let qself = P(QSelf { ty, path_span, position: path.segments.len() });
82         self.parse_path_segments(&mut path.segments, style, None)?;
83
84         Ok((
85             qself,
86             Path { segments: path.segments, span: lo.to(self.prev_token.span), tokens: None },
87         ))
88     }
89
90     /// Recover from an invalid single colon, when the user likely meant a qualified path.
91     /// We avoid emitting this if not followed by an identifier, as our assumption that the user
92     /// intended this to be a qualified path may not be correct.
93     ///
94     /// ```ignore (diagnostics)
95     /// <Bar as Baz<T>>:Qux
96     ///                ^ help: use double colon
97     /// ```
98     fn recover_colon_before_qpath_proj(&mut self) -> bool {
99         if !self.check_noexpect(&TokenKind::Colon)
100             || self.look_ahead(1, |t| !t.is_ident() || t.is_reserved_ident())
101         {
102             return false;
103         }
104
105         self.bump(); // colon
106
107         self.diagnostic()
108             .struct_span_err(
109                 self.prev_token.span,
110                 "found single colon before projection in qualified path",
111             )
112             .span_suggestion(
113                 self.prev_token.span,
114                 "use double colon",
115                 "::",
116                 Applicability::MachineApplicable,
117             )
118             .emit();
119
120         true
121     }
122
123     pub(super) fn parse_path(&mut self, style: PathStyle) -> PResult<'a, Path> {
124         self.parse_path_inner(style, None)
125     }
126
127     /// Parses simple paths.
128     ///
129     /// `path = [::] segment+`
130     /// `segment = ident | ident[::]<args> | ident[::](args) [-> type]`
131     ///
132     /// # Examples
133     /// `a::b::C<D>` (without disambiguator)
134     /// `a::b::C::<D>` (with disambiguator)
135     /// `Fn(Args)` (without disambiguator)
136     /// `Fn::(Args)` (with disambiguator)
137     pub(super) fn parse_path_inner(
138         &mut self,
139         style: PathStyle,
140         ty_generics: Option<&Generics>,
141     ) -> PResult<'a, Path> {
142         let reject_generics_if_mod_style = |parser: &Parser<'_>, path: &Path| {
143             // Ensure generic arguments don't end up in attribute paths, such as:
144             //
145             //     macro_rules! m {
146             //         ($p:path) => { #[$p] struct S; }
147             //     }
148             //
149             //     m!(inline<u8>); //~ ERROR: unexpected generic arguments in path
150             //
151             if style == PathStyle::Mod && path.segments.iter().any(|segment| segment.args.is_some())
152             {
153                 parser
154                     .struct_span_err(
155                         path.segments
156                             .iter()
157                             .filter_map(|segment| segment.args.as_ref())
158                             .map(|arg| arg.span())
159                             .collect::<Vec<_>>(),
160                         "unexpected generic arguments in path",
161                     )
162                     .emit();
163             }
164         };
165
166         maybe_whole!(self, NtPath, |path| {
167             reject_generics_if_mod_style(self, &path);
168             path.into_inner()
169         });
170
171         if let token::Interpolated(nt) = &self.token.kind {
172             if let token::NtTy(ty) = &**nt {
173                 if let ast::TyKind::Path(None, path) = &ty.kind {
174                     let path = path.clone();
175                     self.bump();
176                     reject_generics_if_mod_style(self, &path);
177                     return Ok(path);
178                 }
179             }
180         }
181
182         let lo = self.token.span;
183         let mut segments = ThinVec::new();
184         let mod_sep_ctxt = self.token.span.ctxt();
185         if self.eat(&token::ModSep) {
186             segments.push(PathSegment::path_root(lo.shrink_to_lo().with_ctxt(mod_sep_ctxt)));
187         }
188         self.parse_path_segments(&mut segments, style, ty_generics)?;
189
190         Ok(Path { segments, span: lo.to(self.prev_token.span), tokens: None })
191     }
192
193     pub(super) fn parse_path_segments(
194         &mut self,
195         segments: &mut ThinVec<PathSegment>,
196         style: PathStyle,
197         ty_generics: Option<&Generics>,
198     ) -> PResult<'a, ()> {
199         loop {
200             let segment = self.parse_path_segment(style, ty_generics)?;
201             if style == PathStyle::Expr {
202                 // In order to check for trailing angle brackets, we must have finished
203                 // recursing (`parse_path_segment` can indirectly call this function),
204                 // that is, the next token must be the highlighted part of the below example:
205                 //
206                 // `Foo::<Bar as Baz<T>>::Qux`
207                 //                      ^ here
208                 //
209                 // As opposed to the below highlight (if we had only finished the first
210                 // recursion):
211                 //
212                 // `Foo::<Bar as Baz<T>>::Qux`
213                 //                     ^ here
214                 //
215                 // `PathStyle::Expr` is only provided at the root invocation and never in
216                 // `parse_path_segment` to recurse and therefore can be checked to maintain
217                 // this invariant.
218                 self.check_trailing_angle_brackets(&segment, &[&token::ModSep]);
219             }
220             segments.push(segment);
221
222             if self.is_import_coupler() || !self.eat(&token::ModSep) {
223                 return Ok(());
224             }
225         }
226     }
227
228     pub(super) fn parse_path_segment(
229         &mut self,
230         style: PathStyle,
231         ty_generics: Option<&Generics>,
232     ) -> PResult<'a, PathSegment> {
233         let ident = self.parse_path_segment_ident()?;
234         let is_args_start = |token: &Token| {
235             matches!(
236                 token.kind,
237                 token::Lt
238                     | token::BinOp(token::Shl)
239                     | token::OpenDelim(Delimiter::Parenthesis)
240                     | token::LArrow
241             )
242         };
243         let check_args_start = |this: &mut Self| {
244             this.expected_tokens.extend_from_slice(&[
245                 TokenType::Token(token::Lt),
246                 TokenType::Token(token::OpenDelim(Delimiter::Parenthesis)),
247             ]);
248             is_args_start(&this.token)
249         };
250
251         Ok(
252             if style == PathStyle::Type && check_args_start(self)
253                 || style != PathStyle::Mod
254                     && self.check(&token::ModSep)
255                     && self.look_ahead(1, |t| is_args_start(t))
256             {
257                 // We use `style == PathStyle::Expr` to check if this is in a recursion or not. If
258                 // it isn't, then we reset the unmatched angle bracket count as we're about to start
259                 // parsing a new path.
260                 if style == PathStyle::Expr {
261                     self.unmatched_angle_bracket_count = 0;
262                     self.max_angle_bracket_count = 0;
263                 }
264
265                 // Generic arguments are found - `<`, `(`, `::<` or `::(`.
266                 self.eat(&token::ModSep);
267                 let lo = self.token.span;
268                 let args = if self.eat_lt() {
269                     // `<'a, T, A = U>`
270                     let args = self.parse_angle_args_with_leading_angle_bracket_recovery(
271                         style,
272                         lo,
273                         ty_generics,
274                     )?;
275                     self.expect_gt().map_err(|mut err| {
276                         // Attempt to find places where a missing `>` might belong.
277                         if let Some(arg) = args
278                             .iter()
279                             .rev()
280                             .skip_while(|arg| matches!(arg, AngleBracketedArg::Constraint(_)))
281                             .next()
282                         {
283                             err.span_suggestion_verbose(
284                                 arg.span().shrink_to_hi(),
285                                 "you might have meant to end the type parameters here",
286                                 ">",
287                                 Applicability::MaybeIncorrect,
288                             );
289                         }
290                         err
291                     })?;
292                     let span = lo.to(self.prev_token.span);
293                     AngleBracketedArgs { args, span }.into()
294                 } else {
295                     // `(T, U) -> R`
296                     let (inputs, _) = self.parse_paren_comma_seq(|p| p.parse_ty())?;
297                     let inputs_span = lo.to(self.prev_token.span);
298                     let output =
299                         self.parse_ret_ty(AllowPlus::No, RecoverQPath::No, RecoverReturnSign::No)?;
300                     let span = ident.span.to(self.prev_token.span);
301                     ParenthesizedArgs { span, inputs, inputs_span, output }.into()
302                 };
303
304                 PathSegment { ident, args, id: ast::DUMMY_NODE_ID }
305             } else {
306                 // Generic arguments are not found.
307                 PathSegment::from_ident(ident)
308             },
309         )
310     }
311
312     pub(super) fn parse_path_segment_ident(&mut self) -> PResult<'a, Ident> {
313         match self.token.ident() {
314             Some((ident, false)) if ident.is_path_segment_keyword() => {
315                 self.bump();
316                 Ok(ident)
317             }
318             _ => self.parse_ident(),
319         }
320     }
321
322     /// Parses generic args (within a path segment) with recovery for extra leading angle brackets.
323     /// For the purposes of understanding the parsing logic of generic arguments, this function
324     /// can be thought of being the same as just calling `self.parse_angle_args()` if the source
325     /// had the correct amount of leading angle brackets.
326     ///
327     /// ```ignore (diagnostics)
328     /// bar::<<<<T as Foo>::Output>();
329     ///      ^^ help: remove extra angle brackets
330     /// ```
331     fn parse_angle_args_with_leading_angle_bracket_recovery(
332         &mut self,
333         style: PathStyle,
334         lo: Span,
335         ty_generics: Option<&Generics>,
336     ) -> PResult<'a, Vec<AngleBracketedArg>> {
337         // We need to detect whether there are extra leading left angle brackets and produce an
338         // appropriate error and suggestion. This cannot be implemented by looking ahead at
339         // upcoming tokens for a matching `>` character - if there are unmatched `<` tokens
340         // then there won't be matching `>` tokens to find.
341         //
342         // To explain how this detection works, consider the following example:
343         //
344         // ```ignore (diagnostics)
345         // bar::<<<<T as Foo>::Output>();
346         //      ^^ help: remove extra angle brackets
347         // ```
348         //
349         // Parsing of the left angle brackets starts in this function. We start by parsing the
350         // `<` token (incrementing the counter of unmatched angle brackets on `Parser` via
351         // `eat_lt`):
352         //
353         // *Upcoming tokens:* `<<<<T as Foo>::Output>;`
354         // *Unmatched count:* 1
355         // *`parse_path_segment` calls deep:* 0
356         //
357         // This has the effect of recursing as this function is called if a `<` character
358         // is found within the expected generic arguments:
359         //
360         // *Upcoming tokens:* `<<<T as Foo>::Output>;`
361         // *Unmatched count:* 2
362         // *`parse_path_segment` calls deep:* 1
363         //
364         // Eventually we will have recursed until having consumed all of the `<` tokens and
365         // this will be reflected in the count:
366         //
367         // *Upcoming tokens:* `T as Foo>::Output>;`
368         // *Unmatched count:* 4
369         // `parse_path_segment` calls deep:* 3
370         //
371         // The parser will continue until reaching the first `>` - this will decrement the
372         // unmatched angle bracket count and return to the parent invocation of this function
373         // having succeeded in parsing:
374         //
375         // *Upcoming tokens:* `::Output>;`
376         // *Unmatched count:* 3
377         // *`parse_path_segment` calls deep:* 2
378         //
379         // This will continue until the next `>` character which will also return successfully
380         // to the parent invocation of this function and decrement the count:
381         //
382         // *Upcoming tokens:* `;`
383         // *Unmatched count:* 2
384         // *`parse_path_segment` calls deep:* 1
385         //
386         // At this point, this function will expect to find another matching `>` character but
387         // won't be able to and will return an error. This will continue all the way up the
388         // call stack until the first invocation:
389         //
390         // *Upcoming tokens:* `;`
391         // *Unmatched count:* 2
392         // *`parse_path_segment` calls deep:* 0
393         //
394         // In doing this, we have managed to work out how many unmatched leading left angle
395         // brackets there are, but we cannot recover as the unmatched angle brackets have
396         // already been consumed. To remedy this, we keep a snapshot of the parser state
397         // before we do the above. We can then inspect whether we ended up with a parsing error
398         // and unmatched left angle brackets and if so, restore the parser state before we
399         // consumed any `<` characters to emit an error and consume the erroneous tokens to
400         // recover by attempting to parse again.
401         //
402         // In practice, the recursion of this function is indirect and there will be other
403         // locations that consume some `<` characters - as long as we update the count when
404         // this happens, it isn't an issue.
405
406         let is_first_invocation = style == PathStyle::Expr;
407         // Take a snapshot before attempting to parse - we can restore this later.
408         let snapshot = if is_first_invocation { Some(self.clone()) } else { None };
409
410         debug!("parse_generic_args_with_leading_angle_bracket_recovery: (snapshotting)");
411         match self.parse_angle_args(ty_generics) {
412             Ok(args) => Ok(args),
413             Err(e) if is_first_invocation && self.unmatched_angle_bracket_count > 0 => {
414                 // Swap `self` with our backup of the parser state before attempting to parse
415                 // generic arguments.
416                 let snapshot = mem::replace(self, snapshot.unwrap());
417
418                 // Eat the unmatched angle brackets.
419                 let all_angle_brackets = (0..snapshot.unmatched_angle_bracket_count)
420                     .fold(true, |a, _| a && self.eat_lt());
421
422                 if !all_angle_brackets {
423                     // If there are other tokens in between the extraneous `<`s, we cannot simply
424                     // suggest to remove them. This check also prevents us from accidentally ending
425                     // up in the middle of a multibyte character (issue #84104).
426                     let _ = mem::replace(self, snapshot);
427                     Err(e)
428                 } else {
429                     // Cancel error from being unable to find `>`. We know the error
430                     // must have been this due to a non-zero unmatched angle bracket
431                     // count.
432                     e.cancel();
433
434                     debug!(
435                         "parse_generic_args_with_leading_angle_bracket_recovery: (snapshot failure) \
436                          snapshot.count={:?}",
437                         snapshot.unmatched_angle_bracket_count,
438                     );
439
440                     // Make a span over ${unmatched angle bracket count} characters.
441                     // This is safe because `all_angle_brackets` ensures that there are only `<`s,
442                     // i.e. no multibyte characters, in this range.
443                     let span =
444                         lo.with_hi(lo.lo() + BytePos(snapshot.unmatched_angle_bracket_count));
445                     self.struct_span_err(
446                         span,
447                         &format!(
448                             "unmatched angle bracket{}",
449                             pluralize!(snapshot.unmatched_angle_bracket_count)
450                         ),
451                     )
452                     .span_suggestion(
453                         span,
454                         &format!(
455                             "remove extra angle bracket{}",
456                             pluralize!(snapshot.unmatched_angle_bracket_count)
457                         ),
458                         "",
459                         Applicability::MachineApplicable,
460                     )
461                     .emit();
462
463                     // Try again without unmatched angle bracket characters.
464                     self.parse_angle_args(ty_generics)
465                 }
466             }
467             Err(e) => Err(e),
468         }
469     }
470
471     /// Parses (possibly empty) list of generic arguments / associated item constraints,
472     /// possibly including trailing comma.
473     pub(super) fn parse_angle_args(
474         &mut self,
475         ty_generics: Option<&Generics>,
476     ) -> PResult<'a, Vec<AngleBracketedArg>> {
477         let mut args = Vec::new();
478         while let Some(arg) = self.parse_angle_arg(ty_generics)? {
479             args.push(arg);
480             if !self.eat(&token::Comma) {
481                 if self.check_noexpect(&TokenKind::Semi)
482                     && self.look_ahead(1, |t| t.is_ident() || t.is_lifetime())
483                 {
484                     // Add `>` to the list of expected tokens.
485                     self.check(&token::Gt);
486                     // Handle `,` to `;` substitution
487                     let mut err = self.unexpected::<()>().unwrap_err();
488                     self.bump();
489                     err.span_suggestion_verbose(
490                         self.prev_token.span.until(self.token.span),
491                         "use a comma to separate type parameters",
492                         ", ",
493                         Applicability::MachineApplicable,
494                     );
495                     err.emit();
496                     continue;
497                 }
498                 if !self.token.kind.should_end_const_arg() {
499                     if self.handle_ambiguous_unbraced_const_arg(&mut args)? {
500                         // We've managed to (partially) recover, so continue trying to parse
501                         // arguments.
502                         continue;
503                     }
504                 }
505                 break;
506             }
507         }
508         Ok(args)
509     }
510
511     /// Parses a single argument in the angle arguments `<...>` of a path segment.
512     fn parse_angle_arg(
513         &mut self,
514         ty_generics: Option<&Generics>,
515     ) -> PResult<'a, Option<AngleBracketedArg>> {
516         let lo = self.token.span;
517         let arg = self.parse_generic_arg(ty_generics)?;
518         match arg {
519             Some(arg) => {
520                 // we are using noexpect here because we first want to find out if either `=` or `:`
521                 // is present and then use that info to push the other token onto the tokens list
522                 let separated =
523                     self.check_noexpect(&token::Colon) || self.check_noexpect(&token::Eq);
524                 if separated && (self.check(&token::Colon) | self.check(&token::Eq)) {
525                     let arg_span = arg.span();
526                     let (binder, ident, gen_args) = match self.get_ident_from_generic_arg(&arg) {
527                         Ok(ident_gen_args) => ident_gen_args,
528                         Err(()) => return Ok(Some(AngleBracketedArg::Arg(arg))),
529                     };
530                     if binder {
531                         // FIXME(compiler-errors): this could be improved by suggesting lifting
532                         // this up to the trait, at least before this becomes real syntax.
533                         // e.g. `Trait<for<'a> Assoc = Ty>` -> `for<'a> Trait<Assoc = Ty>`
534                         return Err(self.struct_span_err(
535                             arg_span,
536                             "`for<...>` is not allowed on associated type bounds",
537                         ));
538                     }
539                     let kind = if self.eat(&token::Colon) {
540                         // Parse associated type constraint bound.
541
542                         let bounds = self.parse_generic_bounds(Some(self.prev_token.span))?;
543                         AssocConstraintKind::Bound { bounds }
544                     } else if self.eat(&token::Eq) {
545                         self.parse_assoc_equality_term(ident, self.prev_token.span)?
546                     } else {
547                         unreachable!();
548                     };
549
550                     let span = lo.to(self.prev_token.span);
551
552                     // Gate associated type bounds, e.g., `Iterator<Item: Ord>`.
553                     if let AssocConstraintKind::Bound { .. } = kind {
554                         self.sess.gated_spans.gate(sym::associated_type_bounds, span);
555                     }
556                     let constraint =
557                         AssocConstraint { id: ast::DUMMY_NODE_ID, ident, gen_args, kind, span };
558                     Ok(Some(AngleBracketedArg::Constraint(constraint)))
559                 } else {
560                     // we only want to suggest `:` and `=` in contexts where the previous token
561                     // is an ident and the current token or the next token is an ident
562                     if self.prev_token.is_ident()
563                         && (self.token.is_ident() || self.look_ahead(1, |token| token.is_ident()))
564                     {
565                         self.check(&token::Colon);
566                         self.check(&token::Eq);
567                     }
568                     Ok(Some(AngleBracketedArg::Arg(arg)))
569                 }
570             }
571             _ => Ok(None),
572         }
573     }
574
575     /// Parse the term to the right of an associated item equality constraint.
576     /// That is, parse `<term>` in `Item = <term>`.
577     /// Right now, this only admits types in `<term>`.
578     fn parse_assoc_equality_term(
579         &mut self,
580         ident: Ident,
581         eq: Span,
582     ) -> PResult<'a, AssocConstraintKind> {
583         let arg = self.parse_generic_arg(None)?;
584         let span = ident.span.to(self.prev_token.span);
585         let term = match arg {
586             Some(GenericArg::Type(ty)) => ty.into(),
587             Some(GenericArg::Const(c)) => {
588                 self.sess.gated_spans.gate(sym::associated_const_equality, span);
589                 c.into()
590             }
591             Some(GenericArg::Lifetime(lt)) => {
592                 self.struct_span_err(span, "associated lifetimes are not supported")
593                     .span_label(lt.ident.span, "the lifetime is given here")
594                     .help("if you meant to specify a trait object, write `dyn Trait + 'lifetime`")
595                     .emit();
596                 self.mk_ty(span, ast::TyKind::Err).into()
597             }
598             None => {
599                 let after_eq = eq.shrink_to_hi();
600                 let before_next = self.token.span.shrink_to_lo();
601                 let mut err = self
602                     .struct_span_err(after_eq.to(before_next), "missing type to the right of `=`");
603                 if matches!(self.token.kind, token::Comma | token::Gt) {
604                     err.span_suggestion(
605                         self.sess.source_map().next_point(eq).to(before_next),
606                         "to constrain the associated type, add a type after `=`",
607                         " TheType",
608                         Applicability::HasPlaceholders,
609                     );
610                     err.span_suggestion(
611                         eq.to(before_next),
612                         &format!("remove the `=` if `{}` is a type", ident),
613                         "",
614                         Applicability::MaybeIncorrect,
615                     )
616                 } else {
617                     err.span_label(
618                         self.token.span,
619                         &format!("expected type, found {}", super::token_descr(&self.token)),
620                     )
621                 };
622                 return Err(err);
623             }
624         };
625         Ok(AssocConstraintKind::Equality { term })
626     }
627
628     /// We do not permit arbitrary expressions as const arguments. They must be one of:
629     /// - An expression surrounded in `{}`.
630     /// - A literal.
631     /// - A numeric literal prefixed by `-`.
632     /// - A single-segment path.
633     pub(super) fn expr_is_valid_const_arg(&self, expr: &P<rustc_ast::Expr>) -> bool {
634         match &expr.kind {
635             ast::ExprKind::Block(_, _)
636             | ast::ExprKind::Lit(_)
637             | ast::ExprKind::IncludedBytes(..) => true,
638             ast::ExprKind::Unary(ast::UnOp::Neg, expr) => {
639                 matches!(expr.kind, ast::ExprKind::Lit(_))
640             }
641             // We can only resolve single-segment paths at the moment, because multi-segment paths
642             // require type-checking: see `visit_generic_arg` in `src/librustc_resolve/late.rs`.
643             ast::ExprKind::Path(None, path)
644                 if path.segments.len() == 1 && path.segments[0].args.is_none() =>
645             {
646                 true
647             }
648             _ => false,
649         }
650     }
651
652     /// Parse a const argument, e.g. `<3>`. It is assumed the angle brackets will be parsed by
653     /// the caller.
654     pub(super) fn parse_const_arg(&mut self) -> PResult<'a, AnonConst> {
655         // Parse const argument.
656         let value = if let token::OpenDelim(Delimiter::Brace) = self.token.kind {
657             self.parse_block_expr(None, self.token.span, BlockCheckMode::Default)?
658         } else {
659             self.handle_unambiguous_unbraced_const_arg()?
660         };
661         Ok(AnonConst { id: ast::DUMMY_NODE_ID, value })
662     }
663
664     /// Parse a generic argument in a path segment.
665     /// This does not include constraints, e.g., `Item = u8`, which is handled in `parse_angle_arg`.
666     pub(super) fn parse_generic_arg(
667         &mut self,
668         ty_generics: Option<&Generics>,
669     ) -> PResult<'a, Option<GenericArg>> {
670         let start = self.token.span;
671         let arg = if self.check_lifetime() && self.look_ahead(1, |t| !t.is_like_plus()) {
672             // Parse lifetime argument.
673             GenericArg::Lifetime(self.expect_lifetime())
674         } else if self.check_const_arg() {
675             // Parse const argument.
676             GenericArg::Const(self.parse_const_arg()?)
677         } else if self.check_type() {
678             // Parse type argument.
679             let is_const_fn =
680                 self.look_ahead(1, |t| t.kind == token::OpenDelim(Delimiter::Parenthesis));
681             let mut snapshot = self.create_snapshot_for_diagnostic();
682             match self.parse_ty() {
683                 Ok(ty) => GenericArg::Type(ty),
684                 Err(err) => {
685                     if is_const_fn {
686                         match (*snapshot).parse_expr_res(Restrictions::CONST_EXPR, None) {
687                             Ok(expr) => {
688                                 self.restore_snapshot(snapshot);
689                                 return Ok(Some(self.dummy_const_arg_needs_braces(err, expr.span)));
690                             }
691                             Err(err) => {
692                                 err.cancel();
693                             }
694                         }
695                     }
696                     // Try to recover from possible `const` arg without braces.
697                     return self.recover_const_arg(start, err).map(Some);
698                 }
699             }
700         } else if self.token.is_keyword(kw::Const) {
701             return self.recover_const_param_declaration(ty_generics);
702         } else {
703             // Fall back by trying to parse a const-expr expression. If we successfully do so,
704             // then we should report an error that it needs to be wrapped in braces.
705             let snapshot = self.create_snapshot_for_diagnostic();
706             match self.parse_expr_res(Restrictions::CONST_EXPR, None) {
707                 Ok(expr) => {
708                     return Ok(Some(self.dummy_const_arg_needs_braces(
709                         self.struct_span_err(expr.span, "invalid const generic expression"),
710                         expr.span,
711                     )));
712                 }
713                 Err(err) => {
714                     self.restore_snapshot(snapshot);
715                     err.cancel();
716                     return Ok(None);
717                 }
718             }
719         };
720         Ok(Some(arg))
721     }
722
723     /// Given a arg inside of generics, we try to destructure it as if it were the LHS in
724     /// `LHS = ...`, i.e. an associated type binding.
725     /// This returns a bool indicating if there are any `for<'a, 'b>` binder args, the
726     /// identifier, and any GAT arguments.
727     fn get_ident_from_generic_arg(
728         &self,
729         gen_arg: &GenericArg,
730     ) -> Result<(bool, Ident, Option<GenericArgs>), ()> {
731         if let GenericArg::Type(ty) = gen_arg {
732             if let ast::TyKind::Path(qself, path) = &ty.kind
733                 && qself.is_none()
734                 && let [seg] = path.segments.as_slice()
735             {
736                 return Ok((false, seg.ident, seg.args.as_deref().cloned()));
737             } else if let ast::TyKind::TraitObject(bounds, ast::TraitObjectSyntax::None) = &ty.kind
738                 && let [ast::GenericBound::Trait(trait_ref, ast::TraitBoundModifier::None)] =
739                     bounds.as_slice()
740                 && let [seg] = trait_ref.trait_ref.path.segments.as_slice()
741             {
742                 return Ok((true, seg.ident, seg.args.as_deref().cloned()));
743             }
744         }
745         Err(())
746     }
747 }