]> git.lizzy.rs Git - rust.git/blob - src/librustc_parse/parser/expr.rs
Auto merge of #69281 - nnethercote:inline-some-encoding-decoding-methods, r=Centril
[rust.git] / src / librustc_parse / parser / expr.rs
1 use super::pat::{GateOr, PARAM_EXPECTED};
2 use super::ty::{AllowPlus, RecoverQPath};
3 use super::{BlockMode, Parser, PathStyle, Restrictions, TokenType};
4 use super::{SemiColonMode, SeqSep, TokenExpectType};
5 use crate::maybe_recover_from_interpolated_ty_qpath;
6
7 use rustc_ast_pretty::pprust;
8 use rustc_errors::{Applicability, PResult};
9 use rustc_span::source_map::{self, Span, Spanned};
10 use rustc_span::symbol::{kw, sym, Symbol};
11 use std::mem;
12 use syntax::ast::{self, AttrStyle, AttrVec, CaptureBy, Field, Ident, Lit, DUMMY_NODE_ID};
13 use syntax::ast::{AnonConst, BinOp, BinOpKind, FnDecl, FnRetTy, Mac, Param, Ty, TyKind, UnOp};
14 use syntax::ast::{Arm, Async, BlockCheckMode, Expr, ExprKind, Label, Movability, RangeLimits};
15 use syntax::ptr::P;
16 use syntax::token::{self, Token, TokenKind};
17 use syntax::util::classify;
18 use syntax::util::literal::LitError;
19 use syntax::util::parser::{prec_let_scrutinee_needs_par, AssocOp, Fixity};
20
21 /// Possibly accepts an `token::Interpolated` expression (a pre-parsed expression
22 /// dropped into the token stream, which happens while parsing the result of
23 /// macro expansion). Placement of these is not as complex as I feared it would
24 /// be. The important thing is to make sure that lookahead doesn't balk at
25 /// `token::Interpolated` tokens.
26 macro_rules! maybe_whole_expr {
27     ($p:expr) => {
28         if let token::Interpolated(nt) = &$p.token.kind {
29             match &**nt {
30                 token::NtExpr(e) | token::NtLiteral(e) => {
31                     let e = e.clone();
32                     $p.bump();
33                     return Ok(e);
34                 }
35                 token::NtPath(path) => {
36                     let path = path.clone();
37                     $p.bump();
38                     return Ok($p.mk_expr(
39                         $p.token.span,
40                         ExprKind::Path(None, path),
41                         AttrVec::new(),
42                     ));
43                 }
44                 token::NtBlock(block) => {
45                     let block = block.clone();
46                     $p.bump();
47                     return Ok($p.mk_expr(
48                         $p.token.span,
49                         ExprKind::Block(block, None),
50                         AttrVec::new(),
51                     ));
52                 }
53                 // N.B., `NtIdent(ident)` is normalized to `Ident` in `fn bump`.
54                 _ => {}
55             };
56         }
57     };
58 }
59
60 #[derive(Debug)]
61 pub(super) enum LhsExpr {
62     NotYetParsed,
63     AttributesParsed(AttrVec),
64     AlreadyParsed(P<Expr>),
65 }
66
67 impl From<Option<AttrVec>> for LhsExpr {
68     /// Converts `Some(attrs)` into `LhsExpr::AttributesParsed(attrs)`
69     /// and `None` into `LhsExpr::NotYetParsed`.
70     ///
71     /// This conversion does not allocate.
72     fn from(o: Option<AttrVec>) -> Self {
73         if let Some(attrs) = o { LhsExpr::AttributesParsed(attrs) } else { LhsExpr::NotYetParsed }
74     }
75 }
76
77 impl From<P<Expr>> for LhsExpr {
78     /// Converts the `expr: P<Expr>` into `LhsExpr::AlreadyParsed(expr)`.
79     ///
80     /// This conversion does not allocate.
81     fn from(expr: P<Expr>) -> Self {
82         LhsExpr::AlreadyParsed(expr)
83     }
84 }
85
86 impl<'a> Parser<'a> {
87     /// Parses an expression.
88     #[inline]
89     pub fn parse_expr(&mut self) -> PResult<'a, P<Expr>> {
90         self.parse_expr_res(Restrictions::empty(), None)
91     }
92
93     pub(super) fn parse_anon_const_expr(&mut self) -> PResult<'a, AnonConst> {
94         self.parse_expr().map(|value| AnonConst { id: DUMMY_NODE_ID, value })
95     }
96
97     fn parse_expr_catch_underscore(&mut self) -> PResult<'a, P<Expr>> {
98         match self.parse_expr() {
99             Ok(expr) => Ok(expr),
100             Err(mut err) => match self.token.kind {
101                 token::Ident(name, false)
102                     if name == kw::Underscore && self.look_ahead(1, |t| t == &token::Comma) =>
103                 {
104                     // Special-case handling of `foo(_, _, _)`
105                     err.emit();
106                     let sp = self.token.span;
107                     self.bump();
108                     Ok(self.mk_expr(sp, ExprKind::Err, AttrVec::new()))
109                 }
110                 _ => Err(err),
111             },
112         }
113     }
114
115     /// Parses a sequence of expressions delimited by parentheses.
116     fn parse_paren_expr_seq(&mut self) -> PResult<'a, Vec<P<Expr>>> {
117         self.parse_paren_comma_seq(|p| p.parse_expr_catch_underscore()).map(|(r, _)| r)
118     }
119
120     /// Parses an expression, subject to the given restrictions.
121     #[inline]
122     pub(super) fn parse_expr_res(
123         &mut self,
124         r: Restrictions,
125         already_parsed_attrs: Option<AttrVec>,
126     ) -> PResult<'a, P<Expr>> {
127         self.with_res(r, |this| this.parse_assoc_expr(already_parsed_attrs))
128     }
129
130     /// Parses an associative expression.
131     ///
132     /// This parses an expression accounting for associativity and precedence of the operators in
133     /// the expression.
134     #[inline]
135     fn parse_assoc_expr(&mut self, already_parsed_attrs: Option<AttrVec>) -> PResult<'a, P<Expr>> {
136         self.parse_assoc_expr_with(0, already_parsed_attrs.into())
137     }
138
139     /// Parses an associative expression with operators of at least `min_prec` precedence.
140     pub(super) fn parse_assoc_expr_with(
141         &mut self,
142         min_prec: usize,
143         lhs: LhsExpr,
144     ) -> PResult<'a, P<Expr>> {
145         let mut lhs = if let LhsExpr::AlreadyParsed(expr) = lhs {
146             expr
147         } else {
148             let attrs = match lhs {
149                 LhsExpr::AttributesParsed(attrs) => Some(attrs),
150                 _ => None,
151             };
152             if [token::DotDot, token::DotDotDot, token::DotDotEq].contains(&self.token.kind) {
153                 return self.parse_prefix_range_expr(attrs);
154             } else {
155                 self.parse_prefix_expr(attrs)?
156             }
157         };
158         let last_type_ascription_set = self.last_type_ascription.is_some();
159
160         if !self.should_continue_as_assoc_expr(&lhs) {
161             self.last_type_ascription = None;
162             return Ok(lhs);
163         }
164
165         self.expected_tokens.push(TokenType::Operator);
166         while let Some(op) = self.check_assoc_op() {
167             // Adjust the span for interpolated LHS to point to the `$lhs` token
168             // and not to what it refers to.
169             let lhs_span = match self.unnormalized_prev_token.kind {
170                 TokenKind::Interpolated(..) => self.prev_span,
171                 _ => lhs.span,
172             };
173
174             let cur_op_span = self.token.span;
175             let restrictions = if op.node.is_assign_like() {
176                 self.restrictions & Restrictions::NO_STRUCT_LITERAL
177             } else {
178                 self.restrictions
179             };
180             let prec = op.node.precedence();
181             if prec < min_prec {
182                 break;
183             }
184             // Check for deprecated `...` syntax
185             if self.token == token::DotDotDot && op.node == AssocOp::DotDotEq {
186                 self.err_dotdotdot_syntax(self.token.span);
187             }
188
189             if self.token == token::LArrow {
190                 self.err_larrow_operator(self.token.span);
191             }
192
193             self.bump();
194             if op.node.is_comparison() {
195                 if let Some(expr) = self.check_no_chained_comparison(&lhs, &op)? {
196                     return Ok(expr);
197                 }
198             }
199             let op = op.node;
200             // Special cases:
201             if op == AssocOp::As {
202                 lhs = self.parse_assoc_op_cast(lhs, lhs_span, ExprKind::Cast)?;
203                 continue;
204             } else if op == AssocOp::Colon {
205                 lhs = self.parse_assoc_op_ascribe(lhs, lhs_span)?;
206                 continue;
207             } else if op == AssocOp::DotDot || op == AssocOp::DotDotEq {
208                 // If we didn’t have to handle `x..`/`x..=`, it would be pretty easy to
209                 // generalise it to the Fixity::None code.
210                 lhs = self.parse_range_expr(prec, lhs, op, cur_op_span)?;
211                 break;
212             }
213
214             let fixity = op.fixity();
215             let prec_adjustment = match fixity {
216                 Fixity::Right => 0,
217                 Fixity::Left => 1,
218                 // We currently have no non-associative operators that are not handled above by
219                 // the special cases. The code is here only for future convenience.
220                 Fixity::None => 1,
221             };
222             let rhs = self.with_res(restrictions - Restrictions::STMT_EXPR, |this| {
223                 this.parse_assoc_expr_with(prec + prec_adjustment, LhsExpr::NotYetParsed)
224             })?;
225
226             // Make sure that the span of the parent node is larger than the span of lhs and rhs,
227             // including the attributes.
228             let lhs_span = lhs
229                 .attrs
230                 .iter()
231                 .filter(|a| a.style == AttrStyle::Outer)
232                 .next()
233                 .map_or(lhs_span, |a| a.span);
234             let span = lhs_span.to(rhs.span);
235             lhs = match op {
236                 AssocOp::Add
237                 | AssocOp::Subtract
238                 | AssocOp::Multiply
239                 | AssocOp::Divide
240                 | AssocOp::Modulus
241                 | AssocOp::LAnd
242                 | AssocOp::LOr
243                 | AssocOp::BitXor
244                 | AssocOp::BitAnd
245                 | AssocOp::BitOr
246                 | AssocOp::ShiftLeft
247                 | AssocOp::ShiftRight
248                 | AssocOp::Equal
249                 | AssocOp::Less
250                 | AssocOp::LessEqual
251                 | AssocOp::NotEqual
252                 | AssocOp::Greater
253                 | AssocOp::GreaterEqual => {
254                     let ast_op = op.to_ast_binop().unwrap();
255                     let binary = self.mk_binary(source_map::respan(cur_op_span, ast_op), lhs, rhs);
256                     self.mk_expr(span, binary, AttrVec::new())
257                 }
258                 AssocOp::Assign => {
259                     self.mk_expr(span, ExprKind::Assign(lhs, rhs, cur_op_span), AttrVec::new())
260                 }
261                 AssocOp::AssignOp(k) => {
262                     let aop = match k {
263                         token::Plus => BinOpKind::Add,
264                         token::Minus => BinOpKind::Sub,
265                         token::Star => BinOpKind::Mul,
266                         token::Slash => BinOpKind::Div,
267                         token::Percent => BinOpKind::Rem,
268                         token::Caret => BinOpKind::BitXor,
269                         token::And => BinOpKind::BitAnd,
270                         token::Or => BinOpKind::BitOr,
271                         token::Shl => BinOpKind::Shl,
272                         token::Shr => BinOpKind::Shr,
273                     };
274                     let aopexpr = self.mk_assign_op(source_map::respan(cur_op_span, aop), lhs, rhs);
275                     self.mk_expr(span, aopexpr, AttrVec::new())
276                 }
277                 AssocOp::As | AssocOp::Colon | AssocOp::DotDot | AssocOp::DotDotEq => {
278                     self.span_bug(span, "AssocOp should have been handled by special case")
279                 }
280             };
281
282             if let Fixity::None = fixity {
283                 break;
284             }
285         }
286         if last_type_ascription_set {
287             self.last_type_ascription = None;
288         }
289         Ok(lhs)
290     }
291
292     fn should_continue_as_assoc_expr(&mut self, lhs: &Expr) -> bool {
293         match (self.expr_is_complete(lhs), self.check_assoc_op().map(|op| op.node)) {
294             // Semi-statement forms are odd:
295             // See https://github.com/rust-lang/rust/issues/29071
296             (true, None) => false,
297             (false, _) => true, // Continue parsing the expression.
298             // An exhaustive check is done in the following block, but these are checked first
299             // because they *are* ambiguous but also reasonable looking incorrect syntax, so we
300             // want to keep their span info to improve diagnostics in these cases in a later stage.
301             (true, Some(AssocOp::Multiply)) | // `{ 42 } *foo = bar;` or `{ 42 } * 3`
302             (true, Some(AssocOp::Subtract)) | // `{ 42 } -5`
303             (true, Some(AssocOp::LAnd)) | // `{ 42 } &&x` (#61475)
304             (true, Some(AssocOp::Add)) // `{ 42 } + 42
305             // If the next token is a keyword, then the tokens above *are* unambiguously incorrect:
306             // `if x { a } else { b } && if y { c } else { d }`
307             if !self.look_ahead(1, |t| t.is_reserved_ident()) => {
308                 // These cases are ambiguous and can't be identified in the parser alone.
309                 let sp = self.sess.source_map().start_point(self.token.span);
310                 self.sess.ambiguous_block_expr_parse.borrow_mut().insert(sp, lhs.span);
311                 false
312             }
313             (true, Some(ref op)) if !op.can_continue_expr_unambiguously() => false,
314             (true, Some(_)) => {
315                 self.error_found_expr_would_be_stmt(lhs);
316                 true
317             }
318         }
319     }
320
321     /// We've found an expression that would be parsed as a statement,
322     /// but the next token implies this should be parsed as an expression.
323     /// For example: `if let Some(x) = x { x } else { 0 } / 2`.
324     fn error_found_expr_would_be_stmt(&self, lhs: &Expr) {
325         let mut err = self.struct_span_err(
326             self.token.span,
327             &format!("expected expression, found `{}`", pprust::token_to_string(&self.token),),
328         );
329         err.span_label(self.token.span, "expected expression");
330         self.sess.expr_parentheses_needed(&mut err, lhs.span, Some(pprust::expr_to_string(&lhs)));
331         err.emit();
332     }
333
334     /// Possibly translate the current token to an associative operator.
335     /// The method does not advance the current token.
336     ///
337     /// Also performs recovery for `and` / `or` which are mistaken for `&&` and `||` respectively.
338     fn check_assoc_op(&self) -> Option<Spanned<AssocOp>> {
339         Some(Spanned {
340             node: match (AssocOp::from_token(&self.token), &self.token.kind) {
341                 (Some(op), _) => op,
342                 (None, token::Ident(sym::and, false)) => {
343                     self.error_bad_logical_op("and", "&&", "conjunction");
344                     AssocOp::LAnd
345                 }
346                 (None, token::Ident(sym::or, false)) => {
347                     self.error_bad_logical_op("or", "||", "disjunction");
348                     AssocOp::LOr
349                 }
350                 _ => return None,
351             },
352             span: self.token.span,
353         })
354     }
355
356     /// Error on `and` and `or` suggesting `&&` and `||` respectively.
357     fn error_bad_logical_op(&self, bad: &str, good: &str, english: &str) {
358         self.struct_span_err(self.token.span, &format!("`{}` is not a logical operator", bad))
359             .span_suggestion_short(
360                 self.token.span,
361                 &format!("use `{}` to perform logical {}", good, english),
362                 good.to_string(),
363                 Applicability::MachineApplicable,
364             )
365             .note("unlike in e.g., python and PHP, `&&` and `||` are used for logical operators")
366             .emit();
367     }
368
369     /// Checks if this expression is a successfully parsed statement.
370     fn expr_is_complete(&self, e: &Expr) -> bool {
371         self.restrictions.contains(Restrictions::STMT_EXPR)
372             && !classify::expr_requires_semi_to_be_stmt(e)
373     }
374
375     /// Parses `x..y`, `x..=y`, and `x..`/`x..=`.
376     /// The other two variants are handled in `parse_prefix_range_expr` below.
377     fn parse_range_expr(
378         &mut self,
379         prec: usize,
380         lhs: P<Expr>,
381         op: AssocOp,
382         cur_op_span: Span,
383     ) -> PResult<'a, P<Expr>> {
384         let rhs = if self.is_at_start_of_range_notation_rhs() {
385             Some(self.parse_assoc_expr_with(prec + 1, LhsExpr::NotYetParsed)?)
386         } else {
387             None
388         };
389         let rhs_span = rhs.as_ref().map_or(cur_op_span, |x| x.span);
390         let span = lhs.span.to(rhs_span);
391         let limits =
392             if op == AssocOp::DotDot { RangeLimits::HalfOpen } else { RangeLimits::Closed };
393         Ok(self.mk_expr(span, self.mk_range(Some(lhs), rhs, limits)?, AttrVec::new()))
394     }
395
396     fn is_at_start_of_range_notation_rhs(&self) -> bool {
397         if self.token.can_begin_expr() {
398             // Parse `for i in 1.. { }` as infinite loop, not as `for i in (1..{})`.
399             if self.token == token::OpenDelim(token::Brace) {
400                 return !self.restrictions.contains(Restrictions::NO_STRUCT_LITERAL);
401             }
402             true
403         } else {
404             false
405         }
406     }
407
408     /// Parses prefix-forms of range notation: `..expr`, `..`, `..=expr`.
409     fn parse_prefix_range_expr(&mut self, attrs: Option<AttrVec>) -> PResult<'a, P<Expr>> {
410         // Check for deprecated `...` syntax.
411         if self.token == token::DotDotDot {
412             self.err_dotdotdot_syntax(self.token.span);
413         }
414
415         debug_assert!(
416             [token::DotDot, token::DotDotDot, token::DotDotEq].contains(&self.token.kind),
417             "parse_prefix_range_expr: token {:?} is not DotDot/DotDotEq",
418             self.token
419         );
420
421         let limits = match self.token.kind {
422             token::DotDot => RangeLimits::HalfOpen,
423             _ => RangeLimits::Closed,
424         };
425         let op = AssocOp::from_token(&self.token);
426         let attrs = self.parse_or_use_outer_attributes(attrs)?;
427         let lo = self.token.span;
428         self.bump();
429         let (span, opt_end) = if self.is_at_start_of_range_notation_rhs() {
430             // RHS must be parsed with more associativity than the dots.
431             self.parse_assoc_expr_with(op.unwrap().precedence() + 1, LhsExpr::NotYetParsed)
432                 .map(|x| (lo.to(x.span), Some(x)))?
433         } else {
434             (lo, None)
435         };
436         Ok(self.mk_expr(span, self.mk_range(None, opt_end, limits)?, attrs))
437     }
438
439     /// Parses a prefix-unary-operator expr.
440     fn parse_prefix_expr(&mut self, attrs: Option<AttrVec>) -> PResult<'a, P<Expr>> {
441         let attrs = self.parse_or_use_outer_attributes(attrs)?;
442         let lo = self.token.span;
443         // Note: when adding new unary operators, don't forget to adjust TokenKind::can_begin_expr()
444         let (hi, ex) = match self.token.kind {
445             token::Not => self.parse_unary_expr(lo, UnOp::Not), // `!expr`
446             token::Tilde => self.recover_tilde_expr(lo),        // `~expr`
447             token::BinOp(token::Minus) => self.parse_unary_expr(lo, UnOp::Neg), // `-expr`
448             token::BinOp(token::Star) => self.parse_unary_expr(lo, UnOp::Deref), // `*expr`
449             token::BinOp(token::And) | token::AndAnd => self.parse_borrow_expr(lo),
450             token::Ident(..) if self.token.is_keyword(kw::Box) => self.parse_box_expr(lo),
451             token::Ident(..) if self.is_mistaken_not_ident_negation() => self.recover_not_expr(lo),
452             _ => return self.parse_dot_or_call_expr(Some(attrs)),
453         }?;
454         Ok(self.mk_expr(lo.to(hi), ex, attrs))
455     }
456
457     fn parse_prefix_expr_common(&mut self, lo: Span) -> PResult<'a, (Span, P<Expr>)> {
458         self.bump();
459         let expr = self.parse_prefix_expr(None);
460         let (span, expr) = self.interpolated_or_expr_span(expr)?;
461         Ok((lo.to(span), expr))
462     }
463
464     fn parse_unary_expr(&mut self, lo: Span, op: UnOp) -> PResult<'a, (Span, ExprKind)> {
465         let (span, expr) = self.parse_prefix_expr_common(lo)?;
466         Ok((span, self.mk_unary(op, expr)))
467     }
468
469     // Recover on `!` suggesting for bitwise negation instead.
470     fn recover_tilde_expr(&mut self, lo: Span) -> PResult<'a, (Span, ExprKind)> {
471         self.struct_span_err(lo, "`~` cannot be used as a unary operator")
472             .span_suggestion_short(
473                 lo,
474                 "use `!` to perform bitwise not",
475                 "!".to_owned(),
476                 Applicability::MachineApplicable,
477             )
478             .emit();
479
480         self.parse_unary_expr(lo, UnOp::Not)
481     }
482
483     /// Parse `box expr`.
484     fn parse_box_expr(&mut self, lo: Span) -> PResult<'a, (Span, ExprKind)> {
485         let (span, expr) = self.parse_prefix_expr_common(lo)?;
486         self.sess.gated_spans.gate(sym::box_syntax, span);
487         Ok((span, ExprKind::Box(expr)))
488     }
489
490     fn is_mistaken_not_ident_negation(&self) -> bool {
491         let token_cannot_continue_expr = |t: &Token| match t.kind {
492             // These tokens can start an expression after `!`, but
493             // can't continue an expression after an ident
494             token::Ident(name, is_raw) => token::ident_can_begin_expr(name, t.span, is_raw),
495             token::Literal(..) | token::Pound => true,
496             _ => t.is_whole_expr(),
497         };
498         self.token.is_ident_named(sym::not) && self.look_ahead(1, token_cannot_continue_expr)
499     }
500
501     /// Recover on `not expr` in favor of `!expr`.
502     fn recover_not_expr(&mut self, lo: Span) -> PResult<'a, (Span, ExprKind)> {
503         // Emit the error...
504         let not_token = self.look_ahead(1, |t| t.clone());
505         self.struct_span_err(
506             not_token.span,
507             &format!("unexpected {} after identifier", super::token_descr(&not_token)),
508         )
509         .span_suggestion_short(
510             // Span the `not` plus trailing whitespace to avoid
511             // trailing whitespace after the `!` in our suggestion
512             self.sess.source_map().span_until_non_whitespace(lo.to(not_token.span)),
513             "use `!` to perform logical negation",
514             "!".to_owned(),
515             Applicability::MachineApplicable,
516         )
517         .emit();
518
519         // ...and recover!
520         self.parse_unary_expr(lo, UnOp::Not)
521     }
522
523     /// Returns the span of expr, if it was not interpolated or the span of the interpolated token.
524     fn interpolated_or_expr_span(
525         &self,
526         expr: PResult<'a, P<Expr>>,
527     ) -> PResult<'a, (Span, P<Expr>)> {
528         expr.map(|e| {
529             (
530                 match self.unnormalized_prev_token.kind {
531                     TokenKind::Interpolated(..) => self.prev_span,
532                     _ => e.span,
533                 },
534                 e,
535             )
536         })
537     }
538
539     fn parse_assoc_op_cast(
540         &mut self,
541         lhs: P<Expr>,
542         lhs_span: Span,
543         expr_kind: fn(P<Expr>, P<Ty>) -> ExprKind,
544     ) -> PResult<'a, P<Expr>> {
545         let mk_expr = |this: &mut Self, rhs: P<Ty>| {
546             this.mk_expr(lhs_span.to(rhs.span), expr_kind(lhs, rhs), AttrVec::new())
547         };
548
549         // Save the state of the parser before parsing type normally, in case there is a
550         // LessThan comparison after this cast.
551         let parser_snapshot_before_type = self.clone();
552         match self.parse_ty_no_plus() {
553             Ok(rhs) => Ok(mk_expr(self, rhs)),
554             Err(mut type_err) => {
555                 // Rewind to before attempting to parse the type with generics, to recover
556                 // from situations like `x as usize < y` in which we first tried to parse
557                 // `usize < y` as a type with generic arguments.
558                 let parser_snapshot_after_type = self.clone();
559                 mem::replace(self, parser_snapshot_before_type);
560
561                 match self.parse_path(PathStyle::Expr) {
562                     Ok(path) => {
563                         let (op_noun, op_verb) = match self.token.kind {
564                             token::Lt => ("comparison", "comparing"),
565                             token::BinOp(token::Shl) => ("shift", "shifting"),
566                             _ => {
567                                 // We can end up here even without `<` being the next token, for
568                                 // example because `parse_ty_no_plus` returns `Err` on keywords,
569                                 // but `parse_path` returns `Ok` on them due to error recovery.
570                                 // Return original error and parser state.
571                                 mem::replace(self, parser_snapshot_after_type);
572                                 return Err(type_err);
573                             }
574                         };
575
576                         // Successfully parsed the type path leaving a `<` yet to parse.
577                         type_err.cancel();
578
579                         // Report non-fatal diagnostics, keep `x as usize` as an expression
580                         // in AST and continue parsing.
581                         let msg = format!(
582                             "`<` is interpreted as a start of generic arguments for `{}`, not a {}",
583                             pprust::path_to_string(&path),
584                             op_noun,
585                         );
586                         let span_after_type = parser_snapshot_after_type.token.span;
587                         let expr = mk_expr(self, self.mk_ty(path.span, TyKind::Path(None, path)));
588
589                         let expr_str = self
590                             .span_to_snippet(expr.span)
591                             .unwrap_or_else(|_| pprust::expr_to_string(&expr));
592
593                         self.struct_span_err(self.token.span, &msg)
594                             .span_label(
595                                 self.look_ahead(1, |t| t.span).to(span_after_type),
596                                 "interpreted as generic arguments",
597                             )
598                             .span_label(self.token.span, format!("not interpreted as {}", op_noun))
599                             .span_suggestion(
600                                 expr.span,
601                                 &format!("try {} the cast value", op_verb),
602                                 format!("({})", expr_str),
603                                 Applicability::MachineApplicable,
604                             )
605                             .emit();
606
607                         Ok(expr)
608                     }
609                     Err(mut path_err) => {
610                         // Couldn't parse as a path, return original error and parser state.
611                         path_err.cancel();
612                         mem::replace(self, parser_snapshot_after_type);
613                         Err(type_err)
614                     }
615                 }
616             }
617         }
618     }
619
620     fn parse_assoc_op_ascribe(&mut self, lhs: P<Expr>, lhs_span: Span) -> PResult<'a, P<Expr>> {
621         let maybe_path = self.could_ascription_be_path(&lhs.kind);
622         self.last_type_ascription = Some((self.prev_span, maybe_path));
623         let lhs = self.parse_assoc_op_cast(lhs, lhs_span, ExprKind::Type)?;
624         self.sess.gated_spans.gate(sym::type_ascription, lhs.span);
625         Ok(lhs)
626     }
627
628     /// Parse `& mut? <expr>` or `& raw [ const | mut ] <expr>`.
629     fn parse_borrow_expr(&mut self, lo: Span) -> PResult<'a, (Span, ExprKind)> {
630         self.expect_and()?;
631         let (borrow_kind, mutbl) = self.parse_borrow_modifiers(lo);
632         let expr = self.parse_prefix_expr(None);
633         let (span, expr) = self.interpolated_or_expr_span(expr)?;
634         Ok((lo.to(span), ExprKind::AddrOf(borrow_kind, mutbl, expr)))
635     }
636
637     /// Parse `mut?` or `raw [ const | mut ]`.
638     fn parse_borrow_modifiers(&mut self, lo: Span) -> (ast::BorrowKind, ast::Mutability) {
639         if self.check_keyword(kw::Raw) && self.look_ahead(1, Token::is_mutability) {
640             // `raw [ const | mut ]`.
641             let found_raw = self.eat_keyword(kw::Raw);
642             assert!(found_raw);
643             let mutability = self.parse_const_or_mut().unwrap();
644             self.sess.gated_spans.gate(sym::raw_ref_op, lo.to(self.prev_span));
645             (ast::BorrowKind::Raw, mutability)
646         } else {
647             // `mut?`
648             (ast::BorrowKind::Ref, self.parse_mutability())
649         }
650     }
651
652     /// Parses `a.b` or `a(13)` or `a[4]` or just `a`.
653     fn parse_dot_or_call_expr(&mut self, attrs: Option<AttrVec>) -> PResult<'a, P<Expr>> {
654         let attrs = self.parse_or_use_outer_attributes(attrs)?;
655         let base = self.parse_bottom_expr();
656         let (span, base) = self.interpolated_or_expr_span(base)?;
657         self.parse_dot_or_call_expr_with(base, span, attrs)
658     }
659
660     pub(super) fn parse_dot_or_call_expr_with(
661         &mut self,
662         e0: P<Expr>,
663         lo: Span,
664         mut attrs: AttrVec,
665     ) -> PResult<'a, P<Expr>> {
666         // Stitch the list of outer attributes onto the return value.
667         // A little bit ugly, but the best way given the current code
668         // structure
669         self.parse_dot_or_call_expr_with_(e0, lo).map(|expr| {
670             expr.map(|mut expr| {
671                 attrs.extend::<Vec<_>>(expr.attrs.into());
672                 expr.attrs = attrs;
673                 self.error_attr_on_if_expr(&expr);
674                 expr
675             })
676         })
677     }
678
679     fn error_attr_on_if_expr(&self, expr: &Expr) {
680         if let (ExprKind::If(..), [a0, ..]) = (&expr.kind, &*expr.attrs) {
681             // Just point to the first attribute in there...
682             self.struct_span_err(a0.span, "attributes are not yet allowed on `if` expressions")
683                 .emit();
684         }
685     }
686
687     fn parse_dot_or_call_expr_with_(&mut self, mut e: P<Expr>, lo: Span) -> PResult<'a, P<Expr>> {
688         loop {
689             if self.eat(&token::Question) {
690                 // `expr?`
691                 e = self.mk_expr(lo.to(self.prev_span), ExprKind::Try(e), AttrVec::new());
692                 continue;
693             }
694             if self.eat(&token::Dot) {
695                 // expr.f
696                 e = self.parse_dot_suffix_expr(lo, e)?;
697                 continue;
698             }
699             if self.expr_is_complete(&e) {
700                 return Ok(e);
701             }
702             e = match self.token.kind {
703                 token::OpenDelim(token::Paren) => self.parse_fn_call_expr(lo, e),
704                 token::OpenDelim(token::Bracket) => self.parse_index_expr(lo, e)?,
705                 _ => return Ok(e),
706             }
707         }
708     }
709
710     fn parse_dot_suffix_expr(&mut self, lo: Span, base: P<Expr>) -> PResult<'a, P<Expr>> {
711         match self.token.kind {
712             token::Ident(..) => self.parse_dot_suffix(base, lo),
713             token::Literal(token::Lit { kind: token::Integer, symbol, suffix }) => {
714                 Ok(self.parse_tuple_field_access_expr(lo, base, symbol, suffix))
715             }
716             token::Literal(token::Lit { kind: token::Float, symbol, .. }) => {
717                 self.recover_field_access_by_float_lit(lo, base, symbol)
718             }
719             _ => {
720                 self.error_unexpected_after_dot();
721                 Ok(base)
722             }
723         }
724     }
725
726     fn error_unexpected_after_dot(&self) {
727         // FIXME Could factor this out into non_fatal_unexpected or something.
728         let actual = pprust::token_to_string(&self.token);
729         self.struct_span_err(self.token.span, &format!("unexpected token: `{}`", actual)).emit();
730     }
731
732     fn recover_field_access_by_float_lit(
733         &mut self,
734         lo: Span,
735         base: P<Expr>,
736         sym: Symbol,
737     ) -> PResult<'a, P<Expr>> {
738         self.bump();
739
740         let fstr = sym.as_str();
741         let msg = format!("unexpected token: `{}`", sym);
742
743         let mut err = self.struct_span_err(self.prev_span, &msg);
744         err.span_label(self.prev_span, "unexpected token");
745
746         if fstr.chars().all(|x| "0123456789.".contains(x)) {
747             let float = match fstr.parse::<f64>() {
748                 Ok(f) => f,
749                 Err(_) => {
750                     err.emit();
751                     return Ok(base);
752                 }
753             };
754             let sugg = pprust::to_string(|s| {
755                 s.popen();
756                 s.print_expr(&base);
757                 s.s.word(".");
758                 s.print_usize(float.trunc() as usize);
759                 s.pclose();
760                 s.s.word(".");
761                 s.s.word(fstr.splitn(2, ".").last().unwrap().to_string())
762             });
763             err.span_suggestion(
764                 lo.to(self.prev_span),
765                 "try parenthesizing the first index",
766                 sugg,
767                 Applicability::MachineApplicable,
768             );
769         }
770         Err(err)
771     }
772
773     fn parse_tuple_field_access_expr(
774         &mut self,
775         lo: Span,
776         base: P<Expr>,
777         field: Symbol,
778         suffix: Option<Symbol>,
779     ) -> P<Expr> {
780         let span = self.token.span;
781         self.bump();
782         let field = ExprKind::Field(base, Ident::new(field, span));
783         self.expect_no_suffix(span, "a tuple index", suffix);
784         self.mk_expr(lo.to(span), field, AttrVec::new())
785     }
786
787     /// Parse a function call expression, `expr(...)`.
788     fn parse_fn_call_expr(&mut self, lo: Span, fun: P<Expr>) -> P<Expr> {
789         let seq = self.parse_paren_expr_seq().map(|args| {
790             self.mk_expr(lo.to(self.prev_span), self.mk_call(fun, args), AttrVec::new())
791         });
792         self.recover_seq_parse_error(token::Paren, lo, seq)
793     }
794
795     /// Parse an indexing expression `expr[...]`.
796     fn parse_index_expr(&mut self, lo: Span, base: P<Expr>) -> PResult<'a, P<Expr>> {
797         self.bump(); // `[`
798         let index = self.parse_expr()?;
799         self.expect(&token::CloseDelim(token::Bracket))?;
800         Ok(self.mk_expr(lo.to(self.prev_span), self.mk_index(base, index), AttrVec::new()))
801     }
802
803     /// Assuming we have just parsed `.`, continue parsing into an expression.
804     fn parse_dot_suffix(&mut self, self_arg: P<Expr>, lo: Span) -> PResult<'a, P<Expr>> {
805         if self.token.span.rust_2018() && self.eat_keyword(kw::Await) {
806             return self.mk_await_expr(self_arg, lo);
807         }
808
809         let segment = self.parse_path_segment(PathStyle::Expr)?;
810         self.check_trailing_angle_brackets(&segment, token::OpenDelim(token::Paren));
811
812         if self.check(&token::OpenDelim(token::Paren)) {
813             // Method call `expr.f()`
814             let mut args = self.parse_paren_expr_seq()?;
815             args.insert(0, self_arg);
816
817             let span = lo.to(self.prev_span);
818             Ok(self.mk_expr(span, ExprKind::MethodCall(segment, args), AttrVec::new()))
819         } else {
820             // Field access `expr.f`
821             if let Some(args) = segment.args {
822                 self.struct_span_err(
823                     args.span(),
824                     "field expressions cannot have generic arguments",
825                 )
826                 .emit();
827             }
828
829             let span = lo.to(self.prev_span);
830             Ok(self.mk_expr(span, ExprKind::Field(self_arg, segment.ident), AttrVec::new()))
831         }
832     }
833
834     /// At the bottom (top?) of the precedence hierarchy,
835     /// Parses things like parenthesized exprs, macros, `return`, etc.
836     ///
837     /// N.B., this does not parse outer attributes, and is private because it only works
838     /// correctly if called from `parse_dot_or_call_expr()`.
839     fn parse_bottom_expr(&mut self) -> PResult<'a, P<Expr>> {
840         maybe_recover_from_interpolated_ty_qpath!(self, true);
841         maybe_whole_expr!(self);
842
843         // Outer attributes are already parsed and will be
844         // added to the return value after the fact.
845         //
846         // Therefore, prevent sub-parser from parsing
847         // attributes by giving them a empty "already-parsed" list.
848         let attrs = AttrVec::new();
849
850         // Note: when adding new syntax here, don't forget to adjust `TokenKind::can_begin_expr()`.
851         let lo = self.token.span;
852         if let token::Literal(_) = self.token.kind {
853             // This match arm is a special-case of the `_` match arm below and
854             // could be removed without changing functionality, but it's faster
855             // to have it here, especially for programs with large constants.
856             self.parse_lit_expr(attrs)
857         } else if self.check(&token::OpenDelim(token::Paren)) {
858             self.parse_tuple_parens_expr(attrs)
859         } else if self.check(&token::OpenDelim(token::Brace)) {
860             self.parse_block_expr(None, lo, BlockCheckMode::Default, attrs)
861         } else if self.check(&token::BinOp(token::Or)) || self.check(&token::OrOr) {
862             self.parse_closure_expr(attrs)
863         } else if self.check(&token::OpenDelim(token::Bracket)) {
864             self.parse_array_or_repeat_expr(attrs)
865         } else if self.eat_lt() {
866             let (qself, path) = self.parse_qpath(PathStyle::Expr)?;
867             Ok(self.mk_expr(lo.to(path.span), ExprKind::Path(Some(qself), path), attrs))
868         } else if self.token.is_path_start() {
869             self.parse_path_start_expr(attrs)
870         } else if self.check_keyword(kw::Move) || self.check_keyword(kw::Static) {
871             self.parse_closure_expr(attrs)
872         } else if self.eat_keyword(kw::If) {
873             self.parse_if_expr(attrs)
874         } else if self.eat_keyword(kw::For) {
875             self.parse_for_expr(None, self.prev_span, attrs)
876         } else if self.eat_keyword(kw::While) {
877             self.parse_while_expr(None, self.prev_span, attrs)
878         } else if let Some(label) = self.eat_label() {
879             self.parse_labeled_expr(label, attrs)
880         } else if self.eat_keyword(kw::Loop) {
881             self.parse_loop_expr(None, self.prev_span, attrs)
882         } else if self.eat_keyword(kw::Continue) {
883             let kind = ExprKind::Continue(self.eat_label());
884             Ok(self.mk_expr(lo.to(self.prev_span), kind, attrs))
885         } else if self.eat_keyword(kw::Match) {
886             let match_sp = self.prev_span;
887             self.parse_match_expr(attrs).map_err(|mut err| {
888                 err.span_label(match_sp, "while parsing this match expression");
889                 err
890             })
891         } else if self.eat_keyword(kw::Unsafe) {
892             self.parse_block_expr(None, lo, BlockCheckMode::Unsafe(ast::UserProvided), attrs)
893         } else if self.is_do_catch_block() {
894             self.recover_do_catch(attrs)
895         } else if self.is_try_block() {
896             self.expect_keyword(kw::Try)?;
897             self.parse_try_block(lo, attrs)
898         } else if self.eat_keyword(kw::Return) {
899             self.parse_return_expr(attrs)
900         } else if self.eat_keyword(kw::Break) {
901             self.parse_break_expr(attrs)
902         } else if self.eat_keyword(kw::Yield) {
903             self.parse_yield_expr(attrs)
904         } else if self.eat_keyword(kw::Let) {
905             self.parse_let_expr(attrs)
906         } else if !self.unclosed_delims.is_empty() && self.check(&token::Semi) {
907             // Don't complain about bare semicolons after unclosed braces
908             // recovery in order to keep the error count down. Fixing the
909             // delimiters will possibly also fix the bare semicolon found in
910             // expression context. For example, silence the following error:
911             //
912             //     error: expected expression, found `;`
913             //      --> file.rs:2:13
914             //       |
915             //     2 |     foo(bar(;
916             //       |             ^ expected expression
917             self.bump();
918             Ok(self.mk_expr_err(self.token.span))
919         } else if self.token.span.rust_2018() {
920             // `Span::rust_2018()` is somewhat expensive; don't get it repeatedly.
921             if self.check_keyword(kw::Async) {
922                 if self.is_async_block() {
923                     // Check for `async {` and `async move {`.
924                     self.parse_async_block(attrs)
925                 } else {
926                     self.parse_closure_expr(attrs)
927                 }
928             } else if self.eat_keyword(kw::Await) {
929                 self.recover_incorrect_await_syntax(lo, self.prev_span, attrs)
930             } else {
931                 self.parse_lit_expr(attrs)
932             }
933         } else {
934             self.parse_lit_expr(attrs)
935         }
936     }
937
938     fn parse_lit_expr(&mut self, attrs: AttrVec) -> PResult<'a, P<Expr>> {
939         let lo = self.token.span;
940         match self.parse_opt_lit() {
941             Some(literal) => {
942                 let expr = self.mk_expr(lo.to(self.prev_span), ExprKind::Lit(literal), attrs);
943                 self.maybe_recover_from_bad_qpath(expr, true)
944             }
945             None => return Err(self.expected_expression_found()),
946         }
947     }
948
949     fn parse_tuple_parens_expr(&mut self, mut attrs: AttrVec) -> PResult<'a, P<Expr>> {
950         let lo = self.token.span;
951         self.expect(&token::OpenDelim(token::Paren))?;
952         attrs.extend(self.parse_inner_attributes()?); // `(#![foo] a, b, ...)` is OK.
953         let (es, trailing_comma) = match self.parse_seq_to_end(
954             &token::CloseDelim(token::Paren),
955             SeqSep::trailing_allowed(token::Comma),
956             |p| p.parse_expr_catch_underscore(),
957         ) {
958             Ok(x) => x,
959             Err(err) => return Ok(self.recover_seq_parse_error(token::Paren, lo, Err(err))),
960         };
961         let kind = if es.len() == 1 && !trailing_comma {
962             // `(e)` is parenthesized `e`.
963             ExprKind::Paren(es.into_iter().nth(0).unwrap())
964         } else {
965             // `(e,)` is a tuple with only one field, `e`.
966             ExprKind::Tup(es)
967         };
968         let expr = self.mk_expr(lo.to(self.prev_span), kind, attrs);
969         self.maybe_recover_from_bad_qpath(expr, true)
970     }
971
972     fn parse_array_or_repeat_expr(&mut self, mut attrs: AttrVec) -> PResult<'a, P<Expr>> {
973         let lo = self.token.span;
974         self.bump(); // `[`
975
976         attrs.extend(self.parse_inner_attributes()?);
977
978         let close = &token::CloseDelim(token::Bracket);
979         let kind = if self.eat(close) {
980             // Empty vector
981             ExprKind::Array(Vec::new())
982         } else {
983             // Non-empty vector
984             let first_expr = self.parse_expr()?;
985             if self.eat(&token::Semi) {
986                 // Repeating array syntax: `[ 0; 512 ]`
987                 let count = self.parse_anon_const_expr()?;
988                 self.expect(close)?;
989                 ExprKind::Repeat(first_expr, count)
990             } else if self.eat(&token::Comma) {
991                 // Vector with two or more elements.
992                 let sep = SeqSep::trailing_allowed(token::Comma);
993                 let (remaining_exprs, _) = self.parse_seq_to_end(close, sep, |p| p.parse_expr())?;
994                 let mut exprs = vec![first_expr];
995                 exprs.extend(remaining_exprs);
996                 ExprKind::Array(exprs)
997             } else {
998                 // Vector with one element
999                 self.expect(close)?;
1000                 ExprKind::Array(vec![first_expr])
1001             }
1002         };
1003         let expr = self.mk_expr(lo.to(self.prev_span), kind, attrs);
1004         self.maybe_recover_from_bad_qpath(expr, true)
1005     }
1006
1007     fn parse_path_start_expr(&mut self, attrs: AttrVec) -> PResult<'a, P<Expr>> {
1008         let lo = self.token.span;
1009         let path = self.parse_path(PathStyle::Expr)?;
1010
1011         // `!`, as an operator, is prefix, so we know this isn't that.
1012         let (hi, kind) = if self.eat(&token::Not) {
1013             // MACRO INVOCATION expression
1014             let mac = Mac {
1015                 path,
1016                 args: self.parse_mac_args()?,
1017                 prior_type_ascription: self.last_type_ascription,
1018             };
1019             (self.prev_span, ExprKind::Mac(mac))
1020         } else if self.check(&token::OpenDelim(token::Brace)) {
1021             if let Some(expr) = self.maybe_parse_struct_expr(lo, &path, &attrs) {
1022                 return expr;
1023             } else {
1024                 (path.span, ExprKind::Path(None, path))
1025             }
1026         } else {
1027             (path.span, ExprKind::Path(None, path))
1028         };
1029
1030         let expr = self.mk_expr(lo.to(hi), kind, attrs);
1031         self.maybe_recover_from_bad_qpath(expr, true)
1032     }
1033
1034     fn parse_labeled_expr(&mut self, label: Label, attrs: AttrVec) -> PResult<'a, P<Expr>> {
1035         let lo = label.ident.span;
1036         self.expect(&token::Colon)?;
1037         if self.eat_keyword(kw::While) {
1038             return self.parse_while_expr(Some(label), lo, attrs);
1039         }
1040         if self.eat_keyword(kw::For) {
1041             return self.parse_for_expr(Some(label), lo, attrs);
1042         }
1043         if self.eat_keyword(kw::Loop) {
1044             return self.parse_loop_expr(Some(label), lo, attrs);
1045         }
1046         if self.token == token::OpenDelim(token::Brace) {
1047             return self.parse_block_expr(Some(label), lo, BlockCheckMode::Default, attrs);
1048         }
1049
1050         let msg = "expected `while`, `for`, `loop` or `{` after a label";
1051         self.struct_span_err(self.token.span, msg).span_label(self.token.span, msg).emit();
1052         // Continue as an expression in an effort to recover on `'label: non_block_expr`.
1053         self.parse_expr()
1054     }
1055
1056     /// Recover on the syntax `do catch { ... }` suggesting `try { ... }` instead.
1057     fn recover_do_catch(&mut self, attrs: AttrVec) -> PResult<'a, P<Expr>> {
1058         let lo = self.token.span;
1059
1060         self.bump(); // `do`
1061         self.bump(); // `catch`
1062
1063         let span_dc = lo.to(self.prev_span);
1064         self.struct_span_err(span_dc, "found removed `do catch` syntax")
1065             .span_suggestion(
1066                 span_dc,
1067                 "replace with the new syntax",
1068                 "try".to_string(),
1069                 Applicability::MachineApplicable,
1070             )
1071             .note("following RFC #2388, the new non-placeholder syntax is `try`")
1072             .emit();
1073
1074         self.parse_try_block(lo, attrs)
1075     }
1076
1077     /// Parse an expression if the token can begin one.
1078     fn parse_expr_opt(&mut self) -> PResult<'a, Option<P<Expr>>> {
1079         Ok(if self.token.can_begin_expr() { Some(self.parse_expr()?) } else { None })
1080     }
1081
1082     /// Parse `"return" expr?`.
1083     fn parse_return_expr(&mut self, attrs: AttrVec) -> PResult<'a, P<Expr>> {
1084         let lo = self.prev_span;
1085         let kind = ExprKind::Ret(self.parse_expr_opt()?);
1086         let expr = self.mk_expr(lo.to(self.prev_span), kind, attrs);
1087         self.maybe_recover_from_bad_qpath(expr, true)
1088     }
1089
1090     /// Parse `"('label ":")? break expr?`.
1091     fn parse_break_expr(&mut self, attrs: AttrVec) -> PResult<'a, P<Expr>> {
1092         let lo = self.prev_span;
1093         let label = self.eat_label();
1094         let kind = if self.token != token::OpenDelim(token::Brace)
1095             || !self.restrictions.contains(Restrictions::NO_STRUCT_LITERAL)
1096         {
1097             self.parse_expr_opt()?
1098         } else {
1099             None
1100         };
1101         let expr = self.mk_expr(lo.to(self.prev_span), ExprKind::Break(label, kind), attrs);
1102         self.maybe_recover_from_bad_qpath(expr, true)
1103     }
1104
1105     /// Parse `"yield" expr?`.
1106     fn parse_yield_expr(&mut self, attrs: AttrVec) -> PResult<'a, P<Expr>> {
1107         let lo = self.prev_span;
1108         let kind = ExprKind::Yield(self.parse_expr_opt()?);
1109         let span = lo.to(self.prev_span);
1110         self.sess.gated_spans.gate(sym::generators, span);
1111         let expr = self.mk_expr(span, kind, attrs);
1112         self.maybe_recover_from_bad_qpath(expr, true)
1113     }
1114
1115     /// Returns a string literal if the next token is a string literal.
1116     /// In case of error returns `Some(lit)` if the next token is a literal with a wrong kind,
1117     /// and returns `None` if the next token is not literal at all.
1118     pub fn parse_str_lit(&mut self) -> Result<ast::StrLit, Option<Lit>> {
1119         match self.parse_opt_lit() {
1120             Some(lit) => match lit.kind {
1121                 ast::LitKind::Str(symbol_unescaped, style) => Ok(ast::StrLit {
1122                     style,
1123                     symbol: lit.token.symbol,
1124                     suffix: lit.token.suffix,
1125                     span: lit.span,
1126                     symbol_unescaped,
1127                 }),
1128                 _ => Err(Some(lit)),
1129             },
1130             None => Err(None),
1131         }
1132     }
1133
1134     pub(super) fn parse_lit(&mut self) -> PResult<'a, Lit> {
1135         self.parse_opt_lit().ok_or_else(|| {
1136             let msg = format!("unexpected token: {}", super::token_descr(&self.token));
1137             self.struct_span_err(self.token.span, &msg)
1138         })
1139     }
1140
1141     /// Matches `lit = true | false | token_lit`.
1142     /// Returns `None` if the next token is not a literal.
1143     pub(super) fn parse_opt_lit(&mut self) -> Option<Lit> {
1144         let mut recovered = None;
1145         if self.token == token::Dot {
1146             // Attempt to recover `.4` as `0.4`. We don't currently have any syntax where
1147             // dot would follow an optional literal, so we do this unconditionally.
1148             recovered = self.look_ahead(1, |next_token| {
1149                 if let token::Literal(token::Lit { kind: token::Integer, symbol, suffix }) =
1150                     next_token.kind
1151                 {
1152                     if self.token.span.hi() == next_token.span.lo() {
1153                         let s = String::from("0.") + &symbol.as_str();
1154                         let kind = TokenKind::lit(token::Float, Symbol::intern(&s), suffix);
1155                         return Some(Token::new(kind, self.token.span.to(next_token.span)));
1156                     }
1157                 }
1158                 None
1159             });
1160             if let Some(token) = &recovered {
1161                 self.bump();
1162                 self.error_float_lits_must_have_int_part(&token);
1163             }
1164         }
1165
1166         let token = recovered.as_ref().unwrap_or(&self.token);
1167         match Lit::from_token(token) {
1168             Ok(lit) => {
1169                 self.bump();
1170                 Some(lit)
1171             }
1172             Err(LitError::NotLiteral) => None,
1173             Err(err) => {
1174                 let span = token.span;
1175                 let lit = match token.kind {
1176                     token::Literal(lit) => lit,
1177                     _ => unreachable!(),
1178                 };
1179                 self.bump();
1180                 self.report_lit_error(err, lit, span);
1181                 // Pack possible quotes and prefixes from the original literal into
1182                 // the error literal's symbol so they can be pretty-printed faithfully.
1183                 let suffixless_lit = token::Lit::new(lit.kind, lit.symbol, None);
1184                 let symbol = Symbol::intern(&suffixless_lit.to_string());
1185                 let lit = token::Lit::new(token::Err, symbol, lit.suffix);
1186                 Some(Lit::from_lit_token(lit, span).unwrap_or_else(|_| unreachable!()))
1187             }
1188         }
1189     }
1190
1191     fn error_float_lits_must_have_int_part(&self, token: &Token) {
1192         self.struct_span_err(token.span, "float literals must have an integer part")
1193             .span_suggestion(
1194                 token.span,
1195                 "must have an integer part",
1196                 pprust::token_to_string(token),
1197                 Applicability::MachineApplicable,
1198             )
1199             .emit();
1200     }
1201
1202     fn report_lit_error(&self, err: LitError, lit: token::Lit, span: Span) {
1203         // Checks if `s` looks like i32 or u1234 etc.
1204         fn looks_like_width_suffix(first_chars: &[char], s: &str) -> bool {
1205             s.len() > 1 && s.starts_with(first_chars) && s[1..].chars().all(|c| c.is_ascii_digit())
1206         }
1207
1208         let token::Lit { kind, suffix, .. } = lit;
1209         match err {
1210             // `NotLiteral` is not an error by itself, so we don't report
1211             // it and give the parser opportunity to try something else.
1212             LitError::NotLiteral => {}
1213             // `LexerError` *is* an error, but it was already reported
1214             // by lexer, so here we don't report it the second time.
1215             LitError::LexerError => {}
1216             LitError::InvalidSuffix => {
1217                 self.expect_no_suffix(
1218                     span,
1219                     &format!("{} {} literal", kind.article(), kind.descr()),
1220                     suffix,
1221                 );
1222             }
1223             LitError::InvalidIntSuffix => {
1224                 let suf = suffix.expect("suffix error with no suffix").as_str();
1225                 if looks_like_width_suffix(&['i', 'u'], &suf) {
1226                     // If it looks like a width, try to be helpful.
1227                     let msg = format!("invalid width `{}` for integer literal", &suf[1..]);
1228                     self.struct_span_err(span, &msg)
1229                         .help("valid widths are 8, 16, 32, 64 and 128")
1230                         .emit();
1231                 } else {
1232                     let msg = format!("invalid suffix `{}` for integer literal", suf);
1233                     self.struct_span_err(span, &msg)
1234                         .span_label(span, format!("invalid suffix `{}`", suf))
1235                         .help("the suffix must be one of the integral types (`u32`, `isize`, etc)")
1236                         .emit();
1237                 }
1238             }
1239             LitError::InvalidFloatSuffix => {
1240                 let suf = suffix.expect("suffix error with no suffix").as_str();
1241                 if looks_like_width_suffix(&['f'], &suf) {
1242                     // If it looks like a width, try to be helpful.
1243                     let msg = format!("invalid width `{}` for float literal", &suf[1..]);
1244                     self.struct_span_err(span, &msg).help("valid widths are 32 and 64").emit();
1245                 } else {
1246                     let msg = format!("invalid suffix `{}` for float literal", suf);
1247                     self.struct_span_err(span, &msg)
1248                         .span_label(span, format!("invalid suffix `{}`", suf))
1249                         .help("valid suffixes are `f32` and `f64`")
1250                         .emit();
1251                 }
1252             }
1253             LitError::NonDecimalFloat(base) => {
1254                 let descr = match base {
1255                     16 => "hexadecimal",
1256                     8 => "octal",
1257                     2 => "binary",
1258                     _ => unreachable!(),
1259                 };
1260                 self.struct_span_err(span, &format!("{} float literal is not supported", descr))
1261                     .span_label(span, "not supported")
1262                     .emit();
1263             }
1264             LitError::IntTooLarge => {
1265                 self.struct_span_err(span, "integer literal is too large").emit();
1266             }
1267         }
1268     }
1269
1270     pub(super) fn expect_no_suffix(&self, sp: Span, kind: &str, suffix: Option<Symbol>) {
1271         if let Some(suf) = suffix {
1272             let mut err = if kind == "a tuple index"
1273                 && [sym::i32, sym::u32, sym::isize, sym::usize].contains(&suf)
1274             {
1275                 // #59553: warn instead of reject out of hand to allow the fix to percolate
1276                 // through the ecosystem when people fix their macros
1277                 let mut err = self
1278                     .sess
1279                     .span_diagnostic
1280                     .struct_span_warn(sp, &format!("suffixes on {} are invalid", kind));
1281                 err.note(&format!(
1282                     "`{}` is *temporarily* accepted on tuple index fields as it was \
1283                         incorrectly accepted on stable for a few releases",
1284                     suf,
1285                 ));
1286                 err.help(
1287                     "on proc macros, you'll want to use `syn::Index::from` or \
1288                         `proc_macro::Literal::*_unsuffixed` for code that will desugar \
1289                         to tuple field access",
1290                 );
1291                 err.note(
1292                     "see issue #60210 <https://github.com/rust-lang/rust/issues/60210> \
1293                      for more information",
1294                 );
1295                 err
1296             } else {
1297                 self.struct_span_err(sp, &format!("suffixes on {} are invalid", kind))
1298             };
1299             err.span_label(sp, format!("invalid suffix `{}`", suf));
1300             err.emit();
1301         }
1302     }
1303
1304     /// Matches `'-' lit | lit` (cf. `ast_validation::AstValidator::check_expr_within_pat`).
1305     pub fn parse_literal_maybe_minus(&mut self) -> PResult<'a, P<Expr>> {
1306         maybe_whole_expr!(self);
1307
1308         let lo = self.token.span;
1309         let minus_present = self.eat(&token::BinOp(token::Minus));
1310         let lit = self.parse_lit()?;
1311         let expr = self.mk_expr(lit.span, ExprKind::Lit(lit), AttrVec::new());
1312
1313         if minus_present {
1314             Ok(self.mk_expr(lo.to(self.prev_span), self.mk_unary(UnOp::Neg, expr), AttrVec::new()))
1315         } else {
1316             Ok(expr)
1317         }
1318     }
1319
1320     /// Parses a block or unsafe block.
1321     pub(super) fn parse_block_expr(
1322         &mut self,
1323         opt_label: Option<Label>,
1324         lo: Span,
1325         blk_mode: BlockCheckMode,
1326         outer_attrs: AttrVec,
1327     ) -> PResult<'a, P<Expr>> {
1328         if let Some(label) = opt_label {
1329             self.sess.gated_spans.gate(sym::label_break_value, label.ident.span);
1330         }
1331
1332         self.expect(&token::OpenDelim(token::Brace))?;
1333
1334         let mut attrs = outer_attrs;
1335         attrs.extend(self.parse_inner_attributes()?);
1336
1337         let blk = self.parse_block_tail(lo, blk_mode)?;
1338         Ok(self.mk_expr(blk.span, ExprKind::Block(blk, opt_label), attrs))
1339     }
1340
1341     /// Parses a closure expression (e.g., `move |args| expr`).
1342     fn parse_closure_expr(&mut self, attrs: AttrVec) -> PResult<'a, P<Expr>> {
1343         let lo = self.token.span;
1344
1345         let movability =
1346             if self.eat_keyword(kw::Static) { Movability::Static } else { Movability::Movable };
1347
1348         let asyncness =
1349             if self.token.span.rust_2018() { self.parse_asyncness() } else { Async::No };
1350         if asyncness.is_async() {
1351             // Feature-gate `async ||` closures.
1352             self.sess.gated_spans.gate(sym::async_closure, self.prev_span);
1353         }
1354
1355         let capture_clause = self.parse_capture_clause();
1356         let decl = self.parse_fn_block_decl()?;
1357         let decl_hi = self.prev_span;
1358         let body = match decl.output {
1359             FnRetTy::Default(_) => {
1360                 let restrictions = self.restrictions - Restrictions::STMT_EXPR;
1361                 self.parse_expr_res(restrictions, None)?
1362             }
1363             _ => {
1364                 // If an explicit return type is given, require a block to appear (RFC 968).
1365                 let body_lo = self.token.span;
1366                 self.parse_block_expr(None, body_lo, BlockCheckMode::Default, AttrVec::new())?
1367             }
1368         };
1369
1370         Ok(self.mk_expr(
1371             lo.to(body.span),
1372             ExprKind::Closure(capture_clause, asyncness, movability, decl, body, lo.to(decl_hi)),
1373             attrs,
1374         ))
1375     }
1376
1377     /// Parses an optional `move` prefix to a closure lke construct.
1378     fn parse_capture_clause(&mut self) -> CaptureBy {
1379         if self.eat_keyword(kw::Move) { CaptureBy::Value } else { CaptureBy::Ref }
1380     }
1381
1382     /// Parses the `|arg, arg|` header of a closure.
1383     fn parse_fn_block_decl(&mut self) -> PResult<'a, P<FnDecl>> {
1384         let inputs = if self.eat(&token::OrOr) {
1385             Vec::new()
1386         } else {
1387             self.expect(&token::BinOp(token::Or))?;
1388             let args = self
1389                 .parse_seq_to_before_tokens(
1390                     &[&token::BinOp(token::Or), &token::OrOr],
1391                     SeqSep::trailing_allowed(token::Comma),
1392                     TokenExpectType::NoExpect,
1393                     |p| p.parse_fn_block_param(),
1394                 )?
1395                 .0;
1396             self.expect_or()?;
1397             args
1398         };
1399         let output = self.parse_ret_ty(AllowPlus::Yes, RecoverQPath::Yes)?;
1400
1401         Ok(P(FnDecl { inputs, output }))
1402     }
1403
1404     /// Parses a parameter in a closure header (e.g., `|arg, arg|`).
1405     fn parse_fn_block_param(&mut self) -> PResult<'a, Param> {
1406         let lo = self.token.span;
1407         let attrs = self.parse_outer_attributes()?;
1408         let pat = self.parse_pat(PARAM_EXPECTED)?;
1409         let ty = if self.eat(&token::Colon) {
1410             self.parse_ty()?
1411         } else {
1412             self.mk_ty(self.prev_span, TyKind::Infer)
1413         };
1414         Ok(Param {
1415             attrs: attrs.into(),
1416             ty,
1417             pat,
1418             span: lo.to(self.token.span),
1419             id: DUMMY_NODE_ID,
1420             is_placeholder: false,
1421         })
1422     }
1423
1424     /// Parses an `if` expression (`if` token already eaten).
1425     fn parse_if_expr(&mut self, attrs: AttrVec) -> PResult<'a, P<Expr>> {
1426         let lo = self.prev_span;
1427         let cond = self.parse_cond_expr()?;
1428
1429         // Verify that the parsed `if` condition makes sense as a condition. If it is a block, then
1430         // verify that the last statement is either an implicit return (no `;`) or an explicit
1431         // return. This won't catch blocks with an explicit `return`, but that would be caught by
1432         // the dead code lint.
1433         let thn = if self.eat_keyword(kw::Else) || !cond.returns() {
1434             self.error_missing_if_cond(lo, cond.span)
1435         } else {
1436             let not_block = self.token != token::OpenDelim(token::Brace);
1437             self.parse_block().map_err(|mut err| {
1438                 if not_block {
1439                     err.span_label(lo, "this `if` expression has a condition, but no block");
1440                 }
1441                 err
1442             })?
1443         };
1444         let els = if self.eat_keyword(kw::Else) { Some(self.parse_else_expr()?) } else { None };
1445         Ok(self.mk_expr(lo.to(self.prev_span), ExprKind::If(cond, thn, els), attrs))
1446     }
1447
1448     fn error_missing_if_cond(&self, lo: Span, span: Span) -> P<ast::Block> {
1449         let sp = self.sess.source_map().next_point(lo);
1450         self.struct_span_err(sp, "missing condition for `if` expression")
1451             .span_label(sp, "expected if condition here")
1452             .emit();
1453         self.mk_block_err(span)
1454     }
1455
1456     /// Parses the condition of a `if` or `while` expression.
1457     fn parse_cond_expr(&mut self) -> PResult<'a, P<Expr>> {
1458         let cond = self.parse_expr_res(Restrictions::NO_STRUCT_LITERAL, None)?;
1459
1460         if let ExprKind::Let(..) = cond.kind {
1461             // Remove the last feature gating of a `let` expression since it's stable.
1462             self.sess.gated_spans.ungate_last(sym::let_chains, cond.span);
1463         }
1464
1465         Ok(cond)
1466     }
1467
1468     /// Parses a `let $pat = $expr` pseudo-expression.
1469     /// The `let` token has already been eaten.
1470     fn parse_let_expr(&mut self, attrs: AttrVec) -> PResult<'a, P<Expr>> {
1471         let lo = self.prev_span;
1472         let pat = self.parse_top_pat(GateOr::No)?;
1473         self.expect(&token::Eq)?;
1474         let expr = self.with_res(Restrictions::NO_STRUCT_LITERAL, |this| {
1475             this.parse_assoc_expr_with(1 + prec_let_scrutinee_needs_par(), None.into())
1476         })?;
1477         let span = lo.to(expr.span);
1478         self.sess.gated_spans.gate(sym::let_chains, span);
1479         Ok(self.mk_expr(span, ExprKind::Let(pat, expr), attrs))
1480     }
1481
1482     /// Parses an `else { ... }` expression (`else` token already eaten).
1483     fn parse_else_expr(&mut self) -> PResult<'a, P<Expr>> {
1484         if self.eat_keyword(kw::If) {
1485             self.parse_if_expr(AttrVec::new())
1486         } else {
1487             let blk = self.parse_block()?;
1488             Ok(self.mk_expr(blk.span, ExprKind::Block(blk, None), AttrVec::new()))
1489         }
1490     }
1491
1492     /// Parses `for <src_pat> in <src_expr> <src_loop_block>` (`for` token already eaten).
1493     fn parse_for_expr(
1494         &mut self,
1495         opt_label: Option<Label>,
1496         lo: Span,
1497         mut attrs: AttrVec,
1498     ) -> PResult<'a, P<Expr>> {
1499         // Record whether we are about to parse `for (`.
1500         // This is used below for recovery in case of `for ( $stuff ) $block`
1501         // in which case we will suggest `for $stuff $block`.
1502         let begin_paren = match self.token.kind {
1503             token::OpenDelim(token::Paren) => Some(self.token.span),
1504             _ => None,
1505         };
1506
1507         let pat = self.parse_top_pat(GateOr::Yes)?;
1508         if !self.eat_keyword(kw::In) {
1509             self.error_missing_in_for_loop();
1510         }
1511         self.check_for_for_in_in_typo(self.prev_span);
1512         let expr = self.parse_expr_res(Restrictions::NO_STRUCT_LITERAL, None)?;
1513
1514         let pat = self.recover_parens_around_for_head(pat, &expr, begin_paren);
1515
1516         let (iattrs, loop_block) = self.parse_inner_attrs_and_block()?;
1517         attrs.extend(iattrs);
1518
1519         let kind = ExprKind::ForLoop(pat, expr, loop_block, opt_label);
1520         Ok(self.mk_expr(lo.to(self.prev_span), kind, attrs))
1521     }
1522
1523     fn error_missing_in_for_loop(&self) {
1524         let in_span = self.prev_span.between(self.token.span);
1525         self.struct_span_err(in_span, "missing `in` in `for` loop")
1526             .span_suggestion_short(
1527                 in_span,
1528                 "try adding `in` here",
1529                 " in ".into(),
1530                 // Has been misleading, at least in the past (closed Issue #48492).
1531                 Applicability::MaybeIncorrect,
1532             )
1533             .emit();
1534     }
1535
1536     /// Parses a `while` or `while let` expression (`while` token already eaten).
1537     fn parse_while_expr(
1538         &mut self,
1539         opt_label: Option<Label>,
1540         lo: Span,
1541         mut attrs: AttrVec,
1542     ) -> PResult<'a, P<Expr>> {
1543         let cond = self.parse_cond_expr()?;
1544         let (iattrs, body) = self.parse_inner_attrs_and_block()?;
1545         attrs.extend(iattrs);
1546         Ok(self.mk_expr(lo.to(self.prev_span), ExprKind::While(cond, body, opt_label), attrs))
1547     }
1548
1549     /// Parses `loop { ... }` (`loop` token already eaten).
1550     fn parse_loop_expr(
1551         &mut self,
1552         opt_label: Option<Label>,
1553         lo: Span,
1554         mut attrs: AttrVec,
1555     ) -> PResult<'a, P<Expr>> {
1556         let (iattrs, body) = self.parse_inner_attrs_and_block()?;
1557         attrs.extend(iattrs);
1558         Ok(self.mk_expr(lo.to(self.prev_span), ExprKind::Loop(body, opt_label), attrs))
1559     }
1560
1561     fn eat_label(&mut self) -> Option<Label> {
1562         self.token.lifetime().map(|ident| {
1563             let span = self.token.span;
1564             self.bump();
1565             Label { ident: Ident::new(ident.name, span) }
1566         })
1567     }
1568
1569     /// Parses a `match ... { ... }` expression (`match` token already eaten).
1570     fn parse_match_expr(&mut self, mut attrs: AttrVec) -> PResult<'a, P<Expr>> {
1571         let match_span = self.prev_span;
1572         let lo = self.prev_span;
1573         let scrutinee = self.parse_expr_res(Restrictions::NO_STRUCT_LITERAL, None)?;
1574         if let Err(mut e) = self.expect(&token::OpenDelim(token::Brace)) {
1575             if self.token == token::Semi {
1576                 e.span_suggestion_short(
1577                     match_span,
1578                     "try removing this `match`",
1579                     String::new(),
1580                     Applicability::MaybeIncorrect, // speculative
1581                 );
1582             }
1583             return Err(e);
1584         }
1585         attrs.extend(self.parse_inner_attributes()?);
1586
1587         let mut arms: Vec<Arm> = Vec::new();
1588         while self.token != token::CloseDelim(token::Brace) {
1589             match self.parse_arm() {
1590                 Ok(arm) => arms.push(arm),
1591                 Err(mut e) => {
1592                     // Recover by skipping to the end of the block.
1593                     e.emit();
1594                     self.recover_stmt();
1595                     let span = lo.to(self.token.span);
1596                     if self.token == token::CloseDelim(token::Brace) {
1597                         self.bump();
1598                     }
1599                     return Ok(self.mk_expr(span, ExprKind::Match(scrutinee, arms), attrs));
1600                 }
1601             }
1602         }
1603         let hi = self.token.span;
1604         self.bump();
1605         return Ok(self.mk_expr(lo.to(hi), ExprKind::Match(scrutinee, arms), attrs));
1606     }
1607
1608     pub(super) fn parse_arm(&mut self) -> PResult<'a, Arm> {
1609         let attrs = self.parse_outer_attributes()?;
1610         let lo = self.token.span;
1611         let pat = self.parse_top_pat(GateOr::No)?;
1612         let guard = if self.eat_keyword(kw::If) { Some(self.parse_expr()?) } else { None };
1613         let arrow_span = self.token.span;
1614         self.expect(&token::FatArrow)?;
1615         let arm_start_span = self.token.span;
1616
1617         let expr = self.parse_expr_res(Restrictions::STMT_EXPR, None).map_err(|mut err| {
1618             err.span_label(arrow_span, "while parsing the `match` arm starting here");
1619             err
1620         })?;
1621
1622         let require_comma = classify::expr_requires_semi_to_be_stmt(&expr)
1623             && self.token != token::CloseDelim(token::Brace);
1624
1625         let hi = self.token.span;
1626
1627         if require_comma {
1628             let cm = self.sess.source_map();
1629             self.expect_one_of(&[token::Comma], &[token::CloseDelim(token::Brace)]).map_err(
1630                 |mut err| {
1631                     match (cm.span_to_lines(expr.span), cm.span_to_lines(arm_start_span)) {
1632                         (Ok(ref expr_lines), Ok(ref arm_start_lines))
1633                             if arm_start_lines.lines[0].end_col == expr_lines.lines[0].end_col
1634                                 && expr_lines.lines.len() == 2
1635                                 && self.token == token::FatArrow =>
1636                         {
1637                             // We check whether there's any trailing code in the parse span,
1638                             // if there isn't, we very likely have the following:
1639                             //
1640                             // X |     &Y => "y"
1641                             //   |        --    - missing comma
1642                             //   |        |
1643                             //   |        arrow_span
1644                             // X |     &X => "x"
1645                             //   |      - ^^ self.token.span
1646                             //   |      |
1647                             //   |      parsed until here as `"y" & X`
1648                             err.span_suggestion_short(
1649                                 arm_start_span.shrink_to_hi(),
1650                                 "missing a comma here to end this `match` arm",
1651                                 ",".to_owned(),
1652                                 Applicability::MachineApplicable,
1653                             );
1654                         }
1655                         _ => {
1656                             err.span_label(
1657                                 arrow_span,
1658                                 "while parsing the `match` arm starting here",
1659                             );
1660                         }
1661                     }
1662                     err
1663                 },
1664             )?;
1665         } else {
1666             self.eat(&token::Comma);
1667         }
1668
1669         Ok(ast::Arm {
1670             attrs,
1671             pat,
1672             guard,
1673             body: expr,
1674             span: lo.to(hi),
1675             id: DUMMY_NODE_ID,
1676             is_placeholder: false,
1677         })
1678     }
1679
1680     /// Parses a `try {...}` expression (`try` token already eaten).
1681     fn parse_try_block(&mut self, span_lo: Span, mut attrs: AttrVec) -> PResult<'a, P<Expr>> {
1682         let (iattrs, body) = self.parse_inner_attrs_and_block()?;
1683         attrs.extend(iattrs);
1684         if self.eat_keyword(kw::Catch) {
1685             let mut error =
1686                 self.struct_span_err(self.prev_span, "keyword `catch` cannot follow a `try` block");
1687             error.help("try using `match` on the result of the `try` block instead");
1688             error.emit();
1689             Err(error)
1690         } else {
1691             let span = span_lo.to(body.span);
1692             self.sess.gated_spans.gate(sym::try_blocks, span);
1693             Ok(self.mk_expr(span, ExprKind::TryBlock(body), attrs))
1694         }
1695     }
1696
1697     fn is_do_catch_block(&self) -> bool {
1698         self.token.is_keyword(kw::Do)
1699             && self.is_keyword_ahead(1, &[kw::Catch])
1700             && self.look_ahead(2, |t| *t == token::OpenDelim(token::Brace))
1701             && !self.restrictions.contains(Restrictions::NO_STRUCT_LITERAL)
1702     }
1703
1704     fn is_try_block(&self) -> bool {
1705         self.token.is_keyword(kw::Try) &&
1706         self.look_ahead(1, |t| *t == token::OpenDelim(token::Brace)) &&
1707         self.token.span.rust_2018() &&
1708         // Prevent `while try {} {}`, `if try {} {} else {}`, etc.
1709         !self.restrictions.contains(Restrictions::NO_STRUCT_LITERAL)
1710     }
1711
1712     /// Parses an `async move? {...}` expression.
1713     fn parse_async_block(&mut self, mut attrs: AttrVec) -> PResult<'a, P<Expr>> {
1714         let lo = self.token.span;
1715         self.expect_keyword(kw::Async)?;
1716         let capture_clause = self.parse_capture_clause();
1717         let (iattrs, body) = self.parse_inner_attrs_and_block()?;
1718         attrs.extend(iattrs);
1719         let kind = ExprKind::Async(capture_clause, DUMMY_NODE_ID, body);
1720         Ok(self.mk_expr(lo.to(self.prev_span), kind, attrs))
1721     }
1722
1723     fn is_async_block(&self) -> bool {
1724         self.token.is_keyword(kw::Async)
1725             && ((
1726                 // `async move {`
1727                 self.is_keyword_ahead(1, &[kw::Move])
1728                     && self.look_ahead(2, |t| *t == token::OpenDelim(token::Brace))
1729             ) || (
1730                 // `async {`
1731                 self.look_ahead(1, |t| *t == token::OpenDelim(token::Brace))
1732             ))
1733     }
1734
1735     fn is_certainly_not_a_block(&self) -> bool {
1736         self.look_ahead(1, |t| t.is_ident())
1737             && (
1738                 // `{ ident, ` cannot start a block.
1739                 self.look_ahead(2, |t| t == &token::Comma)
1740                     || self.look_ahead(2, |t| t == &token::Colon)
1741                         && (
1742                             // `{ ident: token, ` cannot start a block.
1743                             self.look_ahead(4, |t| t == &token::Comma) ||
1744                 // `{ ident: ` cannot start a block unless it's a type ascription `ident: Type`.
1745                 self.look_ahead(3, |t| !t.can_begin_type())
1746                         )
1747             )
1748     }
1749
1750     fn maybe_parse_struct_expr(
1751         &mut self,
1752         lo: Span,
1753         path: &ast::Path,
1754         attrs: &AttrVec,
1755     ) -> Option<PResult<'a, P<Expr>>> {
1756         let struct_allowed = !self.restrictions.contains(Restrictions::NO_STRUCT_LITERAL);
1757         if struct_allowed || self.is_certainly_not_a_block() {
1758             // This is a struct literal, but we don't can't accept them here.
1759             let expr = self.parse_struct_expr(lo, path.clone(), attrs.clone());
1760             if let (Ok(expr), false) = (&expr, struct_allowed) {
1761                 self.error_struct_lit_not_allowed_here(lo, expr.span);
1762             }
1763             return Some(expr);
1764         }
1765         None
1766     }
1767
1768     fn error_struct_lit_not_allowed_here(&self, lo: Span, sp: Span) {
1769         self.struct_span_err(sp, "struct literals are not allowed here")
1770             .multipart_suggestion(
1771                 "surround the struct literal with parentheses",
1772                 vec![(lo.shrink_to_lo(), "(".to_string()), (sp.shrink_to_hi(), ")".to_string())],
1773                 Applicability::MachineApplicable,
1774             )
1775             .emit();
1776     }
1777
1778     pub(super) fn parse_struct_expr(
1779         &mut self,
1780         lo: Span,
1781         pth: ast::Path,
1782         mut attrs: AttrVec,
1783     ) -> PResult<'a, P<Expr>> {
1784         let struct_sp = lo.to(self.prev_span);
1785         self.bump();
1786         let mut fields = Vec::new();
1787         let mut base = None;
1788
1789         attrs.extend(self.parse_inner_attributes()?);
1790
1791         while self.token != token::CloseDelim(token::Brace) {
1792             if self.eat(&token::DotDot) {
1793                 let exp_span = self.prev_span;
1794                 match self.parse_expr() {
1795                     Ok(e) => base = Some(e),
1796                     Err(mut e) => {
1797                         e.emit();
1798                         self.recover_stmt();
1799                     }
1800                 }
1801                 self.recover_struct_comma_after_dotdot(exp_span);
1802                 break;
1803             }
1804
1805             let recovery_field = self.find_struct_error_after_field_looking_code();
1806             let parsed_field = match self.parse_field() {
1807                 Ok(f) => Some(f),
1808                 Err(mut e) => {
1809                     e.span_label(struct_sp, "while parsing this struct");
1810                     e.emit();
1811
1812                     // If the next token is a comma, then try to parse
1813                     // what comes next as additional fields, rather than
1814                     // bailing out until next `}`.
1815                     if self.token != token::Comma {
1816                         self.recover_stmt_(SemiColonMode::Comma, BlockMode::Ignore);
1817                         if self.token != token::Comma {
1818                             break;
1819                         }
1820                     }
1821                     None
1822                 }
1823             };
1824
1825             match self.expect_one_of(&[token::Comma], &[token::CloseDelim(token::Brace)]) {
1826                 Ok(_) => {
1827                     if let Some(f) = parsed_field.or(recovery_field) {
1828                         // Only include the field if there's no parse error for the field name.
1829                         fields.push(f);
1830                     }
1831                 }
1832                 Err(mut e) => {
1833                     e.span_label(struct_sp, "while parsing this struct");
1834                     if let Some(f) = recovery_field {
1835                         fields.push(f);
1836                         e.span_suggestion(
1837                             self.prev_span.shrink_to_hi(),
1838                             "try adding a comma",
1839                             ",".into(),
1840                             Applicability::MachineApplicable,
1841                         );
1842                     }
1843                     e.emit();
1844                     self.recover_stmt_(SemiColonMode::Comma, BlockMode::Ignore);
1845                     self.eat(&token::Comma);
1846                 }
1847             }
1848         }
1849
1850         let span = lo.to(self.token.span);
1851         self.expect(&token::CloseDelim(token::Brace))?;
1852         Ok(self.mk_expr(span, ExprKind::Struct(pth, fields, base), attrs))
1853     }
1854
1855     /// Use in case of error after field-looking code: `S { foo: () with a }`.
1856     fn find_struct_error_after_field_looking_code(&self) -> Option<Field> {
1857         if let token::Ident(name, _) = self.token.kind {
1858             if !self.token.is_reserved_ident() && self.look_ahead(1, |t| *t == token::Colon) {
1859                 let span = self.token.span;
1860                 return Some(ast::Field {
1861                     ident: Ident::new(name, span),
1862                     span,
1863                     expr: self.mk_expr_err(span),
1864                     is_shorthand: false,
1865                     attrs: AttrVec::new(),
1866                     id: DUMMY_NODE_ID,
1867                     is_placeholder: false,
1868                 });
1869             }
1870         }
1871         None
1872     }
1873
1874     fn recover_struct_comma_after_dotdot(&mut self, span: Span) {
1875         if self.token != token::Comma {
1876             return;
1877         }
1878         self.struct_span_err(span.to(self.prev_span), "cannot use a comma after the base struct")
1879             .span_suggestion_short(
1880                 self.token.span,
1881                 "remove this comma",
1882                 String::new(),
1883                 Applicability::MachineApplicable,
1884             )
1885             .note("the base struct must always be the last field")
1886             .emit();
1887         self.recover_stmt();
1888     }
1889
1890     /// Parses `ident (COLON expr)?`.
1891     fn parse_field(&mut self) -> PResult<'a, Field> {
1892         let attrs = self.parse_outer_attributes()?.into();
1893         let lo = self.token.span;
1894
1895         // Check if a colon exists one ahead. This means we're parsing a fieldname.
1896         let is_shorthand = !self.look_ahead(1, |t| t == &token::Colon || t == &token::Eq);
1897         let (ident, expr) = if is_shorthand {
1898             // Mimic `x: x` for the `x` field shorthand.
1899             let ident = self.parse_ident_common(false)?;
1900             let path = ast::Path::from_ident(ident);
1901             (ident, self.mk_expr(ident.span, ExprKind::Path(None, path), AttrVec::new()))
1902         } else {
1903             let ident = self.parse_field_name()?;
1904             self.error_on_eq_field_init(ident);
1905             self.bump(); // `:`
1906             (ident, self.parse_expr()?)
1907         };
1908         Ok(ast::Field {
1909             ident,
1910             span: lo.to(expr.span),
1911             expr,
1912             is_shorthand,
1913             attrs,
1914             id: DUMMY_NODE_ID,
1915             is_placeholder: false,
1916         })
1917     }
1918
1919     /// Check for `=`. This means the source incorrectly attempts to
1920     /// initialize a field with an eq rather than a colon.
1921     fn error_on_eq_field_init(&self, field_name: Ident) {
1922         if self.token != token::Eq {
1923             return;
1924         }
1925
1926         self.struct_span_err(self.token.span, "expected `:`, found `=`")
1927             .span_suggestion(
1928                 field_name.span.shrink_to_hi().to(self.token.span),
1929                 "replace equals symbol with a colon",
1930                 ":".to_string(),
1931                 Applicability::MachineApplicable,
1932             )
1933             .emit();
1934     }
1935
1936     fn err_dotdotdot_syntax(&self, span: Span) {
1937         self.struct_span_err(span, "unexpected token: `...`")
1938             .span_suggestion(
1939                 span,
1940                 "use `..` for an exclusive range",
1941                 "..".to_owned(),
1942                 Applicability::MaybeIncorrect,
1943             )
1944             .span_suggestion(
1945                 span,
1946                 "or `..=` for an inclusive range",
1947                 "..=".to_owned(),
1948                 Applicability::MaybeIncorrect,
1949             )
1950             .emit();
1951     }
1952
1953     fn err_larrow_operator(&self, span: Span) {
1954         self.struct_span_err(span, "unexpected token: `<-`")
1955             .span_suggestion(
1956                 span,
1957                 "if you meant to write a comparison against a negative value, add a \
1958              space in between `<` and `-`",
1959                 "< -".to_string(),
1960                 Applicability::MaybeIncorrect,
1961             )
1962             .emit();
1963     }
1964
1965     fn mk_assign_op(&self, binop: BinOp, lhs: P<Expr>, rhs: P<Expr>) -> ExprKind {
1966         ExprKind::AssignOp(binop, lhs, rhs)
1967     }
1968
1969     fn mk_range(
1970         &self,
1971         start: Option<P<Expr>>,
1972         end: Option<P<Expr>>,
1973         limits: RangeLimits,
1974     ) -> PResult<'a, ExprKind> {
1975         if end.is_none() && limits == RangeLimits::Closed {
1976             self.error_inclusive_range_with_no_end(self.prev_span);
1977             Ok(ExprKind::Err)
1978         } else {
1979             Ok(ExprKind::Range(start, end, limits))
1980         }
1981     }
1982
1983     fn mk_unary(&self, unop: UnOp, expr: P<Expr>) -> ExprKind {
1984         ExprKind::Unary(unop, expr)
1985     }
1986
1987     fn mk_binary(&self, binop: BinOp, lhs: P<Expr>, rhs: P<Expr>) -> ExprKind {
1988         ExprKind::Binary(binop, lhs, rhs)
1989     }
1990
1991     fn mk_index(&self, expr: P<Expr>, idx: P<Expr>) -> ExprKind {
1992         ExprKind::Index(expr, idx)
1993     }
1994
1995     fn mk_call(&self, f: P<Expr>, args: Vec<P<Expr>>) -> ExprKind {
1996         ExprKind::Call(f, args)
1997     }
1998
1999     fn mk_await_expr(&mut self, self_arg: P<Expr>, lo: Span) -> PResult<'a, P<Expr>> {
2000         let span = lo.to(self.prev_span);
2001         let await_expr = self.mk_expr(span, ExprKind::Await(self_arg), AttrVec::new());
2002         self.recover_from_await_method_call();
2003         Ok(await_expr)
2004     }
2005
2006     crate fn mk_expr(&self, span: Span, kind: ExprKind, attrs: AttrVec) -> P<Expr> {
2007         P(Expr { kind, span, attrs, id: DUMMY_NODE_ID })
2008     }
2009
2010     pub(super) fn mk_expr_err(&self, span: Span) -> P<Expr> {
2011         self.mk_expr(span, ExprKind::Err, AttrVec::new())
2012     }
2013 }