]> git.lizzy.rs Git - rust.git/blob - src/libsyntax/parse/parser.rs
Rollup merge of #57369 - petrhosek:llvm-libcxx, r=alexcrichton
[rust.git] / src / libsyntax / parse / parser.rs
1 use rustc_target::spec::abi::{self, Abi};
2 use ast::{AngleBracketedArgs, ParenthesisedArgs, AttrStyle, BareFnTy};
3 use ast::{GenericBound, TraitBoundModifier};
4 use ast::Unsafety;
5 use ast::{Mod, AnonConst, Arg, Arm, Guard, Attribute, BindingMode, TraitItemKind};
6 use ast::Block;
7 use ast::{BlockCheckMode, CaptureBy, Movability};
8 use ast::{Constness, Crate};
9 use ast::Defaultness;
10 use ast::EnumDef;
11 use ast::{Expr, ExprKind, RangeLimits};
12 use ast::{Field, FnDecl, FnHeader};
13 use ast::{ForeignItem, ForeignItemKind, FunctionRetTy};
14 use ast::{GenericParam, GenericParamKind};
15 use ast::GenericArg;
16 use ast::{Ident, ImplItem, IsAsync, IsAuto, Item, ItemKind};
17 use ast::{Label, Lifetime, Lit, LitKind};
18 use ast::Local;
19 use ast::MacStmtStyle;
20 use ast::{Mac, Mac_, MacDelimiter};
21 use ast::{MutTy, Mutability};
22 use ast::{Pat, PatKind, PathSegment};
23 use ast::{PolyTraitRef, QSelf};
24 use ast::{Stmt, StmtKind};
25 use ast::{VariantData, StructField};
26 use ast::StrStyle;
27 use ast::SelfKind;
28 use ast::{TraitItem, TraitRef, TraitObjectSyntax};
29 use ast::{Ty, TyKind, TypeBinding, GenericBounds};
30 use ast::{Visibility, VisibilityKind, WhereClause, CrateSugar};
31 use ast::{UseTree, UseTreeKind};
32 use ast::{BinOpKind, UnOp};
33 use ast::{RangeEnd, RangeSyntax};
34 use {ast, attr};
35 use ext::base::DummyResult;
36 use source_map::{self, SourceMap, Spanned, respan};
37 use syntax_pos::{self, Span, MultiSpan, BytePos, FileName};
38 use errors::{self, Applicability, DiagnosticBuilder, DiagnosticId};
39 use parse::{self, SeqSep, classify, token};
40 use parse::lexer::TokenAndSpan;
41 use parse::lexer::comments::{doc_comment_style, strip_doc_comment_decoration};
42 use parse::token::DelimToken;
43 use parse::{new_sub_parser_from_file, ParseSess, Directory, DirectoryOwnership};
44 use util::parser::{AssocOp, Fixity};
45 use print::pprust;
46 use ptr::P;
47 use parse::PResult;
48 use ThinVec;
49 use tokenstream::{self, DelimSpan, ThinTokenStream, TokenTree, TokenStream};
50 use symbol::{Symbol, keywords};
51
52 use std::borrow::Cow;
53 use std::cmp;
54 use std::mem;
55 use std::path::{self, Path, PathBuf};
56 use std::slice;
57
58 #[derive(Debug)]
59 /// Whether the type alias or associated type is a concrete type or an existential type
60 pub enum AliasKind {
61     /// Just a new name for the same type
62     Weak(P<Ty>),
63     /// Only trait impls of the type will be usable, not the actual type itself
64     Existential(GenericBounds),
65 }
66
67 bitflags! {
68     struct Restrictions: u8 {
69         const STMT_EXPR         = 1 << 0;
70         const NO_STRUCT_LITERAL = 1 << 1;
71     }
72 }
73
74 type ItemInfo = (Ident, ItemKind, Option<Vec<Attribute>>);
75
76 /// How to parse a path.
77 #[derive(Copy, Clone, PartialEq)]
78 pub enum PathStyle {
79     /// In some contexts, notably in expressions, paths with generic arguments are ambiguous
80     /// with something else. For example, in expressions `segment < ....` can be interpreted
81     /// as a comparison and `segment ( ....` can be interpreted as a function call.
82     /// In all such contexts the non-path interpretation is preferred by default for practical
83     /// reasons, but the path interpretation can be forced by the disambiguator `::`, e.g.
84     /// `x<y>` - comparisons, `x::<y>` - unambiguously a path.
85     Expr,
86     /// In other contexts, notably in types, no ambiguity exists and paths can be written
87     /// without the disambiguator, e.g., `x<y>` - unambiguously a path.
88     /// Paths with disambiguators are still accepted, `x::<Y>` - unambiguously a path too.
89     Type,
90     /// A path with generic arguments disallowed, e.g., `foo::bar::Baz`, used in imports,
91     /// visibilities or attributes.
92     /// Technically, this variant is unnecessary and e.g., `Expr` can be used instead
93     /// (paths in "mod" contexts have to be checked later for absence of generic arguments
94     /// anyway, due to macros), but it is used to avoid weird suggestions about expected
95     /// tokens when something goes wrong.
96     Mod,
97 }
98
99 #[derive(Clone, Copy, PartialEq, Debug)]
100 enum SemiColonMode {
101     Break,
102     Ignore,
103 }
104
105 #[derive(Clone, Copy, PartialEq, Debug)]
106 enum BlockMode {
107     Break,
108     Ignore,
109 }
110
111 /// Possibly accept an `token::Interpolated` expression (a pre-parsed expression
112 /// dropped into the token stream, which happens while parsing the result of
113 /// macro expansion). Placement of these is not as complex as I feared it would
114 /// be. The important thing is to make sure that lookahead doesn't balk at
115 /// `token::Interpolated` tokens.
116 macro_rules! maybe_whole_expr {
117     ($p:expr) => {
118         if let token::Interpolated(nt) = $p.token.clone() {
119             match nt.0 {
120                 token::NtExpr(ref e) | token::NtLiteral(ref e) => {
121                     $p.bump();
122                     return Ok((*e).clone());
123                 }
124                 token::NtPath(ref path) => {
125                     $p.bump();
126                     let span = $p.span;
127                     let kind = ExprKind::Path(None, (*path).clone());
128                     return Ok($p.mk_expr(span, kind, ThinVec::new()));
129                 }
130                 token::NtBlock(ref block) => {
131                     $p.bump();
132                     let span = $p.span;
133                     let kind = ExprKind::Block((*block).clone(), None);
134                     return Ok($p.mk_expr(span, kind, ThinVec::new()));
135                 }
136                 _ => {},
137             };
138         }
139     }
140 }
141
142 /// As maybe_whole_expr, but for things other than expressions
143 macro_rules! maybe_whole {
144     ($p:expr, $constructor:ident, |$x:ident| $e:expr) => {
145         if let token::Interpolated(nt) = $p.token.clone() {
146             if let token::$constructor($x) = nt.0.clone() {
147                 $p.bump();
148                 return Ok($e);
149             }
150         }
151     };
152 }
153
154 fn maybe_append(mut lhs: Vec<Attribute>, mut rhs: Option<Vec<Attribute>>) -> Vec<Attribute> {
155     if let Some(ref mut rhs) = rhs {
156         lhs.append(rhs);
157     }
158     lhs
159 }
160
161 #[derive(Debug, Clone, Copy, PartialEq)]
162 enum PrevTokenKind {
163     DocComment,
164     Comma,
165     Plus,
166     Interpolated,
167     Eof,
168     Ident,
169     Other,
170 }
171
172 trait RecoverQPath: Sized {
173     const PATH_STYLE: PathStyle = PathStyle::Expr;
174     fn to_ty(&self) -> Option<P<Ty>>;
175     fn to_recovered(&self, qself: Option<QSelf>, path: ast::Path) -> Self;
176     fn to_string(&self) -> String;
177 }
178
179 impl RecoverQPath for Ty {
180     const PATH_STYLE: PathStyle = PathStyle::Type;
181     fn to_ty(&self) -> Option<P<Ty>> {
182         Some(P(self.clone()))
183     }
184     fn to_recovered(&self, qself: Option<QSelf>, path: ast::Path) -> Self {
185         Self { span: path.span, node: TyKind::Path(qself, path), id: self.id }
186     }
187     fn to_string(&self) -> String {
188         pprust::ty_to_string(self)
189     }
190 }
191
192 impl RecoverQPath for Pat {
193     fn to_ty(&self) -> Option<P<Ty>> {
194         self.to_ty()
195     }
196     fn to_recovered(&self, qself: Option<QSelf>, path: ast::Path) -> Self {
197         Self { span: path.span, node: PatKind::Path(qself, path), id: self.id }
198     }
199     fn to_string(&self) -> String {
200         pprust::pat_to_string(self)
201     }
202 }
203
204 impl RecoverQPath for Expr {
205     fn to_ty(&self) -> Option<P<Ty>> {
206         self.to_ty()
207     }
208     fn to_recovered(&self, qself: Option<QSelf>, path: ast::Path) -> Self {
209         Self { span: path.span, node: ExprKind::Path(qself, path),
210                id: self.id, attrs: self.attrs.clone() }
211     }
212     fn to_string(&self) -> String {
213         pprust::expr_to_string(self)
214     }
215 }
216
217 /* ident is handled by common.rs */
218
219 #[derive(Clone)]
220 pub struct Parser<'a> {
221     pub sess: &'a ParseSess,
222     /// the current token:
223     pub token: token::Token,
224     /// the span of the current token:
225     pub span: Span,
226     /// the span of the previous token:
227     meta_var_span: Option<Span>,
228     pub prev_span: Span,
229     /// the previous token kind
230     prev_token_kind: PrevTokenKind,
231     restrictions: Restrictions,
232     /// Used to determine the path to externally loaded source files
233     crate directory: Directory<'a>,
234     /// Whether to parse sub-modules in other files.
235     pub recurse_into_file_modules: bool,
236     /// Name of the root module this parser originated from. If `None`, then the
237     /// name is not known. This does not change while the parser is descending
238     /// into modules, and sub-parsers have new values for this name.
239     pub root_module_name: Option<String>,
240     crate expected_tokens: Vec<TokenType>,
241     token_cursor: TokenCursor,
242     desugar_doc_comments: bool,
243     /// Whether we should configure out of line modules as we parse.
244     pub cfg_mods: bool,
245 }
246
247
248 #[derive(Clone)]
249 struct TokenCursor {
250     frame: TokenCursorFrame,
251     stack: Vec<TokenCursorFrame>,
252 }
253
254 #[derive(Clone)]
255 struct TokenCursorFrame {
256     delim: token::DelimToken,
257     span: DelimSpan,
258     open_delim: bool,
259     tree_cursor: tokenstream::Cursor,
260     close_delim: bool,
261     last_token: LastToken,
262 }
263
264 /// This is used in `TokenCursorFrame` above to track tokens that are consumed
265 /// by the parser, and then that's transitively used to record the tokens that
266 /// each parse AST item is created with.
267 ///
268 /// Right now this has two states, either collecting tokens or not collecting
269 /// tokens. If we're collecting tokens we just save everything off into a local
270 /// `Vec`. This should eventually though likely save tokens from the original
271 /// token stream and just use slicing of token streams to avoid creation of a
272 /// whole new vector.
273 ///
274 /// The second state is where we're passively not recording tokens, but the last
275 /// token is still tracked for when we want to start recording tokens. This
276 /// "last token" means that when we start recording tokens we'll want to ensure
277 /// that this, the first token, is included in the output.
278 ///
279 /// You can find some more example usage of this in the `collect_tokens` method
280 /// on the parser.
281 #[derive(Clone)]
282 enum LastToken {
283     Collecting(Vec<TokenStream>),
284     Was(Option<TokenStream>),
285 }
286
287 impl TokenCursorFrame {
288     fn new(sp: DelimSpan, delim: DelimToken, tts: &ThinTokenStream) -> Self {
289         TokenCursorFrame {
290             delim: delim,
291             span: sp,
292             open_delim: delim == token::NoDelim,
293             tree_cursor: tts.stream().into_trees(),
294             close_delim: delim == token::NoDelim,
295             last_token: LastToken::Was(None),
296         }
297     }
298 }
299
300 impl TokenCursor {
301     fn next(&mut self) -> TokenAndSpan {
302         loop {
303             let tree = if !self.frame.open_delim {
304                 self.frame.open_delim = true;
305                 TokenTree::open_tt(self.frame.span.open, self.frame.delim)
306             } else if let Some(tree) = self.frame.tree_cursor.next() {
307                 tree
308             } else if !self.frame.close_delim {
309                 self.frame.close_delim = true;
310                 TokenTree::close_tt(self.frame.span.close, self.frame.delim)
311             } else if let Some(frame) = self.stack.pop() {
312                 self.frame = frame;
313                 continue
314             } else {
315                 return TokenAndSpan { tok: token::Eof, sp: syntax_pos::DUMMY_SP }
316             };
317
318             match self.frame.last_token {
319                 LastToken::Collecting(ref mut v) => v.push(tree.clone().into()),
320                 LastToken::Was(ref mut t) => *t = Some(tree.clone().into()),
321             }
322
323             match tree {
324                 TokenTree::Token(sp, tok) => return TokenAndSpan { tok: tok, sp: sp },
325                 TokenTree::Delimited(sp, delim, tts) => {
326                     let frame = TokenCursorFrame::new(sp, delim, &tts);
327                     self.stack.push(mem::replace(&mut self.frame, frame));
328                 }
329             }
330         }
331     }
332
333     fn next_desugared(&mut self) -> TokenAndSpan {
334         let (sp, name) = match self.next() {
335             TokenAndSpan { sp, tok: token::DocComment(name) } => (sp, name),
336             tok => return tok,
337         };
338
339         let stripped = strip_doc_comment_decoration(&name.as_str());
340
341         // Searches for the occurrences of `"#*` and returns the minimum number of `#`s
342         // required to wrap the text.
343         let mut num_of_hashes = 0;
344         let mut count = 0;
345         for ch in stripped.chars() {
346             count = match ch {
347                 '"' => 1,
348                 '#' if count > 0 => count + 1,
349                 _ => 0,
350             };
351             num_of_hashes = cmp::max(num_of_hashes, count);
352         }
353
354         let delim_span = DelimSpan::from_single(sp);
355         let body = TokenTree::Delimited(
356             delim_span,
357             token::Bracket,
358             [TokenTree::Token(sp, token::Ident(ast::Ident::from_str("doc"), false)),
359              TokenTree::Token(sp, token::Eq),
360              TokenTree::Token(sp, token::Literal(
361                 token::StrRaw(Symbol::intern(&stripped), num_of_hashes), None))
362             ]
363             .iter().cloned().collect::<TokenStream>().into(),
364         );
365
366         self.stack.push(mem::replace(&mut self.frame, TokenCursorFrame::new(
367             delim_span,
368             token::NoDelim,
369             &if doc_comment_style(&name.as_str()) == AttrStyle::Inner {
370                 [TokenTree::Token(sp, token::Pound), TokenTree::Token(sp, token::Not), body]
371                     .iter().cloned().collect::<TokenStream>().into()
372             } else {
373                 [TokenTree::Token(sp, token::Pound), body]
374                     .iter().cloned().collect::<TokenStream>().into()
375             },
376         )));
377
378         self.next()
379     }
380 }
381
382 #[derive(Clone, PartialEq)]
383 crate enum TokenType {
384     Token(token::Token),
385     Keyword(keywords::Keyword),
386     Operator,
387     Lifetime,
388     Ident,
389     Path,
390     Type,
391 }
392
393 impl TokenType {
394     fn to_string(&self) -> String {
395         match *self {
396             TokenType::Token(ref t) => format!("`{}`", pprust::token_to_string(t)),
397             TokenType::Keyword(kw) => format!("`{}`", kw.name()),
398             TokenType::Operator => "an operator".to_string(),
399             TokenType::Lifetime => "lifetime".to_string(),
400             TokenType::Ident => "identifier".to_string(),
401             TokenType::Path => "path".to_string(),
402             TokenType::Type => "type".to_string(),
403         }
404     }
405 }
406
407 /// Returns true if `IDENT t` can start a type - `IDENT::a::b`, `IDENT<u8, u8>`,
408 /// `IDENT<<u8 as Trait>::AssocTy>`.
409 ///
410 /// Types can also be of the form `IDENT(u8, u8) -> u8`, however this assumes
411 /// that IDENT is not the ident of a fn trait
412 fn can_continue_type_after_non_fn_ident(t: &token::Token) -> bool {
413     t == &token::ModSep || t == &token::Lt ||
414     t == &token::BinOp(token::Shl)
415 }
416
417 /// Information about the path to a module.
418 pub struct ModulePath {
419     name: String,
420     path_exists: bool,
421     pub result: Result<ModulePathSuccess, Error>,
422 }
423
424 pub struct ModulePathSuccess {
425     pub path: PathBuf,
426     pub directory_ownership: DirectoryOwnership,
427     warn: bool,
428 }
429
430 pub enum Error {
431     FileNotFoundForModule {
432         mod_name: String,
433         default_path: String,
434         secondary_path: String,
435         dir_path: String,
436     },
437     DuplicatePaths {
438         mod_name: String,
439         default_path: String,
440         secondary_path: String,
441     },
442     UselessDocComment,
443     InclusiveRangeWithNoEnd,
444 }
445
446 impl Error {
447     fn span_err<S: Into<MultiSpan>>(self,
448                                         sp: S,
449                                         handler: &errors::Handler) -> DiagnosticBuilder {
450         match self {
451             Error::FileNotFoundForModule { ref mod_name,
452                                            ref default_path,
453                                            ref secondary_path,
454                                            ref dir_path } => {
455                 let mut err = struct_span_err!(handler, sp, E0583,
456                                                "file not found for module `{}`", mod_name);
457                 err.help(&format!("name the file either {} or {} inside the directory \"{}\"",
458                                   default_path,
459                                   secondary_path,
460                                   dir_path));
461                 err
462             }
463             Error::DuplicatePaths { ref mod_name, ref default_path, ref secondary_path } => {
464                 let mut err = struct_span_err!(handler, sp, E0584,
465                                                "file for module `{}` found at both {} and {}",
466                                                mod_name,
467                                                default_path,
468                                                secondary_path);
469                 err.help("delete or rename one of them to remove the ambiguity");
470                 err
471             }
472             Error::UselessDocComment => {
473                 let mut err = struct_span_err!(handler, sp, E0585,
474                                   "found a documentation comment that doesn't document anything");
475                 err.help("doc comments must come before what they document, maybe a comment was \
476                           intended with `//`?");
477                 err
478             }
479             Error::InclusiveRangeWithNoEnd => {
480                 let mut err = struct_span_err!(handler, sp, E0586,
481                                                "inclusive range with no end");
482                 err.help("inclusive ranges must be bounded at the end (`..=b` or `a..=b`)");
483                 err
484             }
485         }
486     }
487 }
488
489 #[derive(Debug)]
490 enum LhsExpr {
491     NotYetParsed,
492     AttributesParsed(ThinVec<Attribute>),
493     AlreadyParsed(P<Expr>),
494 }
495
496 impl From<Option<ThinVec<Attribute>>> for LhsExpr {
497     fn from(o: Option<ThinVec<Attribute>>) -> Self {
498         if let Some(attrs) = o {
499             LhsExpr::AttributesParsed(attrs)
500         } else {
501             LhsExpr::NotYetParsed
502         }
503     }
504 }
505
506 impl From<P<Expr>> for LhsExpr {
507     fn from(expr: P<Expr>) -> Self {
508         LhsExpr::AlreadyParsed(expr)
509     }
510 }
511
512 /// Create a placeholder argument.
513 fn dummy_arg(span: Span) -> Arg {
514     let ident = Ident::new(keywords::Invalid.name(), span);
515     let pat = P(Pat {
516         id: ast::DUMMY_NODE_ID,
517         node: PatKind::Ident(BindingMode::ByValue(Mutability::Immutable), ident, None),
518         span,
519     });
520     let ty = Ty {
521         node: TyKind::Err,
522         span,
523         id: ast::DUMMY_NODE_ID
524     };
525     Arg { ty: P(ty), pat: pat, id: ast::DUMMY_NODE_ID }
526 }
527
528 #[derive(Copy, Clone, Debug)]
529 enum TokenExpectType {
530     Expect,
531     NoExpect,
532 }
533
534 impl<'a> Parser<'a> {
535     pub fn new(sess: &'a ParseSess,
536                tokens: TokenStream,
537                directory: Option<Directory<'a>>,
538                recurse_into_file_modules: bool,
539                desugar_doc_comments: bool)
540                -> Self {
541         let mut parser = Parser {
542             sess,
543             token: token::Whitespace,
544             span: syntax_pos::DUMMY_SP,
545             prev_span: syntax_pos::DUMMY_SP,
546             meta_var_span: None,
547             prev_token_kind: PrevTokenKind::Other,
548             restrictions: Restrictions::empty(),
549             recurse_into_file_modules,
550             directory: Directory {
551                 path: Cow::from(PathBuf::new()),
552                 ownership: DirectoryOwnership::Owned { relative: None }
553             },
554             root_module_name: None,
555             expected_tokens: Vec::new(),
556             token_cursor: TokenCursor {
557                 frame: TokenCursorFrame::new(
558                     DelimSpan::dummy(),
559                     token::NoDelim,
560                     &tokens.into(),
561                 ),
562                 stack: Vec::new(),
563             },
564             desugar_doc_comments,
565             cfg_mods: true,
566         };
567
568         let tok = parser.next_tok();
569         parser.token = tok.tok;
570         parser.span = tok.sp;
571
572         if let Some(directory) = directory {
573             parser.directory = directory;
574         } else if !parser.span.is_dummy() {
575             if let FileName::Real(mut path) = sess.source_map().span_to_unmapped_path(parser.span) {
576                 path.pop();
577                 parser.directory.path = Cow::from(path);
578             }
579         }
580
581         parser.process_potential_macro_variable();
582         parser
583     }
584
585     fn next_tok(&mut self) -> TokenAndSpan {
586         let mut next = if self.desugar_doc_comments {
587             self.token_cursor.next_desugared()
588         } else {
589             self.token_cursor.next()
590         };
591         if next.sp.is_dummy() {
592             // Tweak the location for better diagnostics, but keep syntactic context intact.
593             next.sp = self.prev_span.with_ctxt(next.sp.ctxt());
594         }
595         next
596     }
597
598     /// Convert the current token to a string using self's reader
599     pub fn this_token_to_string(&self) -> String {
600         pprust::token_to_string(&self.token)
601     }
602
603     fn token_descr(&self) -> Option<&'static str> {
604         Some(match &self.token {
605             t if t.is_special_ident() => "reserved identifier",
606             t if t.is_used_keyword() => "keyword",
607             t if t.is_unused_keyword() => "reserved keyword",
608             token::DocComment(..) => "doc comment",
609             _ => return None,
610         })
611     }
612
613     fn this_token_descr(&self) -> String {
614         if let Some(prefix) = self.token_descr() {
615             format!("{} `{}`", prefix, self.this_token_to_string())
616         } else {
617             format!("`{}`", self.this_token_to_string())
618         }
619     }
620
621     fn unexpected_last<T>(&self, t: &token::Token) -> PResult<'a, T> {
622         let token_str = pprust::token_to_string(t);
623         Err(self.span_fatal(self.prev_span, &format!("unexpected token: `{}`", token_str)))
624     }
625
626     crate fn unexpected<T>(&mut self) -> PResult<'a, T> {
627         match self.expect_one_of(&[], &[]) {
628             Err(e) => Err(e),
629             Ok(_) => unreachable!(),
630         }
631     }
632
633     /// Expect and consume the token t. Signal an error if
634     /// the next token is not t.
635     pub fn expect(&mut self, t: &token::Token) -> PResult<'a,  ()> {
636         if self.expected_tokens.is_empty() {
637             if self.token == *t {
638                 self.bump();
639                 Ok(())
640             } else {
641                 let token_str = pprust::token_to_string(t);
642                 let this_token_str = self.this_token_descr();
643                 let mut err = self.fatal(&format!("expected `{}`, found {}",
644                                                   token_str,
645                                                   this_token_str));
646
647                 let sp = if self.token == token::Token::Eof {
648                     // EOF, don't want to point at the following char, but rather the last token
649                     self.prev_span
650                 } else {
651                     self.sess.source_map().next_point(self.prev_span)
652                 };
653                 let label_exp = format!("expected `{}`", token_str);
654                 let cm = self.sess.source_map();
655                 match (cm.lookup_line(self.span.lo()), cm.lookup_line(sp.lo())) {
656                     (Ok(ref a), Ok(ref b)) if a.line == b.line => {
657                         // When the spans are in the same line, it means that the only content
658                         // between them is whitespace, point only at the found token.
659                         err.span_label(self.span, label_exp);
660                     }
661                     _ => {
662                         err.span_label(sp, label_exp);
663                         err.span_label(self.span, "unexpected token");
664                     }
665                 }
666                 Err(err)
667             }
668         } else {
669             self.expect_one_of(slice::from_ref(t), &[])
670         }
671     }
672
673     /// Expect next token to be edible or inedible token.  If edible,
674     /// then consume it; if inedible, then return without consuming
675     /// anything.  Signal a fatal error if next token is unexpected.
676     pub fn expect_one_of(&mut self,
677                          edible: &[token::Token],
678                          inedible: &[token::Token]) -> PResult<'a,  ()>{
679         fn tokens_to_string(tokens: &[TokenType]) -> String {
680             let mut i = tokens.iter();
681             // This might be a sign we need a connect method on Iterator.
682             let b = i.next()
683                      .map_or(String::new(), |t| t.to_string());
684             i.enumerate().fold(b, |mut b, (i, a)| {
685                 if tokens.len() > 2 && i == tokens.len() - 2 {
686                     b.push_str(", or ");
687                 } else if tokens.len() == 2 && i == tokens.len() - 2 {
688                     b.push_str(" or ");
689                 } else {
690                     b.push_str(", ");
691                 }
692                 b.push_str(&a.to_string());
693                 b
694             })
695         }
696         if edible.contains(&self.token) {
697             self.bump();
698             Ok(())
699         } else if inedible.contains(&self.token) {
700             // leave it in the input
701             Ok(())
702         } else {
703             let mut expected = edible.iter()
704                 .map(|x| TokenType::Token(x.clone()))
705                 .chain(inedible.iter().map(|x| TokenType::Token(x.clone())))
706                 .chain(self.expected_tokens.iter().cloned())
707                 .collect::<Vec<_>>();
708             expected.sort_by_cached_key(|x| x.to_string());
709             expected.dedup();
710             let expect = tokens_to_string(&expected[..]);
711             let actual = self.this_token_to_string();
712             let (msg_exp, (label_sp, label_exp)) = if expected.len() > 1 {
713                 let short_expect = if expected.len() > 6 {
714                     format!("{} possible tokens", expected.len())
715                 } else {
716                     expect.clone()
717                 };
718                 (format!("expected one of {}, found `{}`", expect, actual),
719                  (self.sess.source_map().next_point(self.prev_span),
720                   format!("expected one of {} here", short_expect)))
721             } else if expected.is_empty() {
722                 (format!("unexpected token: `{}`", actual),
723                  (self.prev_span, "unexpected token after this".to_string()))
724             } else {
725                 (format!("expected {}, found `{}`", expect, actual),
726                  (self.sess.source_map().next_point(self.prev_span),
727                   format!("expected {} here", expect)))
728             };
729             let mut err = self.fatal(&msg_exp);
730             if self.token.is_ident_named("and") {
731                 err.span_suggestion_short_with_applicability(
732                     self.span,
733                     "use `&&` instead of `and` for the boolean operator",
734                     "&&".to_string(),
735                     Applicability::MaybeIncorrect,
736                 );
737             }
738             if self.token.is_ident_named("or") {
739                 err.span_suggestion_short_with_applicability(
740                     self.span,
741                     "use `||` instead of `or` for the boolean operator",
742                     "||".to_string(),
743                     Applicability::MaybeIncorrect,
744                 );
745             }
746             let sp = if self.token == token::Token::Eof {
747                 // This is EOF, don't want to point at the following char, but rather the last token
748                 self.prev_span
749             } else {
750                 label_sp
751             };
752
753             let cm = self.sess.source_map();
754             match (cm.lookup_line(self.span.lo()), cm.lookup_line(sp.lo())) {
755                 (Ok(ref a), Ok(ref b)) if a.line == b.line => {
756                     // When the spans are in the same line, it means that the only content between
757                     // them is whitespace, point at the found token in that case:
758                     //
759                     // X |     () => { syntax error };
760                     //   |                    ^^^^^ expected one of 8 possible tokens here
761                     //
762                     // instead of having:
763                     //
764                     // X |     () => { syntax error };
765                     //   |                   -^^^^^ unexpected token
766                     //   |                   |
767                     //   |                   expected one of 8 possible tokens here
768                     err.span_label(self.span, label_exp);
769                 }
770                 _ if self.prev_span == syntax_pos::DUMMY_SP => {
771                     // Account for macro context where the previous span might not be
772                     // available to avoid incorrect output (#54841).
773                     err.span_label(self.span, "unexpected token");
774                 }
775                 _ => {
776                     err.span_label(sp, label_exp);
777                     err.span_label(self.span, "unexpected token");
778                 }
779             }
780             Err(err)
781         }
782     }
783
784     /// returns the span of expr, if it was not interpolated or the span of the interpolated token
785     fn interpolated_or_expr_span(&self,
786                                  expr: PResult<'a, P<Expr>>)
787                                  -> PResult<'a, (Span, P<Expr>)> {
788         expr.map(|e| {
789             if self.prev_token_kind == PrevTokenKind::Interpolated {
790                 (self.prev_span, e)
791             } else {
792                 (e.span, e)
793             }
794         })
795     }
796
797     fn expected_ident_found(&self) -> DiagnosticBuilder<'a> {
798         let mut err = self.struct_span_err(self.span,
799                                            &format!("expected identifier, found {}",
800                                                     self.this_token_descr()));
801         if let token::Ident(ident, false) = &self.token {
802             if ident.is_reserved() && !ident.is_path_segment_keyword() &&
803                 ident.name != keywords::Underscore.name()
804             {
805                 err.span_suggestion_with_applicability(
806                     self.span,
807                     "you can escape reserved keywords to use them as identifiers",
808                     format!("r#{}", ident),
809                     Applicability::MaybeIncorrect,
810                 );
811             }
812         }
813         if let Some(token_descr) = self.token_descr() {
814             err.span_label(self.span, format!("expected identifier, found {}", token_descr));
815         } else {
816             err.span_label(self.span, "expected identifier");
817             if self.token == token::Comma && self.look_ahead(1, |t| t.is_ident()) {
818                 err.span_suggestion_with_applicability(
819                     self.span,
820                     "remove this comma",
821                     String::new(),
822                     Applicability::MachineApplicable,
823                 );
824             }
825         }
826         err
827     }
828
829     pub fn parse_ident(&mut self) -> PResult<'a, ast::Ident> {
830         self.parse_ident_common(true)
831     }
832
833     fn parse_ident_common(&mut self, recover: bool) -> PResult<'a, ast::Ident> {
834         match self.token {
835             token::Ident(ident, _) => {
836                 if self.token.is_reserved_ident() {
837                     let mut err = self.expected_ident_found();
838                     if recover {
839                         err.emit();
840                     } else {
841                         return Err(err);
842                     }
843                 }
844                 let span = self.span;
845                 self.bump();
846                 Ok(Ident::new(ident.name, span))
847             }
848             _ => {
849                 Err(if self.prev_token_kind == PrevTokenKind::DocComment {
850                         self.span_fatal_err(self.prev_span, Error::UselessDocComment)
851                     } else {
852                         self.expected_ident_found()
853                     })
854             }
855         }
856     }
857
858     /// Check if the next token is `tok`, and return `true` if so.
859     ///
860     /// This method will automatically add `tok` to `expected_tokens` if `tok` is not
861     /// encountered.
862     crate fn check(&mut self, tok: &token::Token) -> bool {
863         let is_present = self.token == *tok;
864         if !is_present { self.expected_tokens.push(TokenType::Token(tok.clone())); }
865         is_present
866     }
867
868     /// Consume token 'tok' if it exists. Returns true if the given
869     /// token was present, false otherwise.
870     pub fn eat(&mut self, tok: &token::Token) -> bool {
871         let is_present = self.check(tok);
872         if is_present { self.bump() }
873         is_present
874     }
875
876     fn check_keyword(&mut self, kw: keywords::Keyword) -> bool {
877         self.expected_tokens.push(TokenType::Keyword(kw));
878         self.token.is_keyword(kw)
879     }
880
881     /// If the next token is the given keyword, eat it and return
882     /// true. Otherwise, return false.
883     pub fn eat_keyword(&mut self, kw: keywords::Keyword) -> bool {
884         if self.check_keyword(kw) {
885             self.bump();
886             true
887         } else {
888             false
889         }
890     }
891
892     fn eat_keyword_noexpect(&mut self, kw: keywords::Keyword) -> bool {
893         if self.token.is_keyword(kw) {
894             self.bump();
895             true
896         } else {
897             false
898         }
899     }
900
901     /// If the given word is not a keyword, signal an error.
902     /// If the next token is not the given word, signal an error.
903     /// Otherwise, eat it.
904     fn expect_keyword(&mut self, kw: keywords::Keyword) -> PResult<'a, ()> {
905         if !self.eat_keyword(kw) {
906             self.unexpected()
907         } else {
908             Ok(())
909         }
910     }
911
912     fn check_ident(&mut self) -> bool {
913         if self.token.is_ident() {
914             true
915         } else {
916             self.expected_tokens.push(TokenType::Ident);
917             false
918         }
919     }
920
921     fn check_path(&mut self) -> bool {
922         if self.token.is_path_start() {
923             true
924         } else {
925             self.expected_tokens.push(TokenType::Path);
926             false
927         }
928     }
929
930     fn check_type(&mut self) -> bool {
931         if self.token.can_begin_type() {
932             true
933         } else {
934             self.expected_tokens.push(TokenType::Type);
935             false
936         }
937     }
938
939     /// Expect and consume a `+`. if `+=` is seen, replace it with a `=`
940     /// and continue. If a `+` is not seen, return false.
941     ///
942     /// This is using when token splitting += into +.
943     /// See issue 47856 for an example of when this may occur.
944     fn eat_plus(&mut self) -> bool {
945         self.expected_tokens.push(TokenType::Token(token::BinOp(token::Plus)));
946         match self.token {
947             token::BinOp(token::Plus) => {
948                 self.bump();
949                 true
950             }
951             token::BinOpEq(token::Plus) => {
952                 let span = self.span.with_lo(self.span.lo() + BytePos(1));
953                 self.bump_with(token::Eq, span);
954                 true
955             }
956             _ => false,
957         }
958     }
959
960
961     /// Checks to see if the next token is either `+` or `+=`.
962     /// Otherwise returns false.
963     fn check_plus(&mut self) -> bool {
964         if self.token.is_like_plus() {
965             true
966         }
967         else {
968             self.expected_tokens.push(TokenType::Token(token::BinOp(token::Plus)));
969             false
970         }
971     }
972
973     /// Expect and consume an `&`. If `&&` is seen, replace it with a single
974     /// `&` and continue. If an `&` is not seen, signal an error.
975     fn expect_and(&mut self) -> PResult<'a, ()> {
976         self.expected_tokens.push(TokenType::Token(token::BinOp(token::And)));
977         match self.token {
978             token::BinOp(token::And) => {
979                 self.bump();
980                 Ok(())
981             }
982             token::AndAnd => {
983                 let span = self.span.with_lo(self.span.lo() + BytePos(1));
984                 Ok(self.bump_with(token::BinOp(token::And), span))
985             }
986             _ => self.unexpected()
987         }
988     }
989
990     /// Expect and consume an `|`. If `||` is seen, replace it with a single
991     /// `|` and continue. If an `|` is not seen, signal an error.
992     fn expect_or(&mut self) -> PResult<'a, ()> {
993         self.expected_tokens.push(TokenType::Token(token::BinOp(token::Or)));
994         match self.token {
995             token::BinOp(token::Or) => {
996                 self.bump();
997                 Ok(())
998             }
999             token::OrOr => {
1000                 let span = self.span.with_lo(self.span.lo() + BytePos(1));
1001                 Ok(self.bump_with(token::BinOp(token::Or), span))
1002             }
1003             _ => self.unexpected()
1004         }
1005     }
1006
1007     fn expect_no_suffix(&self, sp: Span, kind: &str, suffix: Option<ast::Name>) {
1008         match suffix {
1009             None => {/* everything ok */}
1010             Some(suf) => {
1011                 let text = suf.as_str();
1012                 if text.is_empty() {
1013                     self.span_bug(sp, "found empty literal suffix in Some")
1014                 }
1015                 self.span_err(sp, &format!("{} with a suffix is invalid", kind));
1016             }
1017         }
1018     }
1019
1020     /// Attempt to consume a `<`. If `<<` is seen, replace it with a single
1021     /// `<` and continue. If a `<` is not seen, return false.
1022     ///
1023     /// This is meant to be used when parsing generics on a path to get the
1024     /// starting token.
1025     fn eat_lt(&mut self) -> bool {
1026         self.expected_tokens.push(TokenType::Token(token::Lt));
1027         match self.token {
1028             token::Lt => {
1029                 self.bump();
1030                 true
1031             }
1032             token::BinOp(token::Shl) => {
1033                 let span = self.span.with_lo(self.span.lo() + BytePos(1));
1034                 self.bump_with(token::Lt, span);
1035                 true
1036             }
1037             _ => false,
1038         }
1039     }
1040
1041     fn expect_lt(&mut self) -> PResult<'a, ()> {
1042         if !self.eat_lt() {
1043             self.unexpected()
1044         } else {
1045             Ok(())
1046         }
1047     }
1048
1049     /// Expect and consume a GT. if a >> is seen, replace it
1050     /// with a single > and continue. If a GT is not seen,
1051     /// signal an error.
1052     fn expect_gt(&mut self) -> PResult<'a, ()> {
1053         self.expected_tokens.push(TokenType::Token(token::Gt));
1054         match self.token {
1055             token::Gt => {
1056                 self.bump();
1057                 Ok(())
1058             }
1059             token::BinOp(token::Shr) => {
1060                 let span = self.span.with_lo(self.span.lo() + BytePos(1));
1061                 Ok(self.bump_with(token::Gt, span))
1062             }
1063             token::BinOpEq(token::Shr) => {
1064                 let span = self.span.with_lo(self.span.lo() + BytePos(1));
1065                 Ok(self.bump_with(token::Ge, span))
1066             }
1067             token::Ge => {
1068                 let span = self.span.with_lo(self.span.lo() + BytePos(1));
1069                 Ok(self.bump_with(token::Eq, span))
1070             }
1071             _ => self.unexpected()
1072         }
1073     }
1074
1075     /// Eat and discard tokens until one of `kets` is encountered. Respects token trees,
1076     /// passes through any errors encountered. Used for error recovery.
1077     fn eat_to_tokens(&mut self, kets: &[&token::Token]) {
1078         let handler = self.diagnostic();
1079
1080         if let Err(ref mut err) = self.parse_seq_to_before_tokens(kets,
1081                                                                   SeqSep::none(),
1082                                                                   TokenExpectType::Expect,
1083                                                                   |p| Ok(p.parse_token_tree())) {
1084             handler.cancel(err);
1085         }
1086     }
1087
1088     /// Parse a sequence, including the closing delimiter. The function
1089     /// f must consume tokens until reaching the next separator or
1090     /// closing bracket.
1091     pub fn parse_seq_to_end<T, F>(&mut self,
1092                                   ket: &token::Token,
1093                                   sep: SeqSep,
1094                                   f: F)
1095                                   -> PResult<'a, Vec<T>> where
1096         F: FnMut(&mut Parser<'a>) -> PResult<'a,  T>,
1097     {
1098         let val = self.parse_seq_to_before_end(ket, sep, f)?;
1099         self.bump();
1100         Ok(val)
1101     }
1102
1103     /// Parse a sequence, not including the closing delimiter. The function
1104     /// f must consume tokens until reaching the next separator or
1105     /// closing bracket.
1106     pub fn parse_seq_to_before_end<T, F>(&mut self,
1107                                          ket: &token::Token,
1108                                          sep: SeqSep,
1109                                          f: F)
1110                                          -> PResult<'a, Vec<T>>
1111         where F: FnMut(&mut Parser<'a>) -> PResult<'a, T>
1112     {
1113         self.parse_seq_to_before_tokens(&[ket], sep, TokenExpectType::Expect, f)
1114     }
1115
1116     fn parse_seq_to_before_tokens<T, F>(
1117         &mut self,
1118         kets: &[&token::Token],
1119         sep: SeqSep,
1120         expect: TokenExpectType,
1121         mut f: F,
1122     ) -> PResult<'a, Vec<T>>
1123         where F: FnMut(&mut Parser<'a>) -> PResult<'a, T>
1124     {
1125         let mut first: bool = true;
1126         let mut v = vec![];
1127         while !kets.iter().any(|k| {
1128                 match expect {
1129                     TokenExpectType::Expect => self.check(k),
1130                     TokenExpectType::NoExpect => self.token == **k,
1131                 }
1132             }) {
1133             match self.token {
1134                 token::CloseDelim(..) | token::Eof => break,
1135                 _ => {}
1136             };
1137             if let Some(ref t) = sep.sep {
1138                 if first {
1139                     first = false;
1140                 } else {
1141                     if let Err(mut e) = self.expect(t) {
1142                         // Attempt to keep parsing if it was a similar separator
1143                         if let Some(ref tokens) = t.similar_tokens() {
1144                             if tokens.contains(&self.token) {
1145                                 self.bump();
1146                             }
1147                         }
1148                         e.emit();
1149                         // Attempt to keep parsing if it was an omitted separator
1150                         match f(self) {
1151                             Ok(t) => {
1152                                 v.push(t);
1153                                 continue;
1154                             },
1155                             Err(mut e) => {
1156                                 e.cancel();
1157                                 break;
1158                             }
1159                         }
1160                     }
1161                 }
1162             }
1163             if sep.trailing_sep_allowed && kets.iter().any(|k| {
1164                 match expect {
1165                     TokenExpectType::Expect => self.check(k),
1166                     TokenExpectType::NoExpect => self.token == **k,
1167                 }
1168             }) {
1169                 break;
1170             }
1171
1172             let t = f(self)?;
1173             v.push(t);
1174         }
1175
1176         Ok(v)
1177     }
1178
1179     /// Parse a sequence, including the closing delimiter. The function
1180     /// f must consume tokens until reaching the next separator or
1181     /// closing bracket.
1182     fn parse_unspanned_seq<T, F>(&mut self,
1183                                      bra: &token::Token,
1184                                      ket: &token::Token,
1185                                      sep: SeqSep,
1186                                      f: F)
1187                                      -> PResult<'a, Vec<T>> where
1188         F: FnMut(&mut Parser<'a>) -> PResult<'a, T>,
1189     {
1190         self.expect(bra)?;
1191         let result = self.parse_seq_to_before_end(ket, sep, f)?;
1192         self.eat(ket);
1193         Ok(result)
1194     }
1195
1196     /// Advance the parser by one token
1197     pub fn bump(&mut self) {
1198         if self.prev_token_kind == PrevTokenKind::Eof {
1199             // Bumping after EOF is a bad sign, usually an infinite loop.
1200             self.bug("attempted to bump the parser past EOF (may be stuck in a loop)");
1201         }
1202
1203         self.prev_span = self.meta_var_span.take().unwrap_or(self.span);
1204
1205         // Record last token kind for possible error recovery.
1206         self.prev_token_kind = match self.token {
1207             token::DocComment(..) => PrevTokenKind::DocComment,
1208             token::Comma => PrevTokenKind::Comma,
1209             token::BinOp(token::Plus) => PrevTokenKind::Plus,
1210             token::Interpolated(..) => PrevTokenKind::Interpolated,
1211             token::Eof => PrevTokenKind::Eof,
1212             token::Ident(..) => PrevTokenKind::Ident,
1213             _ => PrevTokenKind::Other,
1214         };
1215
1216         let next = self.next_tok();
1217         self.span = next.sp;
1218         self.token = next.tok;
1219         self.expected_tokens.clear();
1220         // check after each token
1221         self.process_potential_macro_variable();
1222     }
1223
1224     /// Advance the parser using provided token as a next one. Use this when
1225     /// consuming a part of a token. For example a single `<` from `<<`.
1226     fn bump_with(&mut self, next: token::Token, span: Span) {
1227         self.prev_span = self.span.with_hi(span.lo());
1228         // It would be incorrect to record the kind of the current token, but
1229         // fortunately for tokens currently using `bump_with`, the
1230         // prev_token_kind will be of no use anyway.
1231         self.prev_token_kind = PrevTokenKind::Other;
1232         self.span = span;
1233         self.token = next;
1234         self.expected_tokens.clear();
1235     }
1236
1237     pub fn look_ahead<R, F>(&self, dist: usize, f: F) -> R where
1238         F: FnOnce(&token::Token) -> R,
1239     {
1240         if dist == 0 {
1241             return f(&self.token)
1242         }
1243
1244         f(&match self.token_cursor.frame.tree_cursor.look_ahead(dist - 1) {
1245             Some(tree) => match tree {
1246                 TokenTree::Token(_, tok) => tok,
1247                 TokenTree::Delimited(_, delim, _) => token::OpenDelim(delim),
1248             },
1249             None => token::CloseDelim(self.token_cursor.frame.delim),
1250         })
1251     }
1252
1253     fn look_ahead_span(&self, dist: usize) -> Span {
1254         if dist == 0 {
1255             return self.span
1256         }
1257
1258         match self.token_cursor.frame.tree_cursor.look_ahead(dist - 1) {
1259             Some(TokenTree::Token(span, _)) => span,
1260             Some(TokenTree::Delimited(span, ..)) => span.entire(),
1261             None => self.look_ahead_span(dist - 1),
1262         }
1263     }
1264     pub fn fatal(&self, m: &str) -> DiagnosticBuilder<'a> {
1265         self.sess.span_diagnostic.struct_span_fatal(self.span, m)
1266     }
1267     pub fn span_fatal<S: Into<MultiSpan>>(&self, sp: S, m: &str) -> DiagnosticBuilder<'a> {
1268         self.sess.span_diagnostic.struct_span_fatal(sp, m)
1269     }
1270     fn span_fatal_err<S: Into<MultiSpan>>(&self, sp: S, err: Error) -> DiagnosticBuilder<'a> {
1271         err.span_err(sp, self.diagnostic())
1272     }
1273     fn bug(&self, m: &str) -> ! {
1274         self.sess.span_diagnostic.span_bug(self.span, m)
1275     }
1276     fn span_err<S: Into<MultiSpan>>(&self, sp: S, m: &str) {
1277         self.sess.span_diagnostic.span_err(sp, m)
1278     }
1279     fn struct_span_err<S: Into<MultiSpan>>(&self, sp: S, m: &str) -> DiagnosticBuilder<'a> {
1280         self.sess.span_diagnostic.struct_span_err(sp, m)
1281     }
1282     crate fn span_bug<S: Into<MultiSpan>>(&self, sp: S, m: &str) -> ! {
1283         self.sess.span_diagnostic.span_bug(sp, m)
1284     }
1285     crate fn abort_if_errors(&self) {
1286         self.sess.span_diagnostic.abort_if_errors();
1287     }
1288
1289     fn cancel(&self, err: &mut DiagnosticBuilder) {
1290         self.sess.span_diagnostic.cancel(err)
1291     }
1292
1293     crate fn diagnostic(&self) -> &'a errors::Handler {
1294         &self.sess.span_diagnostic
1295     }
1296
1297     /// Is the current token one of the keywords that signals a bare function
1298     /// type?
1299     fn token_is_bare_fn_keyword(&mut self) -> bool {
1300         self.check_keyword(keywords::Fn) ||
1301             self.check_keyword(keywords::Unsafe) ||
1302             self.check_keyword(keywords::Extern) && self.is_extern_non_path()
1303     }
1304
1305     /// parse a `TyKind::BareFn` type:
1306     fn parse_ty_bare_fn(&mut self, generic_params: Vec<GenericParam>) -> PResult<'a, TyKind> {
1307         /*
1308
1309         [unsafe] [extern "ABI"] fn (S) -> T
1310          ^~~~^           ^~~~^     ^~^    ^
1311            |               |        |     |
1312            |               |        |   Return type
1313            |               |      Argument types
1314            |               |
1315            |              ABI
1316         Function Style
1317         */
1318
1319         let unsafety = self.parse_unsafety();
1320         let abi = if self.eat_keyword(keywords::Extern) {
1321             self.parse_opt_abi()?.unwrap_or(Abi::C)
1322         } else {
1323             Abi::Rust
1324         };
1325
1326         self.expect_keyword(keywords::Fn)?;
1327         let (inputs, variadic) = self.parse_fn_args(false, true)?;
1328         let ret_ty = self.parse_ret_ty(false)?;
1329         let decl = P(FnDecl {
1330             inputs,
1331             output: ret_ty,
1332             variadic,
1333         });
1334         Ok(TyKind::BareFn(P(BareFnTy {
1335             abi,
1336             unsafety,
1337             generic_params,
1338             decl,
1339         })))
1340     }
1341
1342     /// Parse asyncness: `async` or nothing
1343     fn parse_asyncness(&mut self) -> IsAsync {
1344         if self.eat_keyword(keywords::Async) {
1345             IsAsync::Async {
1346                 closure_id: ast::DUMMY_NODE_ID,
1347                 return_impl_trait_id: ast::DUMMY_NODE_ID,
1348             }
1349         } else {
1350             IsAsync::NotAsync
1351         }
1352     }
1353
1354     /// Parse unsafety: `unsafe` or nothing.
1355     fn parse_unsafety(&mut self) -> Unsafety {
1356         if self.eat_keyword(keywords::Unsafe) {
1357             Unsafety::Unsafe
1358         } else {
1359             Unsafety::Normal
1360         }
1361     }
1362
1363     /// Parse the items in a trait declaration
1364     pub fn parse_trait_item(&mut self, at_end: &mut bool) -> PResult<'a, TraitItem> {
1365         maybe_whole!(self, NtTraitItem, |x| x);
1366         let attrs = self.parse_outer_attributes()?;
1367         let (mut item, tokens) = self.collect_tokens(|this| {
1368             this.parse_trait_item_(at_end, attrs)
1369         })?;
1370         // See `parse_item` for why this clause is here.
1371         if !item.attrs.iter().any(|attr| attr.style == AttrStyle::Inner) {
1372             item.tokens = Some(tokens);
1373         }
1374         Ok(item)
1375     }
1376
1377     fn parse_trait_item_(&mut self,
1378                          at_end: &mut bool,
1379                          mut attrs: Vec<Attribute>) -> PResult<'a, TraitItem> {
1380         let lo = self.span;
1381
1382         let (name, node, generics) = if self.eat_keyword(keywords::Type) {
1383             self.parse_trait_item_assoc_ty()?
1384         } else if self.is_const_item() {
1385             self.expect_keyword(keywords::Const)?;
1386             let ident = self.parse_ident()?;
1387             self.expect(&token::Colon)?;
1388             let ty = self.parse_ty()?;
1389             let default = if self.eat(&token::Eq) {
1390                 let expr = self.parse_expr()?;
1391                 self.expect(&token::Semi)?;
1392                 Some(expr)
1393             } else {
1394                 self.expect(&token::Semi)?;
1395                 None
1396             };
1397             (ident, TraitItemKind::Const(ty, default), ast::Generics::default())
1398         } else if let Some(mac) = self.parse_assoc_macro_invoc("trait", None, &mut false)? {
1399             // trait item macro.
1400             (keywords::Invalid.ident(), ast::TraitItemKind::Macro(mac), ast::Generics::default())
1401         } else {
1402             let (constness, unsafety, asyncness, abi) = self.parse_fn_front_matter()?;
1403
1404             let ident = self.parse_ident()?;
1405             let mut generics = self.parse_generics()?;
1406
1407             let d = self.parse_fn_decl_with_self(|p: &mut Parser<'a>| {
1408                 // This is somewhat dubious; We don't want to allow
1409                 // argument names to be left off if there is a
1410                 // definition...
1411
1412                 // We don't allow argument names to be left off in edition 2018.
1413                 p.parse_arg_general(p.span.rust_2018(), true)
1414             })?;
1415             generics.where_clause = self.parse_where_clause()?;
1416
1417             let sig = ast::MethodSig {
1418                 header: FnHeader {
1419                     unsafety,
1420                     constness,
1421                     abi,
1422                     asyncness,
1423                 },
1424                 decl: d,
1425             };
1426
1427             let body = match self.token {
1428                 token::Semi => {
1429                     self.bump();
1430                     *at_end = true;
1431                     debug!("parse_trait_methods(): parsing required method");
1432                     None
1433                 }
1434                 token::OpenDelim(token::Brace) => {
1435                     debug!("parse_trait_methods(): parsing provided method");
1436                     *at_end = true;
1437                     let (inner_attrs, body) = self.parse_inner_attrs_and_block()?;
1438                     attrs.extend(inner_attrs.iter().cloned());
1439                     Some(body)
1440                 }
1441                 token::Interpolated(ref nt) => {
1442                     match &nt.0 {
1443                         token::NtBlock(..) => {
1444                             *at_end = true;
1445                             let (inner_attrs, body) = self.parse_inner_attrs_and_block()?;
1446                             attrs.extend(inner_attrs.iter().cloned());
1447                             Some(body)
1448                         }
1449                         _ => {
1450                             let token_str = self.this_token_descr();
1451                             let mut err = self.fatal(&format!("expected `;` or `{{`, found {}",
1452                                                               token_str));
1453                             err.span_label(self.span, "expected `;` or `{`");
1454                             return Err(err);
1455                         }
1456                     }
1457                 }
1458                 _ => {
1459                     let token_str = self.this_token_descr();
1460                     let mut err = self.fatal(&format!("expected `;` or `{{`, found {}",
1461                                                       token_str));
1462                     err.span_label(self.span, "expected `;` or `{`");
1463                     return Err(err);
1464                 }
1465             };
1466             (ident, ast::TraitItemKind::Method(sig, body), generics)
1467         };
1468
1469         Ok(TraitItem {
1470             id: ast::DUMMY_NODE_ID,
1471             ident: name,
1472             attrs,
1473             generics,
1474             node,
1475             span: lo.to(self.prev_span),
1476             tokens: None,
1477         })
1478     }
1479
1480     /// Parse optional return type [ -> TY ] in function decl
1481     fn parse_ret_ty(&mut self, allow_plus: bool) -> PResult<'a, FunctionRetTy> {
1482         if self.eat(&token::RArrow) {
1483             Ok(FunctionRetTy::Ty(self.parse_ty_common(allow_plus, true)?))
1484         } else {
1485             Ok(FunctionRetTy::Default(self.span.shrink_to_lo()))
1486         }
1487     }
1488
1489     // Parse a type
1490     pub fn parse_ty(&mut self) -> PResult<'a, P<Ty>> {
1491         self.parse_ty_common(true, true)
1492     }
1493
1494     /// Parse a type in restricted contexts where `+` is not permitted.
1495     /// Example 1: `&'a TYPE`
1496     ///     `+` is prohibited to maintain operator priority (P(+) < P(&)).
1497     /// Example 2: `value1 as TYPE + value2`
1498     ///     `+` is prohibited to avoid interactions with expression grammar.
1499     fn parse_ty_no_plus(&mut self) -> PResult<'a, P<Ty>> {
1500         self.parse_ty_common(false, true)
1501     }
1502
1503     fn parse_ty_common(&mut self, allow_plus: bool, allow_qpath_recovery: bool)
1504                        -> PResult<'a, P<Ty>> {
1505         maybe_whole!(self, NtTy, |x| x);
1506
1507         let lo = self.span;
1508         let mut impl_dyn_multi = false;
1509         let node = if self.eat(&token::OpenDelim(token::Paren)) {
1510             // `(TYPE)` is a parenthesized type.
1511             // `(TYPE,)` is a tuple with a single field of type TYPE.
1512             let mut ts = vec![];
1513             let mut last_comma = false;
1514             while self.token != token::CloseDelim(token::Paren) {
1515                 ts.push(self.parse_ty()?);
1516                 if self.eat(&token::Comma) {
1517                     last_comma = true;
1518                 } else {
1519                     last_comma = false;
1520                     break;
1521                 }
1522             }
1523             let trailing_plus = self.prev_token_kind == PrevTokenKind::Plus;
1524             self.expect(&token::CloseDelim(token::Paren))?;
1525
1526             if ts.len() == 1 && !last_comma {
1527                 let ty = ts.into_iter().nth(0).unwrap().into_inner();
1528                 let maybe_bounds = allow_plus && self.token.is_like_plus();
1529                 match ty.node {
1530                     // `(TY_BOUND_NOPAREN) + BOUND + ...`.
1531                     TyKind::Path(None, ref path) if maybe_bounds => {
1532                         self.parse_remaining_bounds(Vec::new(), path.clone(), lo, true)?
1533                     }
1534                     TyKind::TraitObject(ref bounds, TraitObjectSyntax::None)
1535                             if maybe_bounds && bounds.len() == 1 && !trailing_plus => {
1536                         let path = match bounds[0] {
1537                             GenericBound::Trait(ref pt, ..) => pt.trait_ref.path.clone(),
1538                             GenericBound::Outlives(..) => self.bug("unexpected lifetime bound"),
1539                         };
1540                         self.parse_remaining_bounds(Vec::new(), path, lo, true)?
1541                     }
1542                     // `(TYPE)`
1543                     _ => TyKind::Paren(P(ty))
1544                 }
1545             } else {
1546                 TyKind::Tup(ts)
1547             }
1548         } else if self.eat(&token::Not) {
1549             // Never type `!`
1550             TyKind::Never
1551         } else if self.eat(&token::BinOp(token::Star)) {
1552             // Raw pointer
1553             TyKind::Ptr(self.parse_ptr()?)
1554         } else if self.eat(&token::OpenDelim(token::Bracket)) {
1555             // Array or slice
1556             let t = self.parse_ty()?;
1557             // Parse optional `; EXPR` in `[TYPE; EXPR]`
1558             let t = match self.maybe_parse_fixed_length_of_vec()? {
1559                 None => TyKind::Slice(t),
1560                 Some(length) => TyKind::Array(t, AnonConst {
1561                     id: ast::DUMMY_NODE_ID,
1562                     value: length,
1563                 }),
1564             };
1565             self.expect(&token::CloseDelim(token::Bracket))?;
1566             t
1567         } else if self.check(&token::BinOp(token::And)) || self.check(&token::AndAnd) {
1568             // Reference
1569             self.expect_and()?;
1570             self.parse_borrowed_pointee()?
1571         } else if self.eat_keyword_noexpect(keywords::Typeof) {
1572             // `typeof(EXPR)`
1573             // In order to not be ambiguous, the type must be surrounded by parens.
1574             self.expect(&token::OpenDelim(token::Paren))?;
1575             let e = AnonConst {
1576                 id: ast::DUMMY_NODE_ID,
1577                 value: self.parse_expr()?,
1578             };
1579             self.expect(&token::CloseDelim(token::Paren))?;
1580             TyKind::Typeof(e)
1581         } else if self.eat_keyword(keywords::Underscore) {
1582             // A type to be inferred `_`
1583             TyKind::Infer
1584         } else if self.token_is_bare_fn_keyword() {
1585             // Function pointer type
1586             self.parse_ty_bare_fn(Vec::new())?
1587         } else if self.check_keyword(keywords::For) {
1588             // Function pointer type or bound list (trait object type) starting with a poly-trait.
1589             //   `for<'lt> [unsafe] [extern "ABI"] fn (&'lt S) -> T`
1590             //   `for<'lt> Trait1<'lt> + Trait2 + 'a`
1591             let lo = self.span;
1592             let lifetime_defs = self.parse_late_bound_lifetime_defs()?;
1593             if self.token_is_bare_fn_keyword() {
1594                 self.parse_ty_bare_fn(lifetime_defs)?
1595             } else {
1596                 let path = self.parse_path(PathStyle::Type)?;
1597                 let parse_plus = allow_plus && self.check_plus();
1598                 self.parse_remaining_bounds(lifetime_defs, path, lo, parse_plus)?
1599             }
1600         } else if self.eat_keyword(keywords::Impl) {
1601             // Always parse bounds greedily for better error recovery.
1602             let bounds = self.parse_generic_bounds()?;
1603             impl_dyn_multi = bounds.len() > 1 || self.prev_token_kind == PrevTokenKind::Plus;
1604             TyKind::ImplTrait(ast::DUMMY_NODE_ID, bounds)
1605         } else if self.check_keyword(keywords::Dyn) &&
1606                   (self.span.rust_2018() ||
1607                    self.look_ahead(1, |t| t.can_begin_bound() &&
1608                                           !can_continue_type_after_non_fn_ident(t))) {
1609             self.bump(); // `dyn`
1610             // Always parse bounds greedily for better error recovery.
1611             let bounds = self.parse_generic_bounds()?;
1612             impl_dyn_multi = bounds.len() > 1 || self.prev_token_kind == PrevTokenKind::Plus;
1613             TyKind::TraitObject(bounds, TraitObjectSyntax::Dyn)
1614         } else if self.check(&token::Question) ||
1615                   self.check_lifetime() && self.look_ahead(1, |t| t.is_like_plus()) {
1616             // Bound list (trait object type)
1617             TyKind::TraitObject(self.parse_generic_bounds_common(allow_plus)?,
1618                                 TraitObjectSyntax::None)
1619         } else if self.eat_lt() {
1620             // Qualified path
1621             let (qself, path) = self.parse_qpath(PathStyle::Type)?;
1622             TyKind::Path(Some(qself), path)
1623         } else if self.token.is_path_start() {
1624             // Simple path
1625             let path = self.parse_path(PathStyle::Type)?;
1626             if self.eat(&token::Not) {
1627                 // Macro invocation in type position
1628                 let (delim, tts) = self.expect_delimited_token_tree()?;
1629                 let node = Mac_ { path, tts, delim };
1630                 TyKind::Mac(respan(lo.to(self.prev_span), node))
1631             } else {
1632                 // Just a type path or bound list (trait object type) starting with a trait.
1633                 //   `Type`
1634                 //   `Trait1 + Trait2 + 'a`
1635                 if allow_plus && self.check_plus() {
1636                     self.parse_remaining_bounds(Vec::new(), path, lo, true)?
1637                 } else {
1638                     TyKind::Path(None, path)
1639                 }
1640             }
1641         } else {
1642             let msg = format!("expected type, found {}", self.this_token_descr());
1643             return Err(self.fatal(&msg));
1644         };
1645
1646         let span = lo.to(self.prev_span);
1647         let ty = Ty { node, span, id: ast::DUMMY_NODE_ID };
1648
1649         // Try to recover from use of `+` with incorrect priority.
1650         self.maybe_report_ambiguous_plus(allow_plus, impl_dyn_multi, &ty);
1651         self.maybe_recover_from_bad_type_plus(allow_plus, &ty)?;
1652         let ty = self.maybe_recover_from_bad_qpath(ty, allow_qpath_recovery)?;
1653
1654         Ok(P(ty))
1655     }
1656
1657     fn parse_remaining_bounds(&mut self, generic_params: Vec<GenericParam>, path: ast::Path,
1658                               lo: Span, parse_plus: bool) -> PResult<'a, TyKind> {
1659         let poly_trait_ref = PolyTraitRef::new(generic_params, path, lo.to(self.prev_span));
1660         let mut bounds = vec![GenericBound::Trait(poly_trait_ref, TraitBoundModifier::None)];
1661         if parse_plus {
1662             self.eat_plus(); // `+`, or `+=` gets split and `+` is discarded
1663             bounds.append(&mut self.parse_generic_bounds()?);
1664         }
1665         Ok(TyKind::TraitObject(bounds, TraitObjectSyntax::None))
1666     }
1667
1668     fn maybe_report_ambiguous_plus(&mut self, allow_plus: bool, impl_dyn_multi: bool, ty: &Ty) {
1669         if !allow_plus && impl_dyn_multi {
1670             let sum_with_parens = format!("({})", pprust::ty_to_string(&ty));
1671             self.struct_span_err(ty.span, "ambiguous `+` in a type")
1672                 .span_suggestion_with_applicability(
1673                     ty.span,
1674                     "use parentheses to disambiguate",
1675                     sum_with_parens,
1676                     Applicability::MachineApplicable
1677                 ).emit();
1678         }
1679     }
1680
1681     fn maybe_recover_from_bad_type_plus(&mut self, allow_plus: bool, ty: &Ty) -> PResult<'a, ()> {
1682         // Do not add `+` to expected tokens.
1683         if !allow_plus || !self.token.is_like_plus() {
1684             return Ok(())
1685         }
1686
1687         self.bump(); // `+`
1688         let bounds = self.parse_generic_bounds()?;
1689         let sum_span = ty.span.to(self.prev_span);
1690
1691         let mut err = struct_span_err!(self.sess.span_diagnostic, sum_span, E0178,
1692             "expected a path on the left-hand side of `+`, not `{}`", pprust::ty_to_string(ty));
1693
1694         match ty.node {
1695             TyKind::Rptr(ref lifetime, ref mut_ty) => {
1696                 let sum_with_parens = pprust::to_string(|s| {
1697                     use print::pprust::PrintState;
1698
1699                     s.s.word("&")?;
1700                     s.print_opt_lifetime(lifetime)?;
1701                     s.print_mutability(mut_ty.mutbl)?;
1702                     s.popen()?;
1703                     s.print_type(&mut_ty.ty)?;
1704                     s.print_type_bounds(" +", &bounds)?;
1705                     s.pclose()
1706                 });
1707                 err.span_suggestion_with_applicability(
1708                     sum_span,
1709                     "try adding parentheses",
1710                     sum_with_parens,
1711                     Applicability::MachineApplicable
1712                 );
1713             }
1714             TyKind::Ptr(..) | TyKind::BareFn(..) => {
1715                 err.span_label(sum_span, "perhaps you forgot parentheses?");
1716             }
1717             _ => {
1718                 err.span_label(sum_span, "expected a path");
1719             },
1720         }
1721         err.emit();
1722         Ok(())
1723     }
1724
1725     // Try to recover from associated item paths like `[T]::AssocItem`/`(T, U)::AssocItem`.
1726     fn maybe_recover_from_bad_qpath<T: RecoverQPath>(&mut self, base: T, allow_recovery: bool)
1727                                                      -> PResult<'a, T> {
1728         // Do not add `::` to expected tokens.
1729         if !allow_recovery || self.token != token::ModSep {
1730             return Ok(base);
1731         }
1732         let ty = match base.to_ty() {
1733             Some(ty) => ty,
1734             None => return Ok(base),
1735         };
1736
1737         self.bump(); // `::`
1738         let mut segments = Vec::new();
1739         self.parse_path_segments(&mut segments, T::PATH_STYLE, true)?;
1740
1741         let span = ty.span.to(self.prev_span);
1742         let path_span = span.to(span); // use an empty path since `position` == 0
1743         let recovered = base.to_recovered(
1744             Some(QSelf { ty, path_span, position: 0 }),
1745             ast::Path { segments, span },
1746         );
1747
1748         self.diagnostic()
1749             .struct_span_err(span, "missing angle brackets in associated item path")
1750             .span_suggestion_with_applicability( // this is a best-effort recovery
1751                 span, "try", recovered.to_string(), Applicability::MaybeIncorrect
1752             ).emit();
1753
1754         Ok(recovered)
1755     }
1756
1757     fn parse_borrowed_pointee(&mut self) -> PResult<'a, TyKind> {
1758         let opt_lifetime = if self.check_lifetime() { Some(self.expect_lifetime()) } else { None };
1759         let mutbl = self.parse_mutability();
1760         let ty = self.parse_ty_no_plus()?;
1761         return Ok(TyKind::Rptr(opt_lifetime, MutTy { ty: ty, mutbl: mutbl }));
1762     }
1763
1764     fn parse_ptr(&mut self) -> PResult<'a, MutTy> {
1765         let mutbl = if self.eat_keyword(keywords::Mut) {
1766             Mutability::Mutable
1767         } else if self.eat_keyword(keywords::Const) {
1768             Mutability::Immutable
1769         } else {
1770             let span = self.prev_span;
1771             self.span_err(span,
1772                           "expected mut or const in raw pointer type (use \
1773                            `*mut T` or `*const T` as appropriate)");
1774             Mutability::Immutable
1775         };
1776         let t = self.parse_ty_no_plus()?;
1777         Ok(MutTy { ty: t, mutbl: mutbl })
1778     }
1779
1780     fn is_named_argument(&mut self) -> bool {
1781         let offset = match self.token {
1782             token::Interpolated(ref nt) => match nt.0 {
1783                 token::NtPat(..) => return self.look_ahead(1, |t| t == &token::Colon),
1784                 _ => 0,
1785             }
1786             token::BinOp(token::And) | token::AndAnd => 1,
1787             _ if self.token.is_keyword(keywords::Mut) => 1,
1788             _ => 0,
1789         };
1790
1791         self.look_ahead(offset, |t| t.is_ident()) &&
1792         self.look_ahead(offset + 1, |t| t == &token::Colon)
1793     }
1794
1795     /// Skip unexpected attributes and doc comments in this position and emit an appropriate error.
1796     fn eat_incorrect_doc_comment(&mut self, applied_to: &str) {
1797         if let token::DocComment(_) = self.token {
1798             let mut err = self.diagnostic().struct_span_err(
1799                 self.span,
1800                 &format!("documentation comments cannot be applied to {}", applied_to),
1801             );
1802             err.span_label(self.span, "doc comments are not allowed here");
1803             err.emit();
1804             self.bump();
1805         } else if self.token == token::Pound && self.look_ahead(1, |t| {
1806             *t == token::OpenDelim(token::Bracket)
1807         }) {
1808             let lo = self.span;
1809             // Skip every token until next possible arg.
1810             while self.token != token::CloseDelim(token::Bracket) {
1811                 self.bump();
1812             }
1813             let sp = lo.to(self.span);
1814             self.bump();
1815             let mut err = self.diagnostic().struct_span_err(
1816                 sp,
1817                 &format!("attributes cannot be applied to {}", applied_to),
1818             );
1819             err.span_label(sp, "attributes are not allowed here");
1820             err.emit();
1821         }
1822     }
1823
1824     /// This version of parse arg doesn't necessarily require
1825     /// identifier names.
1826     fn parse_arg_general(&mut self, require_name: bool, is_trait_item: bool) -> PResult<'a, Arg> {
1827         maybe_whole!(self, NtArg, |x| x);
1828
1829         if let Ok(Some(_)) = self.parse_self_arg() {
1830             let mut err = self.struct_span_err(self.prev_span,
1831                 "unexpected `self` argument in function");
1832             err.span_label(self.prev_span,
1833                 "`self` is only valid as the first argument of an associated function");
1834             return Err(err);
1835         }
1836
1837         let (pat, ty) = if require_name || self.is_named_argument() {
1838             debug!("parse_arg_general parse_pat (require_name:{})",
1839                    require_name);
1840             self.eat_incorrect_doc_comment("method arguments");
1841             let pat = self.parse_pat(Some("argument name"))?;
1842
1843             if let Err(mut err) = self.expect(&token::Colon) {
1844                 // If we find a pattern followed by an identifier, it could be an (incorrect)
1845                 // C-style parameter declaration.
1846                 if self.check_ident() && self.look_ahead(1, |t| {
1847                     *t == token::Comma || *t == token::CloseDelim(token::Paren)
1848                 }) {
1849                     let ident = self.parse_ident().unwrap();
1850                     let span = pat.span.with_hi(ident.span.hi());
1851
1852                     err.span_suggestion_with_applicability(
1853                         span,
1854                         "declare the type after the parameter binding",
1855                         String::from("<identifier>: <type>"),
1856                         Applicability::HasPlaceholders,
1857                     );
1858                 } else if require_name && is_trait_item {
1859                     if let PatKind::Ident(_, ident, _) = pat.node {
1860                         err.span_suggestion_with_applicability(
1861                             pat.span,
1862                             "explicitly ignore parameter",
1863                             format!("_: {}", ident),
1864                             Applicability::MachineApplicable,
1865                         );
1866                     }
1867
1868                     err.note("anonymous parameters are removed in the 2018 edition (see RFC 1685)");
1869                 }
1870
1871                 return Err(err);
1872             }
1873
1874             self.eat_incorrect_doc_comment("a method argument's type");
1875             (pat, self.parse_ty()?)
1876         } else {
1877             debug!("parse_arg_general ident_to_pat");
1878             let parser_snapshot_before_ty = self.clone();
1879             self.eat_incorrect_doc_comment("a method argument's type");
1880             let mut ty = self.parse_ty();
1881             if ty.is_ok() && self.token != token::Comma &&
1882                self.token != token::CloseDelim(token::Paren) {
1883                 // This wasn't actually a type, but a pattern looking like a type,
1884                 // so we are going to rollback and re-parse for recovery.
1885                 ty = self.unexpected();
1886             }
1887             match ty {
1888                 Ok(ty) => {
1889                     let ident = Ident::new(keywords::Invalid.name(), self.prev_span);
1890                     let pat = P(Pat {
1891                         id: ast::DUMMY_NODE_ID,
1892                         node: PatKind::Ident(
1893                             BindingMode::ByValue(Mutability::Immutable), ident, None),
1894                         span: ty.span,
1895                     });
1896                     (pat, ty)
1897                 }
1898                 Err(mut err) => {
1899                     // Recover from attempting to parse the argument as a type without pattern.
1900                     err.cancel();
1901                     mem::replace(self, parser_snapshot_before_ty);
1902                     let pat = self.parse_pat(Some("argument name"))?;
1903                     self.expect(&token::Colon)?;
1904                     let ty = self.parse_ty()?;
1905
1906                     let mut err = self.diagnostic().struct_span_err_with_code(
1907                         pat.span,
1908                         "patterns aren't allowed in methods without bodies",
1909                         DiagnosticId::Error("E0642".into()),
1910                     );
1911                     err.span_suggestion_short_with_applicability(
1912                         pat.span,
1913                         "give this argument a name or use an underscore to ignore it",
1914                         "_".to_owned(),
1915                         Applicability::MachineApplicable,
1916                     );
1917                     err.emit();
1918
1919                     // Pretend the pattern is `_`, to avoid duplicate errors from AST validation.
1920                     let pat = P(Pat {
1921                         node: PatKind::Wild,
1922                         span: pat.span,
1923                         id: ast::DUMMY_NODE_ID
1924                     });
1925                     (pat, ty)
1926                 }
1927             }
1928         };
1929
1930         Ok(Arg { ty, pat, id: ast::DUMMY_NODE_ID })
1931     }
1932
1933     /// Parse a single function argument
1934     crate fn parse_arg(&mut self) -> PResult<'a, Arg> {
1935         self.parse_arg_general(true, false)
1936     }
1937
1938     /// Parse an argument in a lambda header e.g., |arg, arg|
1939     fn parse_fn_block_arg(&mut self) -> PResult<'a, Arg> {
1940         let pat = self.parse_pat(Some("argument name"))?;
1941         let t = if self.eat(&token::Colon) {
1942             self.parse_ty()?
1943         } else {
1944             P(Ty {
1945                 id: ast::DUMMY_NODE_ID,
1946                 node: TyKind::Infer,
1947                 span: self.prev_span,
1948             })
1949         };
1950         Ok(Arg {
1951             ty: t,
1952             pat,
1953             id: ast::DUMMY_NODE_ID
1954         })
1955     }
1956
1957     fn maybe_parse_fixed_length_of_vec(&mut self) -> PResult<'a, Option<P<ast::Expr>>> {
1958         if self.eat(&token::Semi) {
1959             Ok(Some(self.parse_expr()?))
1960         } else {
1961             Ok(None)
1962         }
1963     }
1964
1965     /// Matches token_lit = LIT_INTEGER | ...
1966     fn parse_lit_token(&mut self) -> PResult<'a, LitKind> {
1967         let out = match self.token {
1968             token::Interpolated(ref nt) => match nt.0 {
1969                 token::NtExpr(ref v) | token::NtLiteral(ref v) => match v.node {
1970                     ExprKind::Lit(ref lit) => { lit.node.clone() }
1971                     _ => { return self.unexpected_last(&self.token); }
1972                 },
1973                 _ => { return self.unexpected_last(&self.token); }
1974             },
1975             token::Literal(lit, suf) => {
1976                 let diag = Some((self.span, &self.sess.span_diagnostic));
1977                 let (suffix_illegal, result) = parse::lit_token(lit, suf, diag);
1978
1979                 if suffix_illegal {
1980                     let sp = self.span;
1981                     self.expect_no_suffix(sp, lit.literal_name(), suf)
1982                 }
1983
1984                 result.unwrap()
1985             }
1986             _ => { return self.unexpected_last(&self.token); }
1987         };
1988
1989         self.bump();
1990         Ok(out)
1991     }
1992
1993     /// Matches lit = true | false | token_lit
1994     crate fn parse_lit(&mut self) -> PResult<'a, Lit> {
1995         let lo = self.span;
1996         let lit = if self.eat_keyword(keywords::True) {
1997             LitKind::Bool(true)
1998         } else if self.eat_keyword(keywords::False) {
1999             LitKind::Bool(false)
2000         } else {
2001             let lit = self.parse_lit_token()?;
2002             lit
2003         };
2004         Ok(source_map::Spanned { node: lit, span: lo.to(self.prev_span) })
2005     }
2006
2007     /// matches '-' lit | lit (cf. ast_validation::AstValidator::check_expr_within_pat)
2008     crate fn parse_literal_maybe_minus(&mut self) -> PResult<'a, P<Expr>> {
2009         maybe_whole_expr!(self);
2010
2011         let minus_lo = self.span;
2012         let minus_present = self.eat(&token::BinOp(token::Minus));
2013         let lo = self.span;
2014         let literal = self.parse_lit()?;
2015         let hi = self.prev_span;
2016         let expr = self.mk_expr(lo.to(hi), ExprKind::Lit(literal), ThinVec::new());
2017
2018         if minus_present {
2019             let minus_hi = self.prev_span;
2020             let unary = self.mk_unary(UnOp::Neg, expr);
2021             Ok(self.mk_expr(minus_lo.to(minus_hi), unary, ThinVec::new()))
2022         } else {
2023             Ok(expr)
2024         }
2025     }
2026
2027     fn parse_path_segment_ident(&mut self) -> PResult<'a, ast::Ident> {
2028         match self.token {
2029             token::Ident(ident, _) if self.token.is_path_segment_keyword() => {
2030                 let span = self.span;
2031                 self.bump();
2032                 Ok(Ident::new(ident.name, span))
2033             }
2034             _ => self.parse_ident(),
2035         }
2036     }
2037
2038     fn parse_ident_or_underscore(&mut self) -> PResult<'a, ast::Ident> {
2039         match self.token {
2040             token::Ident(ident, false) if ident.name == keywords::Underscore.name() => {
2041                 let span = self.span;
2042                 self.bump();
2043                 Ok(Ident::new(ident.name, span))
2044             }
2045             _ => self.parse_ident(),
2046         }
2047     }
2048
2049     /// Parses qualified path.
2050     /// Assumes that the leading `<` has been parsed already.
2051     ///
2052     /// `qualified_path = <type [as trait_ref]>::path`
2053     ///
2054     /// # Examples
2055     /// `<T>::default`
2056     /// `<T as U>::a`
2057     /// `<T as U>::F::a<S>` (without disambiguator)
2058     /// `<T as U>::F::a::<S>` (with disambiguator)
2059     fn parse_qpath(&mut self, style: PathStyle) -> PResult<'a, (QSelf, ast::Path)> {
2060         let lo = self.prev_span;
2061         let ty = self.parse_ty()?;
2062
2063         // `path` will contain the prefix of the path up to the `>`,
2064         // if any (e.g., `U` in the `<T as U>::*` examples
2065         // above). `path_span` has the span of that path, or an empty
2066         // span in the case of something like `<T>::Bar`.
2067         let (mut path, path_span);
2068         if self.eat_keyword(keywords::As) {
2069             let path_lo = self.span;
2070             path = self.parse_path(PathStyle::Type)?;
2071             path_span = path_lo.to(self.prev_span);
2072         } else {
2073             path = ast::Path { segments: Vec::new(), span: syntax_pos::DUMMY_SP };
2074             path_span = self.span.to(self.span);
2075         }
2076
2077         self.expect(&token::Gt)?;
2078         self.expect(&token::ModSep)?;
2079
2080         let qself = QSelf { ty, path_span, position: path.segments.len() };
2081         self.parse_path_segments(&mut path.segments, style, true)?;
2082
2083         Ok((qself, ast::Path { segments: path.segments, span: lo.to(self.prev_span) }))
2084     }
2085
2086     /// Parses simple paths.
2087     ///
2088     /// `path = [::] segment+`
2089     /// `segment = ident | ident[::]<args> | ident[::](args) [-> type]`
2090     ///
2091     /// # Examples
2092     /// `a::b::C<D>` (without disambiguator)
2093     /// `a::b::C::<D>` (with disambiguator)
2094     /// `Fn(Args)` (without disambiguator)
2095     /// `Fn::(Args)` (with disambiguator)
2096     pub fn parse_path(&mut self, style: PathStyle) -> PResult<'a, ast::Path> {
2097         self.parse_path_common(style, true)
2098     }
2099
2100     crate fn parse_path_common(&mut self, style: PathStyle, enable_warning: bool)
2101                              -> PResult<'a, ast::Path> {
2102         maybe_whole!(self, NtPath, |path| {
2103             if style == PathStyle::Mod &&
2104                path.segments.iter().any(|segment| segment.args.is_some()) {
2105                 self.diagnostic().span_err(path.span, "unexpected generic arguments in path");
2106             }
2107             path
2108         });
2109
2110         let lo = self.meta_var_span.unwrap_or(self.span);
2111         let mut segments = Vec::new();
2112         let mod_sep_ctxt = self.span.ctxt();
2113         if self.eat(&token::ModSep) {
2114             segments.push(PathSegment::path_root(lo.shrink_to_lo().with_ctxt(mod_sep_ctxt)));
2115         }
2116         self.parse_path_segments(&mut segments, style, enable_warning)?;
2117
2118         Ok(ast::Path { segments, span: lo.to(self.prev_span) })
2119     }
2120
2121     /// Like `parse_path`, but also supports parsing `Word` meta items into paths for back-compat.
2122     /// This is used when parsing derive macro paths in `#[derive]` attributes.
2123     pub fn parse_path_allowing_meta(&mut self, style: PathStyle) -> PResult<'a, ast::Path> {
2124         let meta_ident = match self.token {
2125             token::Interpolated(ref nt) => match nt.0 {
2126                 token::NtMeta(ref meta) => match meta.node {
2127                     ast::MetaItemKind::Word => Some(meta.ident.clone()),
2128                     _ => None,
2129                 },
2130                 _ => None,
2131             },
2132             _ => None,
2133         };
2134         if let Some(path) = meta_ident {
2135             self.bump();
2136             return Ok(path);
2137         }
2138         self.parse_path(style)
2139     }
2140
2141     fn parse_path_segments(&mut self,
2142                            segments: &mut Vec<PathSegment>,
2143                            style: PathStyle,
2144                            enable_warning: bool)
2145                            -> PResult<'a, ()> {
2146         loop {
2147             segments.push(self.parse_path_segment(style, enable_warning)?);
2148
2149             if self.is_import_coupler() || !self.eat(&token::ModSep) {
2150                 return Ok(());
2151             }
2152         }
2153     }
2154
2155     fn parse_path_segment(&mut self, style: PathStyle, enable_warning: bool)
2156                           -> PResult<'a, PathSegment> {
2157         let ident = self.parse_path_segment_ident()?;
2158
2159         let is_args_start = |token: &token::Token| match *token {
2160             token::Lt | token::BinOp(token::Shl) | token::OpenDelim(token::Paren) => true,
2161             _ => false,
2162         };
2163         let check_args_start = |this: &mut Self| {
2164             this.expected_tokens.extend_from_slice(
2165                 &[TokenType::Token(token::Lt), TokenType::Token(token::OpenDelim(token::Paren))]
2166             );
2167             is_args_start(&this.token)
2168         };
2169
2170         Ok(if style == PathStyle::Type && check_args_start(self) ||
2171               style != PathStyle::Mod && self.check(&token::ModSep)
2172                                       && self.look_ahead(1, |t| is_args_start(t)) {
2173             // Generic arguments are found - `<`, `(`, `::<` or `::(`.
2174             let lo = self.span;
2175             if self.eat(&token::ModSep) && style == PathStyle::Type && enable_warning {
2176                 self.diagnostic().struct_span_warn(self.prev_span, "unnecessary path disambiguator")
2177                                  .span_label(self.prev_span, "try removing `::`").emit();
2178             }
2179
2180             let args = if self.eat_lt() {
2181                 // `<'a, T, A = U>`
2182                 let (args, bindings) = self.parse_generic_args()?;
2183                 self.expect_gt()?;
2184                 let span = lo.to(self.prev_span);
2185                 AngleBracketedArgs { args, bindings, span }.into()
2186             } else {
2187                 // `(T, U) -> R`
2188                 self.bump(); // `(`
2189                 let inputs = self.parse_seq_to_before_tokens(
2190                     &[&token::CloseDelim(token::Paren)],
2191                     SeqSep::trailing_allowed(token::Comma),
2192                     TokenExpectType::Expect,
2193                     |p| p.parse_ty())?;
2194                 self.bump(); // `)`
2195                 let span = lo.to(self.prev_span);
2196                 let output = if self.eat(&token::RArrow) {
2197                     Some(self.parse_ty_common(false, false)?)
2198                 } else {
2199                     None
2200                 };
2201                 ParenthesisedArgs { inputs, output, span }.into()
2202             };
2203
2204             PathSegment { ident, args, id: ast::DUMMY_NODE_ID }
2205         } else {
2206             // Generic arguments are not found.
2207             PathSegment::from_ident(ident)
2208         })
2209     }
2210
2211     crate fn check_lifetime(&mut self) -> bool {
2212         self.expected_tokens.push(TokenType::Lifetime);
2213         self.token.is_lifetime()
2214     }
2215
2216     /// Parse single lifetime 'a or panic.
2217     crate fn expect_lifetime(&mut self) -> Lifetime {
2218         if let Some(ident) = self.token.lifetime() {
2219             let span = self.span;
2220             self.bump();
2221             Lifetime { ident: Ident::new(ident.name, span), id: ast::DUMMY_NODE_ID }
2222         } else {
2223             self.span_bug(self.span, "not a lifetime")
2224         }
2225     }
2226
2227     fn eat_label(&mut self) -> Option<Label> {
2228         if let Some(ident) = self.token.lifetime() {
2229             let span = self.span;
2230             self.bump();
2231             Some(Label { ident: Ident::new(ident.name, span) })
2232         } else {
2233             None
2234         }
2235     }
2236
2237     /// Parse mutability (`mut` or nothing).
2238     fn parse_mutability(&mut self) -> Mutability {
2239         if self.eat_keyword(keywords::Mut) {
2240             Mutability::Mutable
2241         } else {
2242             Mutability::Immutable
2243         }
2244     }
2245
2246     fn parse_field_name(&mut self) -> PResult<'a, Ident> {
2247         if let token::Literal(token::Integer(name), None) = self.token {
2248             self.bump();
2249             Ok(Ident::new(name, self.prev_span))
2250         } else {
2251             self.parse_ident_common(false)
2252         }
2253     }
2254
2255     /// Parse ident (COLON expr)?
2256     fn parse_field(&mut self) -> PResult<'a, Field> {
2257         let attrs = self.parse_outer_attributes()?;
2258         let lo = self.span;
2259
2260         // Check if a colon exists one ahead. This means we're parsing a fieldname.
2261         let (fieldname, expr, is_shorthand) = if self.look_ahead(1, |t| t == &token::Colon) {
2262             let fieldname = self.parse_field_name()?;
2263             self.bump(); // `:`
2264             (fieldname, self.parse_expr()?, false)
2265         } else {
2266             let fieldname = self.parse_ident_common(false)?;
2267
2268             // Mimic `x: x` for the `x` field shorthand.
2269             let path = ast::Path::from_ident(fieldname);
2270             let expr = self.mk_expr(fieldname.span, ExprKind::Path(None, path), ThinVec::new());
2271             (fieldname, expr, true)
2272         };
2273         Ok(ast::Field {
2274             ident: fieldname,
2275             span: lo.to(expr.span),
2276             expr,
2277             is_shorthand,
2278             attrs: attrs.into(),
2279         })
2280     }
2281
2282     fn mk_expr(&mut self, span: Span, node: ExprKind, attrs: ThinVec<Attribute>) -> P<Expr> {
2283         P(Expr { node, span, attrs, id: ast::DUMMY_NODE_ID })
2284     }
2285
2286     fn mk_unary(&mut self, unop: ast::UnOp, expr: P<Expr>) -> ast::ExprKind {
2287         ExprKind::Unary(unop, expr)
2288     }
2289
2290     fn mk_binary(&mut self, binop: ast::BinOp, lhs: P<Expr>, rhs: P<Expr>) -> ast::ExprKind {
2291         ExprKind::Binary(binop, lhs, rhs)
2292     }
2293
2294     fn mk_call(&mut self, f: P<Expr>, args: Vec<P<Expr>>) -> ast::ExprKind {
2295         ExprKind::Call(f, args)
2296     }
2297
2298     fn mk_index(&mut self, expr: P<Expr>, idx: P<Expr>) -> ast::ExprKind {
2299         ExprKind::Index(expr, idx)
2300     }
2301
2302     fn mk_range(&mut self,
2303                     start: Option<P<Expr>>,
2304                     end: Option<P<Expr>>,
2305                     limits: RangeLimits)
2306                     -> PResult<'a, ast::ExprKind> {
2307         if end.is_none() && limits == RangeLimits::Closed {
2308             Err(self.span_fatal_err(self.span, Error::InclusiveRangeWithNoEnd))
2309         } else {
2310             Ok(ExprKind::Range(start, end, limits))
2311         }
2312     }
2313
2314     fn mk_assign_op(&mut self, binop: ast::BinOp,
2315                         lhs: P<Expr>, rhs: P<Expr>) -> ast::ExprKind {
2316         ExprKind::AssignOp(binop, lhs, rhs)
2317     }
2318
2319     pub fn mk_mac_expr(&mut self, span: Span, m: Mac_, attrs: ThinVec<Attribute>) -> P<Expr> {
2320         P(Expr {
2321             id: ast::DUMMY_NODE_ID,
2322             node: ExprKind::Mac(source_map::Spanned {node: m, span: span}),
2323             span,
2324             attrs,
2325         })
2326     }
2327
2328     fn expect_delimited_token_tree(&mut self) -> PResult<'a, (MacDelimiter, ThinTokenStream)> {
2329         let delim = match self.token {
2330             token::OpenDelim(delim) => delim,
2331             _ => {
2332                 let msg = "expected open delimiter";
2333                 let mut err = self.fatal(msg);
2334                 err.span_label(self.span, msg);
2335                 return Err(err)
2336             }
2337         };
2338         let tts = match self.parse_token_tree() {
2339             TokenTree::Delimited(_, _, tts) => tts,
2340             _ => unreachable!(),
2341         };
2342         let delim = match delim {
2343             token::Paren => MacDelimiter::Parenthesis,
2344             token::Bracket => MacDelimiter::Bracket,
2345             token::Brace => MacDelimiter::Brace,
2346             token::NoDelim => self.bug("unexpected no delimiter"),
2347         };
2348         Ok((delim, tts.stream().into()))
2349     }
2350
2351     /// At the bottom (top?) of the precedence hierarchy,
2352     /// parse things like parenthesized exprs,
2353     /// macros, return, etc.
2354     ///
2355     /// N.B., this does not parse outer attributes,
2356     ///     and is private because it only works
2357     ///     correctly if called from parse_dot_or_call_expr().
2358     fn parse_bottom_expr(&mut self) -> PResult<'a, P<Expr>> {
2359         maybe_whole_expr!(self);
2360
2361         // Outer attributes are already parsed and will be
2362         // added to the return value after the fact.
2363         //
2364         // Therefore, prevent sub-parser from parsing
2365         // attributes by giving them a empty "already parsed" list.
2366         let mut attrs = ThinVec::new();
2367
2368         let lo = self.span;
2369         let mut hi = self.span;
2370
2371         let ex: ExprKind;
2372
2373         // Note: when adding new syntax here, don't forget to adjust Token::can_begin_expr().
2374         match self.token {
2375             token::OpenDelim(token::Paren) => {
2376                 self.bump();
2377
2378                 attrs.extend(self.parse_inner_attributes()?);
2379
2380                 // (e) is parenthesized e
2381                 // (e,) is a tuple with only one field, e
2382                 let mut es = vec![];
2383                 let mut trailing_comma = false;
2384                 while self.token != token::CloseDelim(token::Paren) {
2385                     es.push(self.parse_expr()?);
2386                     self.expect_one_of(&[], &[token::Comma, token::CloseDelim(token::Paren)])?;
2387                     if self.eat(&token::Comma) {
2388                         trailing_comma = true;
2389                     } else {
2390                         trailing_comma = false;
2391                         break;
2392                     }
2393                 }
2394                 self.bump();
2395
2396                 hi = self.prev_span;
2397                 ex = if es.len() == 1 && !trailing_comma {
2398                     ExprKind::Paren(es.into_iter().nth(0).unwrap())
2399                 } else {
2400                     ExprKind::Tup(es)
2401                 };
2402             }
2403             token::OpenDelim(token::Brace) => {
2404                 return self.parse_block_expr(None, lo, BlockCheckMode::Default, attrs);
2405             }
2406             token::BinOp(token::Or) | token::OrOr => {
2407                 return self.parse_lambda_expr(attrs);
2408             }
2409             token::OpenDelim(token::Bracket) => {
2410                 self.bump();
2411
2412                 attrs.extend(self.parse_inner_attributes()?);
2413
2414                 if self.eat(&token::CloseDelim(token::Bracket)) {
2415                     // Empty vector.
2416                     ex = ExprKind::Array(Vec::new());
2417                 } else {
2418                     // Nonempty vector.
2419                     let first_expr = self.parse_expr()?;
2420                     if self.eat(&token::Semi) {
2421                         // Repeating array syntax: [ 0; 512 ]
2422                         let count = AnonConst {
2423                             id: ast::DUMMY_NODE_ID,
2424                             value: self.parse_expr()?,
2425                         };
2426                         self.expect(&token::CloseDelim(token::Bracket))?;
2427                         ex = ExprKind::Repeat(first_expr, count);
2428                     } else if self.eat(&token::Comma) {
2429                         // Vector with two or more elements.
2430                         let remaining_exprs = self.parse_seq_to_end(
2431                             &token::CloseDelim(token::Bracket),
2432                             SeqSep::trailing_allowed(token::Comma),
2433                             |p| Ok(p.parse_expr()?)
2434                         )?;
2435                         let mut exprs = vec![first_expr];
2436                         exprs.extend(remaining_exprs);
2437                         ex = ExprKind::Array(exprs);
2438                     } else {
2439                         // Vector with one element.
2440                         self.expect(&token::CloseDelim(token::Bracket))?;
2441                         ex = ExprKind::Array(vec![first_expr]);
2442                     }
2443                 }
2444                 hi = self.prev_span;
2445             }
2446             _ => {
2447                 if self.eat_lt() {
2448                     let (qself, path) = self.parse_qpath(PathStyle::Expr)?;
2449                     hi = path.span;
2450                     return Ok(self.mk_expr(lo.to(hi), ExprKind::Path(Some(qself), path), attrs));
2451                 }
2452                 if self.span.rust_2018() && self.check_keyword(keywords::Async)
2453                 {
2454                     if self.is_async_block() { // check for `async {` and `async move {`
2455                         return self.parse_async_block(attrs);
2456                     } else {
2457                         return self.parse_lambda_expr(attrs);
2458                     }
2459                 }
2460                 if self.check_keyword(keywords::Move) || self.check_keyword(keywords::Static) {
2461                     return self.parse_lambda_expr(attrs);
2462                 }
2463                 if self.eat_keyword(keywords::If) {
2464                     return self.parse_if_expr(attrs);
2465                 }
2466                 if self.eat_keyword(keywords::For) {
2467                     let lo = self.prev_span;
2468                     return self.parse_for_expr(None, lo, attrs);
2469                 }
2470                 if self.eat_keyword(keywords::While) {
2471                     let lo = self.prev_span;
2472                     return self.parse_while_expr(None, lo, attrs);
2473                 }
2474                 if let Some(label) = self.eat_label() {
2475                     let lo = label.ident.span;
2476                     self.expect(&token::Colon)?;
2477                     if self.eat_keyword(keywords::While) {
2478                         return self.parse_while_expr(Some(label), lo, attrs)
2479                     }
2480                     if self.eat_keyword(keywords::For) {
2481                         return self.parse_for_expr(Some(label), lo, attrs)
2482                     }
2483                     if self.eat_keyword(keywords::Loop) {
2484                         return self.parse_loop_expr(Some(label), lo, attrs)
2485                     }
2486                     if self.token == token::OpenDelim(token::Brace) {
2487                         return self.parse_block_expr(Some(label),
2488                                                      lo,
2489                                                      BlockCheckMode::Default,
2490                                                      attrs);
2491                     }
2492                     let msg = "expected `while`, `for`, `loop` or `{` after a label";
2493                     let mut err = self.fatal(msg);
2494                     err.span_label(self.span, msg);
2495                     return Err(err);
2496                 }
2497                 if self.eat_keyword(keywords::Loop) {
2498                     let lo = self.prev_span;
2499                     return self.parse_loop_expr(None, lo, attrs);
2500                 }
2501                 if self.eat_keyword(keywords::Continue) {
2502                     let label = self.eat_label();
2503                     let ex = ExprKind::Continue(label);
2504                     let hi = self.prev_span;
2505                     return Ok(self.mk_expr(lo.to(hi), ex, attrs));
2506                 }
2507                 if self.eat_keyword(keywords::Match) {
2508                     let match_sp = self.prev_span;
2509                     return self.parse_match_expr(attrs).map_err(|mut err| {
2510                         err.span_label(match_sp, "while parsing this match expression");
2511                         err
2512                     });
2513                 }
2514                 if self.eat_keyword(keywords::Unsafe) {
2515                     return self.parse_block_expr(
2516                         None,
2517                         lo,
2518                         BlockCheckMode::Unsafe(ast::UserProvided),
2519                         attrs);
2520                 }
2521                 if self.is_do_catch_block() {
2522                     let mut db = self.fatal("found removed `do catch` syntax");
2523                     db.help("Following RFC #2388, the new non-placeholder syntax is `try`");
2524                     return Err(db);
2525                 }
2526                 if self.is_try_block() {
2527                     let lo = self.span;
2528                     assert!(self.eat_keyword(keywords::Try));
2529                     return self.parse_try_block(lo, attrs);
2530                 }
2531                 if self.eat_keyword(keywords::Return) {
2532                     if self.token.can_begin_expr() {
2533                         let e = self.parse_expr()?;
2534                         hi = e.span;
2535                         ex = ExprKind::Ret(Some(e));
2536                     } else {
2537                         ex = ExprKind::Ret(None);
2538                     }
2539                 } else if self.eat_keyword(keywords::Break) {
2540                     let label = self.eat_label();
2541                     let e = if self.token.can_begin_expr()
2542                                && !(self.token == token::OpenDelim(token::Brace)
2543                                     && self.restrictions.contains(
2544                                            Restrictions::NO_STRUCT_LITERAL)) {
2545                         Some(self.parse_expr()?)
2546                     } else {
2547                         None
2548                     };
2549                     ex = ExprKind::Break(label, e);
2550                     hi = self.prev_span;
2551                 } else if self.eat_keyword(keywords::Yield) {
2552                     if self.token.can_begin_expr() {
2553                         let e = self.parse_expr()?;
2554                         hi = e.span;
2555                         ex = ExprKind::Yield(Some(e));
2556                     } else {
2557                         ex = ExprKind::Yield(None);
2558                     }
2559                 } else if self.token.is_keyword(keywords::Let) {
2560                     // Catch this syntax error here, instead of in `parse_ident`, so
2561                     // that we can explicitly mention that let is not to be used as an expression
2562                     let mut db = self.fatal("expected expression, found statement (`let`)");
2563                     db.span_label(self.span, "expected expression");
2564                     db.note("variable declaration using `let` is a statement");
2565                     return Err(db);
2566                 } else if self.token.is_path_start() {
2567                     let pth = self.parse_path(PathStyle::Expr)?;
2568
2569                     // `!`, as an operator, is prefix, so we know this isn't that
2570                     if self.eat(&token::Not) {
2571                         // MACRO INVOCATION expression
2572                         let (delim, tts) = self.expect_delimited_token_tree()?;
2573                         let hi = self.prev_span;
2574                         let node = Mac_ { path: pth, tts, delim };
2575                         return Ok(self.mk_mac_expr(lo.to(hi), node, attrs))
2576                     }
2577                     if self.check(&token::OpenDelim(token::Brace)) {
2578                         // This is a struct literal, unless we're prohibited
2579                         // from parsing struct literals here.
2580                         let prohibited = self.restrictions.contains(
2581                             Restrictions::NO_STRUCT_LITERAL
2582                         );
2583                         if !prohibited {
2584                             return self.parse_struct_expr(lo, pth, attrs);
2585                         }
2586                     }
2587
2588                     hi = pth.span;
2589                     ex = ExprKind::Path(None, pth);
2590                 } else {
2591                     match self.parse_literal_maybe_minus() {
2592                         Ok(expr) => {
2593                             hi = expr.span;
2594                             ex = expr.node.clone();
2595                         }
2596                         Err(mut err) => {
2597                             self.cancel(&mut err);
2598                             let msg = format!("expected expression, found {}",
2599                                               self.this_token_descr());
2600                             let mut err = self.fatal(&msg);
2601                             err.span_label(self.span, "expected expression");
2602                             return Err(err);
2603                         }
2604                     }
2605                 }
2606             }
2607         }
2608
2609         let expr = Expr { node: ex, span: lo.to(hi), id: ast::DUMMY_NODE_ID, attrs };
2610         let expr = self.maybe_recover_from_bad_qpath(expr, true)?;
2611
2612         return Ok(P(expr));
2613     }
2614
2615     fn parse_struct_expr(&mut self, lo: Span, pth: ast::Path, mut attrs: ThinVec<Attribute>)
2616                          -> PResult<'a, P<Expr>> {
2617         let struct_sp = lo.to(self.prev_span);
2618         self.bump();
2619         let mut fields = Vec::new();
2620         let mut base = None;
2621
2622         attrs.extend(self.parse_inner_attributes()?);
2623
2624         while self.token != token::CloseDelim(token::Brace) {
2625             if self.eat(&token::DotDot) {
2626                 let exp_span = self.prev_span;
2627                 match self.parse_expr() {
2628                     Ok(e) => {
2629                         base = Some(e);
2630                     }
2631                     Err(mut e) => {
2632                         e.emit();
2633                         self.recover_stmt();
2634                     }
2635                 }
2636                 if self.token == token::Comma {
2637                     let mut err = self.sess.span_diagnostic.mut_span_err(
2638                         exp_span.to(self.prev_span),
2639                         "cannot use a comma after the base struct",
2640                     );
2641                     err.span_suggestion_short_with_applicability(
2642                         self.span,
2643                         "remove this comma",
2644                         String::new(),
2645                         Applicability::MachineApplicable
2646                     );
2647                     err.note("the base struct must always be the last field");
2648                     err.emit();
2649                     self.recover_stmt();
2650                 }
2651                 break;
2652             }
2653
2654             match self.parse_field() {
2655                 Ok(f) => fields.push(f),
2656                 Err(mut e) => {
2657                     e.span_label(struct_sp, "while parsing this struct");
2658                     e.emit();
2659
2660                     // If the next token is a comma, then try to parse
2661                     // what comes next as additional fields, rather than
2662                     // bailing out until next `}`.
2663                     if self.token != token::Comma {
2664                         self.recover_stmt();
2665                         break;
2666                     }
2667                 }
2668             }
2669
2670             match self.expect_one_of(&[token::Comma],
2671                                      &[token::CloseDelim(token::Brace)]) {
2672                 Ok(()) => {}
2673                 Err(mut e) => {
2674                     e.emit();
2675                     self.recover_stmt();
2676                     break;
2677                 }
2678             }
2679         }
2680
2681         let span = lo.to(self.span);
2682         self.expect(&token::CloseDelim(token::Brace))?;
2683         return Ok(self.mk_expr(span, ExprKind::Struct(pth, fields, base), attrs));
2684     }
2685
2686     fn parse_or_use_outer_attributes(&mut self,
2687                                      already_parsed_attrs: Option<ThinVec<Attribute>>)
2688                                      -> PResult<'a, ThinVec<Attribute>> {
2689         if let Some(attrs) = already_parsed_attrs {
2690             Ok(attrs)
2691         } else {
2692             self.parse_outer_attributes().map(|a| a.into())
2693         }
2694     }
2695
2696     /// Parse a block or unsafe block
2697     fn parse_block_expr(&mut self, opt_label: Option<Label>,
2698                             lo: Span, blk_mode: BlockCheckMode,
2699                             outer_attrs: ThinVec<Attribute>)
2700                             -> PResult<'a, P<Expr>> {
2701         self.expect(&token::OpenDelim(token::Brace))?;
2702
2703         let mut attrs = outer_attrs;
2704         attrs.extend(self.parse_inner_attributes()?);
2705
2706         let blk = self.parse_block_tail(lo, blk_mode)?;
2707         return Ok(self.mk_expr(blk.span, ExprKind::Block(blk, opt_label), attrs));
2708     }
2709
2710     /// parse a.b or a(13) or a[4] or just a
2711     fn parse_dot_or_call_expr(&mut self,
2712                                   already_parsed_attrs: Option<ThinVec<Attribute>>)
2713                                   -> PResult<'a, P<Expr>> {
2714         let attrs = self.parse_or_use_outer_attributes(already_parsed_attrs)?;
2715
2716         let b = self.parse_bottom_expr();
2717         let (span, b) = self.interpolated_or_expr_span(b)?;
2718         self.parse_dot_or_call_expr_with(b, span, attrs)
2719     }
2720
2721     fn parse_dot_or_call_expr_with(&mut self,
2722                                        e0: P<Expr>,
2723                                        lo: Span,
2724                                        mut attrs: ThinVec<Attribute>)
2725                                        -> PResult<'a, P<Expr>> {
2726         // Stitch the list of outer attributes onto the return value.
2727         // A little bit ugly, but the best way given the current code
2728         // structure
2729         self.parse_dot_or_call_expr_with_(e0, lo)
2730         .map(|expr|
2731             expr.map(|mut expr| {
2732                 attrs.extend::<Vec<_>>(expr.attrs.into());
2733                 expr.attrs = attrs;
2734                 match expr.node {
2735                     ExprKind::If(..) | ExprKind::IfLet(..) => {
2736                         if !expr.attrs.is_empty() {
2737                             // Just point to the first attribute in there...
2738                             let span = expr.attrs[0].span;
2739
2740                             self.span_err(span,
2741                                 "attributes are not yet allowed on `if` \
2742                                 expressions");
2743                         }
2744                     }
2745                     _ => {}
2746                 }
2747                 expr
2748             })
2749         )
2750     }
2751
2752     // Assuming we have just parsed `.`, continue parsing into an expression.
2753     fn parse_dot_suffix(&mut self, self_arg: P<Expr>, lo: Span) -> PResult<'a, P<Expr>> {
2754         let segment = self.parse_path_segment(PathStyle::Expr, true)?;
2755         Ok(match self.token {
2756             token::OpenDelim(token::Paren) => {
2757                 // Method call `expr.f()`
2758                 let mut args = self.parse_unspanned_seq(
2759                     &token::OpenDelim(token::Paren),
2760                     &token::CloseDelim(token::Paren),
2761                     SeqSep::trailing_allowed(token::Comma),
2762                     |p| Ok(p.parse_expr()?)
2763                 )?;
2764                 args.insert(0, self_arg);
2765
2766                 let span = lo.to(self.prev_span);
2767                 self.mk_expr(span, ExprKind::MethodCall(segment, args), ThinVec::new())
2768             }
2769             _ => {
2770                 // Field access `expr.f`
2771                 if let Some(args) = segment.args {
2772                     self.span_err(args.span(),
2773                                   "field expressions may not have generic arguments");
2774                 }
2775
2776                 let span = lo.to(self.prev_span);
2777                 self.mk_expr(span, ExprKind::Field(self_arg, segment.ident), ThinVec::new())
2778             }
2779         })
2780     }
2781
2782     fn parse_dot_or_call_expr_with_(&mut self, e0: P<Expr>, lo: Span) -> PResult<'a, P<Expr>> {
2783         let mut e = e0;
2784         let mut hi;
2785         loop {
2786             // expr?
2787             while self.eat(&token::Question) {
2788                 let hi = self.prev_span;
2789                 e = self.mk_expr(lo.to(hi), ExprKind::Try(e), ThinVec::new());
2790             }
2791
2792             // expr.f
2793             if self.eat(&token::Dot) {
2794                 match self.token {
2795                   token::Ident(..) => {
2796                     e = self.parse_dot_suffix(e, lo)?;
2797                   }
2798                   token::Literal(token::Integer(name), _) => {
2799                     let span = self.span;
2800                     self.bump();
2801                     let field = ExprKind::Field(e, Ident::new(name, span));
2802                     e = self.mk_expr(lo.to(span), field, ThinVec::new());
2803                   }
2804                   token::Literal(token::Float(n), _suf) => {
2805                     self.bump();
2806                     let fstr = n.as_str();
2807                     let mut err = self.diagnostic()
2808                         .struct_span_err(self.prev_span, &format!("unexpected token: `{}`", n));
2809                     err.span_label(self.prev_span, "unexpected token");
2810                     if fstr.chars().all(|x| "0123456789.".contains(x)) {
2811                         let float = match fstr.parse::<f64>().ok() {
2812                             Some(f) => f,
2813                             None => continue,
2814                         };
2815                         let sugg = pprust::to_string(|s| {
2816                             use print::pprust::PrintState;
2817                             s.popen()?;
2818                             s.print_expr(&e)?;
2819                             s.s.word( ".")?;
2820                             s.print_usize(float.trunc() as usize)?;
2821                             s.pclose()?;
2822                             s.s.word(".")?;
2823                             s.s.word(fstr.splitn(2, ".").last().unwrap().to_string())
2824                         });
2825                         err.span_suggestion_with_applicability(
2826                             lo.to(self.prev_span),
2827                             "try parenthesizing the first index",
2828                             sugg,
2829                             Applicability::MachineApplicable
2830                         );
2831                     }
2832                     return Err(err);
2833
2834                   }
2835                   _ => {
2836                     // FIXME Could factor this out into non_fatal_unexpected or something.
2837                     let actual = self.this_token_to_string();
2838                     self.span_err(self.span, &format!("unexpected token: `{}`", actual));
2839                   }
2840                 }
2841                 continue;
2842             }
2843             if self.expr_is_complete(&e) { break; }
2844             match self.token {
2845               // expr(...)
2846               token::OpenDelim(token::Paren) => {
2847                 let es = self.parse_unspanned_seq(
2848                     &token::OpenDelim(token::Paren),
2849                     &token::CloseDelim(token::Paren),
2850                     SeqSep::trailing_allowed(token::Comma),
2851                     |p| Ok(p.parse_expr()?)
2852                 )?;
2853                 hi = self.prev_span;
2854
2855                 let nd = self.mk_call(e, es);
2856                 e = self.mk_expr(lo.to(hi), nd, ThinVec::new());
2857               }
2858
2859               // expr[...]
2860               // Could be either an index expression or a slicing expression.
2861               token::OpenDelim(token::Bracket) => {
2862                 self.bump();
2863                 let ix = self.parse_expr()?;
2864                 hi = self.span;
2865                 self.expect(&token::CloseDelim(token::Bracket))?;
2866                 let index = self.mk_index(e, ix);
2867                 e = self.mk_expr(lo.to(hi), index, ThinVec::new())
2868               }
2869               _ => return Ok(e)
2870             }
2871         }
2872         return Ok(e);
2873     }
2874
2875     crate fn process_potential_macro_variable(&mut self) {
2876         let (token, span) = match self.token {
2877             token::Dollar if self.span.ctxt() != syntax_pos::hygiene::SyntaxContext::empty() &&
2878                              self.look_ahead(1, |t| t.is_ident()) => {
2879                 self.bump();
2880                 let name = match self.token {
2881                     token::Ident(ident, _) => ident,
2882                     _ => unreachable!()
2883                 };
2884                 let mut err = self.fatal(&format!("unknown macro variable `{}`", name));
2885                 err.span_label(self.span, "unknown macro variable");
2886                 err.emit();
2887                 self.bump();
2888                 return
2889             }
2890             token::Interpolated(ref nt) => {
2891                 self.meta_var_span = Some(self.span);
2892                 // Interpolated identifier and lifetime tokens are replaced with usual identifier
2893                 // and lifetime tokens, so the former are never encountered during normal parsing.
2894                 match nt.0 {
2895                     token::NtIdent(ident, is_raw) => (token::Ident(ident, is_raw), ident.span),
2896                     token::NtLifetime(ident) => (token::Lifetime(ident), ident.span),
2897                     _ => return,
2898                 }
2899             }
2900             _ => return,
2901         };
2902         self.token = token;
2903         self.span = span;
2904     }
2905
2906     /// parse a single token tree from the input.
2907     crate fn parse_token_tree(&mut self) -> TokenTree {
2908         match self.token {
2909             token::OpenDelim(..) => {
2910                 let frame = mem::replace(&mut self.token_cursor.frame,
2911                                          self.token_cursor.stack.pop().unwrap());
2912                 self.span = frame.span.entire();
2913                 self.bump();
2914                 TokenTree::Delimited(
2915                     frame.span,
2916                     frame.delim,
2917                     frame.tree_cursor.original_stream().into(),
2918                 )
2919             },
2920             token::CloseDelim(_) | token::Eof => unreachable!(),
2921             _ => {
2922                 let (token, span) = (mem::replace(&mut self.token, token::Whitespace), self.span);
2923                 self.bump();
2924                 TokenTree::Token(span, token)
2925             }
2926         }
2927     }
2928
2929     // parse a stream of tokens into a list of TokenTree's,
2930     // up to EOF.
2931     pub fn parse_all_token_trees(&mut self) -> PResult<'a, Vec<TokenTree>> {
2932         let mut tts = Vec::new();
2933         while self.token != token::Eof {
2934             tts.push(self.parse_token_tree());
2935         }
2936         Ok(tts)
2937     }
2938
2939     pub fn parse_tokens(&mut self) -> TokenStream {
2940         let mut result = Vec::new();
2941         loop {
2942             match self.token {
2943                 token::Eof | token::CloseDelim(..) => break,
2944                 _ => result.push(self.parse_token_tree().into()),
2945             }
2946         }
2947         TokenStream::new(result)
2948     }
2949
2950     /// Parse a prefix-unary-operator expr
2951     fn parse_prefix_expr(&mut self,
2952                              already_parsed_attrs: Option<ThinVec<Attribute>>)
2953                              -> PResult<'a, P<Expr>> {
2954         let attrs = self.parse_or_use_outer_attributes(already_parsed_attrs)?;
2955         let lo = self.span;
2956         // Note: when adding new unary operators, don't forget to adjust Token::can_begin_expr()
2957         let (hi, ex) = match self.token {
2958             token::Not => {
2959                 self.bump();
2960                 let e = self.parse_prefix_expr(None);
2961                 let (span, e) = self.interpolated_or_expr_span(e)?;
2962                 (lo.to(span), self.mk_unary(UnOp::Not, e))
2963             }
2964             // Suggest `!` for bitwise negation when encountering a `~`
2965             token::Tilde => {
2966                 self.bump();
2967                 let e = self.parse_prefix_expr(None);
2968                 let (span, e) = self.interpolated_or_expr_span(e)?;
2969                 let span_of_tilde = lo;
2970                 let mut err = self.diagnostic()
2971                     .struct_span_err(span_of_tilde, "`~` cannot be used as a unary operator");
2972                 err.span_suggestion_short_with_applicability(
2973                     span_of_tilde,
2974                     "use `!` to perform bitwise negation",
2975                     "!".to_owned(),
2976                     Applicability::MachineApplicable
2977                 );
2978                 err.emit();
2979                 (lo.to(span), self.mk_unary(UnOp::Not, e))
2980             }
2981             token::BinOp(token::Minus) => {
2982                 self.bump();
2983                 let e = self.parse_prefix_expr(None);
2984                 let (span, e) = self.interpolated_or_expr_span(e)?;
2985                 (lo.to(span), self.mk_unary(UnOp::Neg, e))
2986             }
2987             token::BinOp(token::Star) => {
2988                 self.bump();
2989                 let e = self.parse_prefix_expr(None);
2990                 let (span, e) = self.interpolated_or_expr_span(e)?;
2991                 (lo.to(span), self.mk_unary(UnOp::Deref, e))
2992             }
2993             token::BinOp(token::And) | token::AndAnd => {
2994                 self.expect_and()?;
2995                 let m = self.parse_mutability();
2996                 let e = self.parse_prefix_expr(None);
2997                 let (span, e) = self.interpolated_or_expr_span(e)?;
2998                 (lo.to(span), ExprKind::AddrOf(m, e))
2999             }
3000             token::Ident(..) if self.token.is_keyword(keywords::In) => {
3001                 self.bump();
3002                 let place = self.parse_expr_res(
3003                     Restrictions::NO_STRUCT_LITERAL,
3004                     None,
3005                 )?;
3006                 let blk = self.parse_block()?;
3007                 let span = blk.span;
3008                 let blk_expr = self.mk_expr(span, ExprKind::Block(blk, None), ThinVec::new());
3009                 (lo.to(span), ExprKind::ObsoleteInPlace(place, blk_expr))
3010             }
3011             token::Ident(..) if self.token.is_keyword(keywords::Box) => {
3012                 self.bump();
3013                 let e = self.parse_prefix_expr(None);
3014                 let (span, e) = self.interpolated_or_expr_span(e)?;
3015                 (lo.to(span), ExprKind::Box(e))
3016             }
3017             token::Ident(..) if self.token.is_ident_named("not") => {
3018                 // `not` is just an ordinary identifier in Rust-the-language,
3019                 // but as `rustc`-the-compiler, we can issue clever diagnostics
3020                 // for confused users who really want to say `!`
3021                 let token_cannot_continue_expr = |t: &token::Token| match *t {
3022                     // These tokens can start an expression after `!`, but
3023                     // can't continue an expression after an ident
3024                     token::Ident(ident, is_raw) => token::ident_can_begin_expr(ident, is_raw),
3025                     token::Literal(..) | token::Pound => true,
3026                     token::Interpolated(ref nt) => match nt.0 {
3027                         token::NtIdent(..) | token::NtExpr(..) |
3028                         token::NtBlock(..) | token::NtPath(..) => true,
3029                         _ => false,
3030                     },
3031                     _ => false
3032                 };
3033                 let cannot_continue_expr = self.look_ahead(1, token_cannot_continue_expr);
3034                 if cannot_continue_expr {
3035                     self.bump();
3036                     // Emit the error ...
3037                     let mut err = self.diagnostic()
3038                         .struct_span_err(self.span,
3039                                          &format!("unexpected {} after identifier",
3040                                                   self.this_token_descr()));
3041                     // span the `not` plus trailing whitespace to avoid
3042                     // trailing whitespace after the `!` in our suggestion
3043                     let to_replace = self.sess.source_map()
3044                         .span_until_non_whitespace(lo.to(self.span));
3045                     err.span_suggestion_short_with_applicability(
3046                         to_replace,
3047                         "use `!` to perform logical negation",
3048                         "!".to_owned(),
3049                         Applicability::MachineApplicable
3050                     );
3051                     err.emit();
3052                     // —and recover! (just as if we were in the block
3053                     // for the `token::Not` arm)
3054                     let e = self.parse_prefix_expr(None);
3055                     let (span, e) = self.interpolated_or_expr_span(e)?;
3056                     (lo.to(span), self.mk_unary(UnOp::Not, e))
3057                 } else {
3058                     return self.parse_dot_or_call_expr(Some(attrs));
3059                 }
3060             }
3061             _ => { return self.parse_dot_or_call_expr(Some(attrs)); }
3062         };
3063         return Ok(self.mk_expr(lo.to(hi), ex, attrs));
3064     }
3065
3066     /// Parse an associative expression
3067     ///
3068     /// This parses an expression accounting for associativity and precedence of the operators in
3069     /// the expression.
3070     #[inline]
3071     fn parse_assoc_expr(&mut self,
3072                             already_parsed_attrs: Option<ThinVec<Attribute>>)
3073                             -> PResult<'a, P<Expr>> {
3074         self.parse_assoc_expr_with(0, already_parsed_attrs.into())
3075     }
3076
3077     /// Parse an associative expression with operators of at least `min_prec` precedence
3078     fn parse_assoc_expr_with(&mut self,
3079                                  min_prec: usize,
3080                                  lhs: LhsExpr)
3081                                  -> PResult<'a, P<Expr>> {
3082         let mut lhs = if let LhsExpr::AlreadyParsed(expr) = lhs {
3083             expr
3084         } else {
3085             let attrs = match lhs {
3086                 LhsExpr::AttributesParsed(attrs) => Some(attrs),
3087                 _ => None,
3088             };
3089             if [token::DotDot, token::DotDotDot, token::DotDotEq].contains(&self.token) {
3090                 return self.parse_prefix_range_expr(attrs);
3091             } else {
3092                 self.parse_prefix_expr(attrs)?
3093             }
3094         };
3095
3096         if self.expr_is_complete(&lhs) {
3097             // Semi-statement forms are odd. See https://github.com/rust-lang/rust/issues/29071
3098             return Ok(lhs);
3099         }
3100         self.expected_tokens.push(TokenType::Operator);
3101         while let Some(op) = AssocOp::from_token(&self.token) {
3102
3103             // Adjust the span for interpolated LHS to point to the `$lhs` token and not to what
3104             // it refers to. Interpolated identifiers are unwrapped early and never show up here
3105             // as `PrevTokenKind::Interpolated` so if LHS is a single identifier we always process
3106             // it as "interpolated", it doesn't change the answer for non-interpolated idents.
3107             let lhs_span = match (self.prev_token_kind, &lhs.node) {
3108                 (PrevTokenKind::Interpolated, _) => self.prev_span,
3109                 (PrevTokenKind::Ident, &ExprKind::Path(None, ref path))
3110                     if path.segments.len() == 1 => self.prev_span,
3111                 _ => lhs.span,
3112             };
3113
3114             let cur_op_span = self.span;
3115             let restrictions = if op.is_assign_like() {
3116                 self.restrictions & Restrictions::NO_STRUCT_LITERAL
3117             } else {
3118                 self.restrictions
3119             };
3120             if op.precedence() < min_prec {
3121                 break;
3122             }
3123             // Check for deprecated `...` syntax
3124             if self.token == token::DotDotDot && op == AssocOp::DotDotEq {
3125                 self.err_dotdotdot_syntax(self.span);
3126             }
3127
3128             self.bump();
3129             if op.is_comparison() {
3130                 self.check_no_chained_comparison(&lhs, &op);
3131             }
3132             // Special cases:
3133             if op == AssocOp::As {
3134                 lhs = self.parse_assoc_op_cast(lhs, lhs_span, ExprKind::Cast)?;
3135                 continue
3136             } else if op == AssocOp::Colon {
3137                 lhs = match self.parse_assoc_op_cast(lhs, lhs_span, ExprKind::Type) {
3138                     Ok(lhs) => lhs,
3139                     Err(mut err) => {
3140                         err.span_label(self.span,
3141                                        "expecting a type here because of type ascription");
3142                         let cm = self.sess.source_map();
3143                         let cur_pos = cm.lookup_char_pos(self.span.lo());
3144                         let op_pos = cm.lookup_char_pos(cur_op_span.hi());
3145                         if cur_pos.line != op_pos.line {
3146                             err.span_suggestion_with_applicability(
3147                                 cur_op_span,
3148                                 "try using a semicolon",
3149                                 ";".to_string(),
3150                                 Applicability::MaybeIncorrect // speculative
3151                             );
3152                         }
3153                         return Err(err);
3154                     }
3155                 };
3156                 continue
3157             } else if op == AssocOp::DotDot || op == AssocOp::DotDotEq {
3158                 // If we didn’t have to handle `x..`/`x..=`, it would be pretty easy to
3159                 // generalise it to the Fixity::None code.
3160                 //
3161                 // We have 2 alternatives here: `x..y`/`x..=y` and `x..`/`x..=` The other
3162                 // two variants are handled with `parse_prefix_range_expr` call above.
3163                 let rhs = if self.is_at_start_of_range_notation_rhs() {
3164                     Some(self.parse_assoc_expr_with(op.precedence() + 1,
3165                                                     LhsExpr::NotYetParsed)?)
3166                 } else {
3167                     None
3168                 };
3169                 let (lhs_span, rhs_span) = (lhs.span, if let Some(ref x) = rhs {
3170                     x.span
3171                 } else {
3172                     cur_op_span
3173                 });
3174                 let limits = if op == AssocOp::DotDot {
3175                     RangeLimits::HalfOpen
3176                 } else {
3177                     RangeLimits::Closed
3178                 };
3179
3180                 let r = self.mk_range(Some(lhs), rhs, limits)?;
3181                 lhs = self.mk_expr(lhs_span.to(rhs_span), r, ThinVec::new());
3182                 break
3183             }
3184
3185             let rhs = match op.fixity() {
3186                 Fixity::Right => self.with_res(
3187                     restrictions - Restrictions::STMT_EXPR,
3188                     |this| {
3189                         this.parse_assoc_expr_with(op.precedence(),
3190                             LhsExpr::NotYetParsed)
3191                 }),
3192                 Fixity::Left => self.with_res(
3193                     restrictions - Restrictions::STMT_EXPR,
3194                     |this| {
3195                         this.parse_assoc_expr_with(op.precedence() + 1,
3196                             LhsExpr::NotYetParsed)
3197                 }),
3198                 // We currently have no non-associative operators that are not handled above by
3199                 // the special cases. The code is here only for future convenience.
3200                 Fixity::None => self.with_res(
3201                     restrictions - Restrictions::STMT_EXPR,
3202                     |this| {
3203                         this.parse_assoc_expr_with(op.precedence() + 1,
3204                             LhsExpr::NotYetParsed)
3205                 }),
3206             }?;
3207
3208             let span = lhs_span.to(rhs.span);
3209             lhs = match op {
3210                 AssocOp::Add | AssocOp::Subtract | AssocOp::Multiply | AssocOp::Divide |
3211                 AssocOp::Modulus | AssocOp::LAnd | AssocOp::LOr | AssocOp::BitXor |
3212                 AssocOp::BitAnd | AssocOp::BitOr | AssocOp::ShiftLeft | AssocOp::ShiftRight |
3213                 AssocOp::Equal | AssocOp::Less | AssocOp::LessEqual | AssocOp::NotEqual |
3214                 AssocOp::Greater | AssocOp::GreaterEqual => {
3215                     let ast_op = op.to_ast_binop().unwrap();
3216                     let binary = self.mk_binary(source_map::respan(cur_op_span, ast_op), lhs, rhs);
3217                     self.mk_expr(span, binary, ThinVec::new())
3218                 }
3219                 AssocOp::Assign =>
3220                     self.mk_expr(span, ExprKind::Assign(lhs, rhs), ThinVec::new()),
3221                 AssocOp::ObsoleteInPlace =>
3222                     self.mk_expr(span, ExprKind::ObsoleteInPlace(lhs, rhs), ThinVec::new()),
3223                 AssocOp::AssignOp(k) => {
3224                     let aop = match k {
3225                         token::Plus =>    BinOpKind::Add,
3226                         token::Minus =>   BinOpKind::Sub,
3227                         token::Star =>    BinOpKind::Mul,
3228                         token::Slash =>   BinOpKind::Div,
3229                         token::Percent => BinOpKind::Rem,
3230                         token::Caret =>   BinOpKind::BitXor,
3231                         token::And =>     BinOpKind::BitAnd,
3232                         token::Or =>      BinOpKind::BitOr,
3233                         token::Shl =>     BinOpKind::Shl,
3234                         token::Shr =>     BinOpKind::Shr,
3235                     };
3236                     let aopexpr = self.mk_assign_op(source_map::respan(cur_op_span, aop), lhs, rhs);
3237                     self.mk_expr(span, aopexpr, ThinVec::new())
3238                 }
3239                 AssocOp::As | AssocOp::Colon | AssocOp::DotDot | AssocOp::DotDotEq => {
3240                     self.bug("AssocOp should have been handled by special case")
3241                 }
3242             };
3243
3244             if op.fixity() == Fixity::None { break }
3245         }
3246         Ok(lhs)
3247     }
3248
3249     fn parse_assoc_op_cast(&mut self, lhs: P<Expr>, lhs_span: Span,
3250                            expr_kind: fn(P<Expr>, P<Ty>) -> ExprKind)
3251                            -> PResult<'a, P<Expr>> {
3252         let mk_expr = |this: &mut Self, rhs: P<Ty>| {
3253             this.mk_expr(lhs_span.to(rhs.span), expr_kind(lhs, rhs), ThinVec::new())
3254         };
3255
3256         // Save the state of the parser before parsing type normally, in case there is a
3257         // LessThan comparison after this cast.
3258         let parser_snapshot_before_type = self.clone();
3259         match self.parse_ty_no_plus() {
3260             Ok(rhs) => {
3261                 Ok(mk_expr(self, rhs))
3262             }
3263             Err(mut type_err) => {
3264                 // Rewind to before attempting to parse the type with generics, to recover
3265                 // from situations like `x as usize < y` in which we first tried to parse
3266                 // `usize < y` as a type with generic arguments.
3267                 let parser_snapshot_after_type = self.clone();
3268                 mem::replace(self, parser_snapshot_before_type);
3269
3270                 match self.parse_path(PathStyle::Expr) {
3271                     Ok(path) => {
3272                         let (op_noun, op_verb) = match self.token {
3273                             token::Lt => ("comparison", "comparing"),
3274                             token::BinOp(token::Shl) => ("shift", "shifting"),
3275                             _ => {
3276                                 // We can end up here even without `<` being the next token, for
3277                                 // example because `parse_ty_no_plus` returns `Err` on keywords,
3278                                 // but `parse_path` returns `Ok` on them due to error recovery.
3279                                 // Return original error and parser state.
3280                                 mem::replace(self, parser_snapshot_after_type);
3281                                 return Err(type_err);
3282                             }
3283                         };
3284
3285                         // Successfully parsed the type path leaving a `<` yet to parse.
3286                         type_err.cancel();
3287
3288                         // Report non-fatal diagnostics, keep `x as usize` as an expression
3289                         // in AST and continue parsing.
3290                         let msg = format!("`<` is interpreted as a start of generic \
3291                                            arguments for `{}`, not a {}", path, op_noun);
3292                         let mut err = self.sess.span_diagnostic.struct_span_err(self.span, &msg);
3293                         err.span_label(self.look_ahead_span(1).to(parser_snapshot_after_type.span),
3294                                        "interpreted as generic arguments");
3295                         err.span_label(self.span, format!("not interpreted as {}", op_noun));
3296
3297                         let expr = mk_expr(self, P(Ty {
3298                             span: path.span,
3299                             node: TyKind::Path(None, path),
3300                             id: ast::DUMMY_NODE_ID
3301                         }));
3302
3303                         let expr_str = self.sess.source_map().span_to_snippet(expr.span)
3304                                                 .unwrap_or_else(|_| pprust::expr_to_string(&expr));
3305                         err.span_suggestion_with_applicability(
3306                             expr.span,
3307                             &format!("try {} the cast value", op_verb),
3308                             format!("({})", expr_str),
3309                             Applicability::MachineApplicable
3310                         );
3311                         err.emit();
3312
3313                         Ok(expr)
3314                     }
3315                     Err(mut path_err) => {
3316                         // Couldn't parse as a path, return original error and parser state.
3317                         path_err.cancel();
3318                         mem::replace(self, parser_snapshot_after_type);
3319                         Err(type_err)
3320                     }
3321                 }
3322             }
3323         }
3324     }
3325
3326     /// Produce an error if comparison operators are chained (RFC #558).
3327     /// We only need to check lhs, not rhs, because all comparison ops
3328     /// have same precedence and are left-associative
3329     fn check_no_chained_comparison(&mut self, lhs: &Expr, outer_op: &AssocOp) {
3330         debug_assert!(outer_op.is_comparison(),
3331                       "check_no_chained_comparison: {:?} is not comparison",
3332                       outer_op);
3333         match lhs.node {
3334             ExprKind::Binary(op, _, _) if op.node.is_comparison() => {
3335                 // respan to include both operators
3336                 let op_span = op.span.to(self.span);
3337                 let mut err = self.diagnostic().struct_span_err(op_span,
3338                     "chained comparison operators require parentheses");
3339                 if op.node == BinOpKind::Lt &&
3340                     *outer_op == AssocOp::Less ||  // Include `<` to provide this recommendation
3341                     *outer_op == AssocOp::Greater  // even in a case like the following:
3342                 {                                  //     Foo<Bar<Baz<Qux, ()>>>
3343                     err.help(
3344                         "use `::<...>` instead of `<...>` if you meant to specify type arguments");
3345                     err.help("or use `(...)` if you meant to specify fn arguments");
3346                 }
3347                 err.emit();
3348             }
3349             _ => {}
3350         }
3351     }
3352
3353     /// Parse prefix-forms of range notation: `..expr`, `..`, `..=expr`
3354     fn parse_prefix_range_expr(&mut self,
3355                                already_parsed_attrs: Option<ThinVec<Attribute>>)
3356                                -> PResult<'a, P<Expr>> {
3357         // Check for deprecated `...` syntax
3358         if self.token == token::DotDotDot {
3359             self.err_dotdotdot_syntax(self.span);
3360         }
3361
3362         debug_assert!([token::DotDot, token::DotDotDot, token::DotDotEq].contains(&self.token),
3363                       "parse_prefix_range_expr: token {:?} is not DotDot/DotDotEq",
3364                       self.token);
3365         let tok = self.token.clone();
3366         let attrs = self.parse_or_use_outer_attributes(already_parsed_attrs)?;
3367         let lo = self.span;
3368         let mut hi = self.span;
3369         self.bump();
3370         let opt_end = if self.is_at_start_of_range_notation_rhs() {
3371             // RHS must be parsed with more associativity than the dots.
3372             let next_prec = AssocOp::from_token(&tok).unwrap().precedence() + 1;
3373             Some(self.parse_assoc_expr_with(next_prec,
3374                                             LhsExpr::NotYetParsed)
3375                 .map(|x|{
3376                     hi = x.span;
3377                     x
3378                 })?)
3379          } else {
3380             None
3381         };
3382         let limits = if tok == token::DotDot {
3383             RangeLimits::HalfOpen
3384         } else {
3385             RangeLimits::Closed
3386         };
3387
3388         let r = self.mk_range(None, opt_end, limits)?;
3389         Ok(self.mk_expr(lo.to(hi), r, attrs))
3390     }
3391
3392     fn is_at_start_of_range_notation_rhs(&self) -> bool {
3393         if self.token.can_begin_expr() {
3394             // parse `for i in 1.. { }` as infinite loop, not as `for i in (1..{})`.
3395             if self.token == token::OpenDelim(token::Brace) {
3396                 return !self.restrictions.contains(Restrictions::NO_STRUCT_LITERAL);
3397             }
3398             true
3399         } else {
3400             false
3401         }
3402     }
3403
3404     /// Parse an 'if' or 'if let' expression ('if' token already eaten)
3405     fn parse_if_expr(&mut self, attrs: ThinVec<Attribute>) -> PResult<'a, P<Expr>> {
3406         if self.check_keyword(keywords::Let) {
3407             return self.parse_if_let_expr(attrs);
3408         }
3409         let lo = self.prev_span;
3410         let cond = self.parse_expr_res(Restrictions::NO_STRUCT_LITERAL, None)?;
3411
3412         // Verify that the parsed `if` condition makes sense as a condition. If it is a block, then
3413         // verify that the last statement is either an implicit return (no `;`) or an explicit
3414         // return. This won't catch blocks with an explicit `return`, but that would be caught by
3415         // the dead code lint.
3416         if self.eat_keyword(keywords::Else) || !cond.returns() {
3417             let sp = self.sess.source_map().next_point(lo);
3418             let mut err = self.diagnostic()
3419                 .struct_span_err(sp, "missing condition for `if` statemement");
3420             err.span_label(sp, "expected if condition here");
3421             return Err(err)
3422         }
3423         let not_block = self.token != token::OpenDelim(token::Brace);
3424         let thn = self.parse_block().map_err(|mut err| {
3425             if not_block {
3426                 err.span_label(lo, "this `if` statement has a condition, but no block");
3427             }
3428             err
3429         })?;
3430         let mut els: Option<P<Expr>> = None;
3431         let mut hi = thn.span;
3432         if self.eat_keyword(keywords::Else) {
3433             let elexpr = self.parse_else_expr()?;
3434             hi = elexpr.span;
3435             els = Some(elexpr);
3436         }
3437         Ok(self.mk_expr(lo.to(hi), ExprKind::If(cond, thn, els), attrs))
3438     }
3439
3440     /// Parse an 'if let' expression ('if' token already eaten)
3441     fn parse_if_let_expr(&mut self, attrs: ThinVec<Attribute>)
3442                              -> PResult<'a, P<Expr>> {
3443         let lo = self.prev_span;
3444         self.expect_keyword(keywords::Let)?;
3445         let pats = self.parse_pats()?;
3446         self.expect(&token::Eq)?;
3447         let expr = self.parse_expr_res(Restrictions::NO_STRUCT_LITERAL, None)?;
3448         let thn = self.parse_block()?;
3449         let (hi, els) = if self.eat_keyword(keywords::Else) {
3450             let expr = self.parse_else_expr()?;
3451             (expr.span, Some(expr))
3452         } else {
3453             (thn.span, None)
3454         };
3455         Ok(self.mk_expr(lo.to(hi), ExprKind::IfLet(pats, expr, thn, els), attrs))
3456     }
3457
3458     // `move |args| expr`
3459     fn parse_lambda_expr(&mut self,
3460                              attrs: ThinVec<Attribute>)
3461                              -> PResult<'a, P<Expr>>
3462     {
3463         let lo = self.span;
3464         let movability = if self.eat_keyword(keywords::Static) {
3465             Movability::Static
3466         } else {
3467             Movability::Movable
3468         };
3469         let asyncness = if self.span.rust_2018() {
3470             self.parse_asyncness()
3471         } else {
3472             IsAsync::NotAsync
3473         };
3474         let capture_clause = if self.eat_keyword(keywords::Move) {
3475             CaptureBy::Value
3476         } else {
3477             CaptureBy::Ref
3478         };
3479         let decl = self.parse_fn_block_decl()?;
3480         let decl_hi = self.prev_span;
3481         let body = match decl.output {
3482             FunctionRetTy::Default(_) => {
3483                 let restrictions = self.restrictions - Restrictions::STMT_EXPR;
3484                 self.parse_expr_res(restrictions, None)?
3485             },
3486             _ => {
3487                 // If an explicit return type is given, require a
3488                 // block to appear (RFC 968).
3489                 let body_lo = self.span;
3490                 self.parse_block_expr(None, body_lo, BlockCheckMode::Default, ThinVec::new())?
3491             }
3492         };
3493
3494         Ok(self.mk_expr(
3495             lo.to(body.span),
3496             ExprKind::Closure(capture_clause, asyncness, movability, decl, body, lo.to(decl_hi)),
3497             attrs))
3498     }
3499
3500     // `else` token already eaten
3501     fn parse_else_expr(&mut self) -> PResult<'a, P<Expr>> {
3502         if self.eat_keyword(keywords::If) {
3503             return self.parse_if_expr(ThinVec::new());
3504         } else {
3505             let blk = self.parse_block()?;
3506             return Ok(self.mk_expr(blk.span, ExprKind::Block(blk, None), ThinVec::new()));
3507         }
3508     }
3509
3510     /// Parse a 'for' .. 'in' expression ('for' token already eaten)
3511     fn parse_for_expr(&mut self, opt_label: Option<Label>,
3512                           span_lo: Span,
3513                           mut attrs: ThinVec<Attribute>) -> PResult<'a, P<Expr>> {
3514         // Parse: `for <src_pat> in <src_expr> <src_loop_block>`
3515
3516         let pat = self.parse_top_level_pat()?;
3517         if !self.eat_keyword(keywords::In) {
3518             let in_span = self.prev_span.between(self.span);
3519             let mut err = self.sess.span_diagnostic
3520                 .struct_span_err(in_span, "missing `in` in `for` loop");
3521             err.span_suggestion_short_with_applicability(
3522                 in_span, "try adding `in` here", " in ".into(),
3523                 // has been misleading, at least in the past (closed Issue #48492)
3524                 Applicability::MaybeIncorrect
3525             );
3526             err.emit();
3527         }
3528         let in_span = self.prev_span;
3529         if self.eat_keyword(keywords::In) {
3530             // a common typo: `for _ in in bar {}`
3531             let mut err = self.sess.span_diagnostic.struct_span_err(
3532                 self.prev_span,
3533                 "expected iterable, found keyword `in`",
3534             );
3535             err.span_suggestion_short_with_applicability(
3536                 in_span.until(self.prev_span),
3537                 "remove the duplicated `in`",
3538                 String::new(),
3539                 Applicability::MachineApplicable,
3540             );
3541             err.note("if you meant to use emplacement syntax, it is obsolete (for now, anyway)");
3542             err.note("for more information on the status of emplacement syntax, see <\
3543                       https://github.com/rust-lang/rust/issues/27779#issuecomment-378416911>");
3544             err.emit();
3545         }
3546         let expr = self.parse_expr_res(Restrictions::NO_STRUCT_LITERAL, None)?;
3547         let (iattrs, loop_block) = self.parse_inner_attrs_and_block()?;
3548         attrs.extend(iattrs);
3549
3550         let hi = self.prev_span;
3551         Ok(self.mk_expr(span_lo.to(hi), ExprKind::ForLoop(pat, expr, loop_block, opt_label), attrs))
3552     }
3553
3554     /// Parse a 'while' or 'while let' expression ('while' token already eaten)
3555     fn parse_while_expr(&mut self, opt_label: Option<Label>,
3556                             span_lo: Span,
3557                             mut attrs: ThinVec<Attribute>) -> PResult<'a, P<Expr>> {
3558         if self.token.is_keyword(keywords::Let) {
3559             return self.parse_while_let_expr(opt_label, span_lo, attrs);
3560         }
3561         let cond = self.parse_expr_res(Restrictions::NO_STRUCT_LITERAL, None)?;
3562         let (iattrs, body) = self.parse_inner_attrs_and_block()?;
3563         attrs.extend(iattrs);
3564         let span = span_lo.to(body.span);
3565         return Ok(self.mk_expr(span, ExprKind::While(cond, body, opt_label), attrs));
3566     }
3567
3568     /// Parse a 'while let' expression ('while' token already eaten)
3569     fn parse_while_let_expr(&mut self, opt_label: Option<Label>,
3570                                 span_lo: Span,
3571                                 mut attrs: ThinVec<Attribute>) -> PResult<'a, P<Expr>> {
3572         self.expect_keyword(keywords::Let)?;
3573         let pats = self.parse_pats()?;
3574         self.expect(&token::Eq)?;
3575         let expr = self.parse_expr_res(Restrictions::NO_STRUCT_LITERAL, None)?;
3576         let (iattrs, body) = self.parse_inner_attrs_and_block()?;
3577         attrs.extend(iattrs);
3578         let span = span_lo.to(body.span);
3579         return Ok(self.mk_expr(span, ExprKind::WhileLet(pats, expr, body, opt_label), attrs));
3580     }
3581
3582     // parse `loop {...}`, `loop` token already eaten
3583     fn parse_loop_expr(&mut self, opt_label: Option<Label>,
3584                            span_lo: Span,
3585                            mut attrs: ThinVec<Attribute>) -> PResult<'a, P<Expr>> {
3586         let (iattrs, body) = self.parse_inner_attrs_and_block()?;
3587         attrs.extend(iattrs);
3588         let span = span_lo.to(body.span);
3589         Ok(self.mk_expr(span, ExprKind::Loop(body, opt_label), attrs))
3590     }
3591
3592     /// Parse an `async move {...}` expression
3593     pub fn parse_async_block(&mut self, mut attrs: ThinVec<Attribute>)
3594         -> PResult<'a, P<Expr>>
3595     {
3596         let span_lo = self.span;
3597         self.expect_keyword(keywords::Async)?;
3598         let capture_clause = if self.eat_keyword(keywords::Move) {
3599             CaptureBy::Value
3600         } else {
3601             CaptureBy::Ref
3602         };
3603         let (iattrs, body) = self.parse_inner_attrs_and_block()?;
3604         attrs.extend(iattrs);
3605         Ok(self.mk_expr(
3606             span_lo.to(body.span),
3607             ExprKind::Async(capture_clause, ast::DUMMY_NODE_ID, body), attrs))
3608     }
3609
3610     /// Parse a `try {...}` expression (`try` token already eaten)
3611     fn parse_try_block(&mut self, span_lo: Span, mut attrs: ThinVec<Attribute>)
3612         -> PResult<'a, P<Expr>>
3613     {
3614         let (iattrs, body) = self.parse_inner_attrs_and_block()?;
3615         attrs.extend(iattrs);
3616         Ok(self.mk_expr(span_lo.to(body.span), ExprKind::TryBlock(body), attrs))
3617     }
3618
3619     // `match` token already eaten
3620     fn parse_match_expr(&mut self, mut attrs: ThinVec<Attribute>) -> PResult<'a, P<Expr>> {
3621         let match_span = self.prev_span;
3622         let lo = self.prev_span;
3623         let discriminant = self.parse_expr_res(Restrictions::NO_STRUCT_LITERAL,
3624                                                None)?;
3625         if let Err(mut e) = self.expect(&token::OpenDelim(token::Brace)) {
3626             if self.token == token::Token::Semi {
3627                 e.span_suggestion_short_with_applicability(
3628                     match_span,
3629                     "try removing this `match`",
3630                     String::new(),
3631                     Applicability::MaybeIncorrect // speculative
3632                 );
3633             }
3634             return Err(e)
3635         }
3636         attrs.extend(self.parse_inner_attributes()?);
3637
3638         let mut arms: Vec<Arm> = Vec::new();
3639         while self.token != token::CloseDelim(token::Brace) {
3640             match self.parse_arm() {
3641                 Ok(arm) => arms.push(arm),
3642                 Err(mut e) => {
3643                     // Recover by skipping to the end of the block.
3644                     e.emit();
3645                     self.recover_stmt();
3646                     let span = lo.to(self.span);
3647                     if self.token == token::CloseDelim(token::Brace) {
3648                         self.bump();
3649                     }
3650                     return Ok(self.mk_expr(span, ExprKind::Match(discriminant, arms), attrs));
3651                 }
3652             }
3653         }
3654         let hi = self.span;
3655         self.bump();
3656         return Ok(self.mk_expr(lo.to(hi), ExprKind::Match(discriminant, arms), attrs));
3657     }
3658
3659     crate fn parse_arm(&mut self) -> PResult<'a, Arm> {
3660         maybe_whole!(self, NtArm, |x| x);
3661
3662         let attrs = self.parse_outer_attributes()?;
3663         // Allow a '|' before the pats (RFC 1925)
3664         self.eat(&token::BinOp(token::Or));
3665         let pats = self.parse_pats()?;
3666         let guard = if self.eat_keyword(keywords::If) {
3667             Some(Guard::If(self.parse_expr()?))
3668         } else {
3669             None
3670         };
3671         let arrow_span = self.span;
3672         self.expect(&token::FatArrow)?;
3673         let arm_start_span = self.span;
3674
3675         let expr = self.parse_expr_res(Restrictions::STMT_EXPR, None)
3676             .map_err(|mut err| {
3677                 err.span_label(arrow_span, "while parsing the `match` arm starting here");
3678                 err
3679             })?;
3680
3681         let require_comma = classify::expr_requires_semi_to_be_stmt(&expr)
3682             && self.token != token::CloseDelim(token::Brace);
3683
3684         if require_comma {
3685             let cm = self.sess.source_map();
3686             self.expect_one_of(&[token::Comma], &[token::CloseDelim(token::Brace)])
3687                 .map_err(|mut err| {
3688                     match (cm.span_to_lines(expr.span), cm.span_to_lines(arm_start_span)) {
3689                         (Ok(ref expr_lines), Ok(ref arm_start_lines))
3690                         if arm_start_lines.lines[0].end_col == expr_lines.lines[0].end_col
3691                             && expr_lines.lines.len() == 2
3692                             && self.token == token::FatArrow => {
3693                             // We check whether there's any trailing code in the parse span,
3694                             // if there isn't, we very likely have the following:
3695                             //
3696                             // X |     &Y => "y"
3697                             //   |        --    - missing comma
3698                             //   |        |
3699                             //   |        arrow_span
3700                             // X |     &X => "x"
3701                             //   |      - ^^ self.span
3702                             //   |      |
3703                             //   |      parsed until here as `"y" & X`
3704                             err.span_suggestion_short_with_applicability(
3705                                 cm.next_point(arm_start_span),
3706                                 "missing a comma here to end this `match` arm",
3707                                 ",".to_owned(),
3708                                 Applicability::MachineApplicable
3709                             );
3710                         }
3711                         _ => {
3712                             err.span_label(arrow_span,
3713                                            "while parsing the `match` arm starting here");
3714                         }
3715                     }
3716                     err
3717                 })?;
3718         } else {
3719             self.eat(&token::Comma);
3720         }
3721
3722         Ok(ast::Arm {
3723             attrs,
3724             pats,
3725             guard,
3726             body: expr,
3727         })
3728     }
3729
3730     /// Parse an expression
3731     #[inline]
3732     pub fn parse_expr(&mut self) -> PResult<'a, P<Expr>> {
3733         self.parse_expr_res(Restrictions::empty(), None)
3734     }
3735
3736     /// Evaluate the closure with restrictions in place.
3737     ///
3738     /// After the closure is evaluated, restrictions are reset.
3739     fn with_res<F, T>(&mut self, r: Restrictions, f: F) -> T
3740         where F: FnOnce(&mut Self) -> T
3741     {
3742         let old = self.restrictions;
3743         self.restrictions = r;
3744         let r = f(self);
3745         self.restrictions = old;
3746         return r;
3747
3748     }
3749
3750     /// Parse an expression, subject to the given restrictions
3751     #[inline]
3752     fn parse_expr_res(&mut self, r: Restrictions,
3753                           already_parsed_attrs: Option<ThinVec<Attribute>>)
3754                           -> PResult<'a, P<Expr>> {
3755         self.with_res(r, |this| this.parse_assoc_expr(already_parsed_attrs))
3756     }
3757
3758     /// Parse the RHS of a local variable declaration (e.g., '= 14;')
3759     fn parse_initializer(&mut self, skip_eq: bool) -> PResult<'a, Option<P<Expr>>> {
3760         if self.eat(&token::Eq) {
3761             Ok(Some(self.parse_expr()?))
3762         } else if skip_eq {
3763             Ok(Some(self.parse_expr()?))
3764         } else {
3765             Ok(None)
3766         }
3767     }
3768
3769     /// Parse patterns, separated by '|' s
3770     fn parse_pats(&mut self) -> PResult<'a, Vec<P<Pat>>> {
3771         let mut pats = Vec::new();
3772         loop {
3773             pats.push(self.parse_top_level_pat()?);
3774
3775             if self.token == token::OrOr {
3776                 let mut err = self.struct_span_err(self.span,
3777                                                    "unexpected token `||` after pattern");
3778                 err.span_suggestion_with_applicability(
3779                     self.span,
3780                     "use a single `|` to specify multiple patterns",
3781                     "|".to_owned(),
3782                     Applicability::MachineApplicable
3783                 );
3784                 err.emit();
3785                 self.bump();
3786             } else if self.eat(&token::BinOp(token::Or)) {
3787                 // No op.
3788             } else {
3789                 return Ok(pats);
3790             }
3791         };
3792     }
3793
3794     // Parses a parenthesized list of patterns like
3795     // `()`, `(p)`, `(p,)`, `(p, q)`, or `(p, .., q)`. Returns:
3796     // - a vector of the patterns that were parsed
3797     // - an option indicating the index of the `..` element
3798     // - a boolean indicating whether a trailing comma was present.
3799     // Trailing commas are significant because (p) and (p,) are different patterns.
3800     fn parse_parenthesized_pat_list(&mut self) -> PResult<'a, (Vec<P<Pat>>, Option<usize>, bool)> {
3801         self.expect(&token::OpenDelim(token::Paren))?;
3802         let result = self.parse_pat_list()?;
3803         self.expect(&token::CloseDelim(token::Paren))?;
3804         Ok(result)
3805     }
3806
3807     fn parse_pat_list(&mut self) -> PResult<'a, (Vec<P<Pat>>, Option<usize>, bool)> {
3808         let mut fields = Vec::new();
3809         let mut ddpos = None;
3810         let mut trailing_comma = false;
3811         loop {
3812             if self.eat(&token::DotDot) {
3813                 if ddpos.is_none() {
3814                     ddpos = Some(fields.len());
3815                 } else {
3816                     // Emit a friendly error, ignore `..` and continue parsing
3817                     self.span_err(self.prev_span,
3818                                   "`..` can only be used once per tuple or tuple struct pattern");
3819                 }
3820             } else if !self.check(&token::CloseDelim(token::Paren)) {
3821                 fields.push(self.parse_pat(None)?);
3822             } else {
3823                 break
3824             }
3825
3826             trailing_comma = self.eat(&token::Comma);
3827             if !trailing_comma {
3828                 break
3829             }
3830         }
3831
3832         if ddpos == Some(fields.len()) && trailing_comma {
3833             // `..` needs to be followed by `)` or `, pat`, `..,)` is disallowed.
3834             self.span_err(self.prev_span, "trailing comma is not permitted after `..`");
3835         }
3836
3837         Ok((fields, ddpos, trailing_comma))
3838     }
3839
3840     fn parse_pat_vec_elements(
3841         &mut self,
3842     ) -> PResult<'a, (Vec<P<Pat>>, Option<P<Pat>>, Vec<P<Pat>>)> {
3843         let mut before = Vec::new();
3844         let mut slice = None;
3845         let mut after = Vec::new();
3846         let mut first = true;
3847         let mut before_slice = true;
3848
3849         while self.token != token::CloseDelim(token::Bracket) {
3850             if first {
3851                 first = false;
3852             } else {
3853                 self.expect(&token::Comma)?;
3854
3855                 if self.token == token::CloseDelim(token::Bracket)
3856                         && (before_slice || !after.is_empty()) {
3857                     break
3858                 }
3859             }
3860
3861             if before_slice {
3862                 if self.eat(&token::DotDot) {
3863
3864                     if self.check(&token::Comma) ||
3865                             self.check(&token::CloseDelim(token::Bracket)) {
3866                         slice = Some(P(Pat {
3867                             id: ast::DUMMY_NODE_ID,
3868                             node: PatKind::Wild,
3869                             span: self.prev_span,
3870                         }));
3871                         before_slice = false;
3872                     }
3873                     continue
3874                 }
3875             }
3876
3877             let subpat = self.parse_pat(None)?;
3878             if before_slice && self.eat(&token::DotDot) {
3879                 slice = Some(subpat);
3880                 before_slice = false;
3881             } else if before_slice {
3882                 before.push(subpat);
3883             } else {
3884                 after.push(subpat);
3885             }
3886         }
3887
3888         Ok((before, slice, after))
3889     }
3890
3891     fn parse_pat_field(
3892         &mut self,
3893         lo: Span,
3894         attrs: Vec<Attribute>
3895     ) -> PResult<'a, source_map::Spanned<ast::FieldPat>> {
3896         // Check if a colon exists one ahead. This means we're parsing a fieldname.
3897         let hi;
3898         let (subpat, fieldname, is_shorthand) = if self.look_ahead(1, |t| t == &token::Colon) {
3899             // Parsing a pattern of the form "fieldname: pat"
3900             let fieldname = self.parse_field_name()?;
3901             self.bump();
3902             let pat = self.parse_pat(None)?;
3903             hi = pat.span;
3904             (pat, fieldname, false)
3905         } else {
3906             // Parsing a pattern of the form "(box) (ref) (mut) fieldname"
3907             let is_box = self.eat_keyword(keywords::Box);
3908             let boxed_span = self.span;
3909             let is_ref = self.eat_keyword(keywords::Ref);
3910             let is_mut = self.eat_keyword(keywords::Mut);
3911             let fieldname = self.parse_ident()?;
3912             hi = self.prev_span;
3913
3914             let bind_type = match (is_ref, is_mut) {
3915                 (true, true) => BindingMode::ByRef(Mutability::Mutable),
3916                 (true, false) => BindingMode::ByRef(Mutability::Immutable),
3917                 (false, true) => BindingMode::ByValue(Mutability::Mutable),
3918                 (false, false) => BindingMode::ByValue(Mutability::Immutable),
3919             };
3920             let fieldpat = P(Pat {
3921                 id: ast::DUMMY_NODE_ID,
3922                 node: PatKind::Ident(bind_type, fieldname, None),
3923                 span: boxed_span.to(hi),
3924             });
3925
3926             let subpat = if is_box {
3927                 P(Pat {
3928                     id: ast::DUMMY_NODE_ID,
3929                     node: PatKind::Box(fieldpat),
3930                     span: lo.to(hi),
3931                 })
3932             } else {
3933                 fieldpat
3934             };
3935             (subpat, fieldname, true)
3936         };
3937
3938         Ok(source_map::Spanned {
3939             span: lo.to(hi),
3940             node: ast::FieldPat {
3941                 ident: fieldname,
3942                 pat: subpat,
3943                 is_shorthand,
3944                 attrs: attrs.into(),
3945            }
3946         })
3947     }
3948
3949     /// Parse the fields of a struct-like pattern
3950     fn parse_pat_fields(&mut self) -> PResult<'a, (Vec<source_map::Spanned<ast::FieldPat>>, bool)> {
3951         let mut fields = Vec::new();
3952         let mut etc = false;
3953         let mut ate_comma = true;
3954         let mut delayed_err: Option<DiagnosticBuilder<'a>> = None;
3955         let mut etc_span = None;
3956
3957         while self.token != token::CloseDelim(token::Brace) {
3958             let attrs = self.parse_outer_attributes()?;
3959             let lo = self.span;
3960
3961             // check that a comma comes after every field
3962             if !ate_comma {
3963                 let err = self.struct_span_err(self.prev_span, "expected `,`");
3964                 if let Some(mut delayed) = delayed_err {
3965                     delayed.emit();
3966                 }
3967                 return Err(err);
3968             }
3969             ate_comma = false;
3970
3971             if self.check(&token::DotDot) || self.token == token::DotDotDot {
3972                 etc = true;
3973                 let mut etc_sp = self.span;
3974
3975                 if self.token == token::DotDotDot { // Issue #46718
3976                     // Accept `...` as if it were `..` to avoid further errors
3977                     let mut err = self.struct_span_err(self.span,
3978                                                        "expected field pattern, found `...`");
3979                     err.span_suggestion_with_applicability(
3980                         self.span,
3981                         "to omit remaining fields, use one fewer `.`",
3982                         "..".to_owned(),
3983                         Applicability::MachineApplicable
3984                     );
3985                     err.emit();
3986                 }
3987                 self.bump();  // `..` || `...`
3988
3989                 if self.token == token::CloseDelim(token::Brace) {
3990                     etc_span = Some(etc_sp);
3991                     break;
3992                 }
3993                 let token_str = self.this_token_descr();
3994                 let mut err = self.fatal(&format!("expected `}}`, found {}", token_str));
3995
3996                 err.span_label(self.span, "expected `}`");
3997                 let mut comma_sp = None;
3998                 if self.token == token::Comma { // Issue #49257
3999                     etc_sp = etc_sp.to(self.sess.source_map().span_until_non_whitespace(self.span));
4000                     err.span_label(etc_sp,
4001                                    "`..` must be at the end and cannot have a trailing comma");
4002                     comma_sp = Some(self.span);
4003                     self.bump();
4004                     ate_comma = true;
4005                 }
4006
4007                 etc_span = Some(etc_sp.until(self.span));
4008                 if self.token == token::CloseDelim(token::Brace) {
4009                     // If the struct looks otherwise well formed, recover and continue.
4010                     if let Some(sp) = comma_sp {
4011                         err.span_suggestion_short_with_applicability(
4012                             sp,
4013                             "remove this comma",
4014                             String::new(),
4015                             Applicability::MachineApplicable,
4016                         );
4017                     }
4018                     err.emit();
4019                     break;
4020                 } else if self.token.is_ident() && ate_comma {
4021                     // Accept fields coming after `..,`.
4022                     // This way we avoid "pattern missing fields" errors afterwards.
4023                     // We delay this error until the end in order to have a span for a
4024                     // suggested fix.
4025                     if let Some(mut delayed_err) = delayed_err {
4026                         delayed_err.emit();
4027                         return Err(err);
4028                     } else {
4029                         delayed_err = Some(err);
4030                     }
4031                 } else {
4032                     if let Some(mut err) = delayed_err {
4033                         err.emit();
4034                     }
4035                     return Err(err);
4036                 }
4037             }
4038
4039             fields.push(match self.parse_pat_field(lo, attrs) {
4040                 Ok(field) => field,
4041                 Err(err) => {
4042                     if let Some(mut delayed_err) = delayed_err {
4043                         delayed_err.emit();
4044                     }
4045                     return Err(err);
4046                 }
4047             });
4048             ate_comma = self.eat(&token::Comma);
4049         }
4050
4051         if let Some(mut err) = delayed_err {
4052             if let Some(etc_span) = etc_span {
4053                 err.multipart_suggestion(
4054                     "move the `..` to the end of the field list",
4055                     vec![
4056                         (etc_span, String::new()),
4057                         (self.span, format!("{}.. }}", if ate_comma { "" } else { ", " })),
4058                     ],
4059                 );
4060             }
4061             err.emit();
4062         }
4063         return Ok((fields, etc));
4064     }
4065
4066     fn parse_pat_range_end(&mut self) -> PResult<'a, P<Expr>> {
4067         if self.token.is_path_start() {
4068             let lo = self.span;
4069             let (qself, path) = if self.eat_lt() {
4070                 // Parse a qualified path
4071                 let (qself, path) = self.parse_qpath(PathStyle::Expr)?;
4072                 (Some(qself), path)
4073             } else {
4074                 // Parse an unqualified path
4075                 (None, self.parse_path(PathStyle::Expr)?)
4076             };
4077             let hi = self.prev_span;
4078             Ok(self.mk_expr(lo.to(hi), ExprKind::Path(qself, path), ThinVec::new()))
4079         } else {
4080             self.parse_literal_maybe_minus()
4081         }
4082     }
4083
4084     // helper function to decide whether to parse as ident binding or to try to do
4085     // something more complex like range patterns
4086     fn parse_as_ident(&mut self) -> bool {
4087         self.look_ahead(1, |t| match *t {
4088             token::OpenDelim(token::Paren) | token::OpenDelim(token::Brace) |
4089             token::DotDotDot | token::DotDotEq | token::ModSep | token::Not => Some(false),
4090             // ensure slice patterns [a, b.., c] and [a, b, c..] don't go into the
4091             // range pattern branch
4092             token::DotDot => None,
4093             _ => Some(true),
4094         }).unwrap_or_else(|| self.look_ahead(2, |t| match *t {
4095             token::Comma | token::CloseDelim(token::Bracket) => true,
4096             _ => false,
4097         }))
4098     }
4099
4100     /// A wrapper around `parse_pat` with some special error handling for the
4101     /// "top-level" patterns in a match arm, `for` loop, `let`, &c. (in contrast
4102     /// to subpatterns within such).
4103     fn parse_top_level_pat(&mut self) -> PResult<'a, P<Pat>> {
4104         let pat = self.parse_pat(None)?;
4105         if self.token == token::Comma {
4106             // An unexpected comma after a top-level pattern is a clue that the
4107             // user (perhaps more accustomed to some other language) forgot the
4108             // parentheses in what should have been a tuple pattern; return a
4109             // suggestion-enhanced error here rather than choking on the comma
4110             // later.
4111             let comma_span = self.span;
4112             self.bump();
4113             if let Err(mut err) = self.parse_pat_list() {
4114                 // We didn't expect this to work anyway; we just wanted
4115                 // to advance to the end of the comma-sequence so we know
4116                 // the span to suggest parenthesizing
4117                 err.cancel();
4118             }
4119             let seq_span = pat.span.to(self.prev_span);
4120             let mut err = self.struct_span_err(comma_span,
4121                                                "unexpected `,` in pattern");
4122             if let Ok(seq_snippet) = self.sess.source_map().span_to_snippet(seq_span) {
4123                 err.span_suggestion_with_applicability(
4124                     seq_span,
4125                     "try adding parentheses",
4126                     format!("({})", seq_snippet),
4127                     Applicability::MachineApplicable
4128                 );
4129             }
4130             return Err(err);
4131         }
4132         Ok(pat)
4133     }
4134
4135     /// Parse a pattern.
4136     pub fn parse_pat(&mut self, expected: Option<&'static str>) -> PResult<'a, P<Pat>> {
4137         self.parse_pat_with_range_pat(true, expected)
4138     }
4139
4140     /// Parse a pattern, with a setting whether modern range patterns e.g., `a..=b`, `a..b` are
4141     /// allowed.
4142     fn parse_pat_with_range_pat(
4143         &mut self,
4144         allow_range_pat: bool,
4145         expected: Option<&'static str>,
4146     ) -> PResult<'a, P<Pat>> {
4147         maybe_whole!(self, NtPat, |x| x);
4148
4149         let lo = self.span;
4150         let pat;
4151         match self.token {
4152             token::BinOp(token::And) | token::AndAnd => {
4153                 // Parse &pat / &mut pat
4154                 self.expect_and()?;
4155                 let mutbl = self.parse_mutability();
4156                 if let token::Lifetime(ident) = self.token {
4157                     let mut err = self.fatal(&format!("unexpected lifetime `{}` in pattern",
4158                                                       ident));
4159                     err.span_label(self.span, "unexpected lifetime");
4160                     return Err(err);
4161                 }
4162                 let subpat = self.parse_pat_with_range_pat(false, expected)?;
4163                 pat = PatKind::Ref(subpat, mutbl);
4164             }
4165             token::OpenDelim(token::Paren) => {
4166                 // Parse (pat,pat,pat,...) as tuple pattern
4167                 let (fields, ddpos, trailing_comma) = self.parse_parenthesized_pat_list()?;
4168                 pat = if fields.len() == 1 && ddpos.is_none() && !trailing_comma {
4169                     PatKind::Paren(fields.into_iter().nth(0).unwrap())
4170                 } else {
4171                     PatKind::Tuple(fields, ddpos)
4172                 };
4173             }
4174             token::OpenDelim(token::Bracket) => {
4175                 // Parse [pat,pat,...] as slice pattern
4176                 self.bump();
4177                 let (before, slice, after) = self.parse_pat_vec_elements()?;
4178                 self.expect(&token::CloseDelim(token::Bracket))?;
4179                 pat = PatKind::Slice(before, slice, after);
4180             }
4181             // At this point, token != &, &&, (, [
4182             _ => if self.eat_keyword(keywords::Underscore) {
4183                 // Parse _
4184                 pat = PatKind::Wild;
4185             } else if self.eat_keyword(keywords::Mut) {
4186                 // Parse mut ident @ pat / mut ref ident @ pat
4187                 let mutref_span = self.prev_span.to(self.span);
4188                 let binding_mode = if self.eat_keyword(keywords::Ref) {
4189                     self.diagnostic()
4190                         .struct_span_err(mutref_span, "the order of `mut` and `ref` is incorrect")
4191                         .span_suggestion_with_applicability(
4192                             mutref_span,
4193                             "try switching the order",
4194                             "ref mut".into(),
4195                             Applicability::MachineApplicable
4196                         ).emit();
4197                     BindingMode::ByRef(Mutability::Mutable)
4198                 } else {
4199                     BindingMode::ByValue(Mutability::Mutable)
4200                 };
4201                 pat = self.parse_pat_ident(binding_mode)?;
4202             } else if self.eat_keyword(keywords::Ref) {
4203                 // Parse ref ident @ pat / ref mut ident @ pat
4204                 let mutbl = self.parse_mutability();
4205                 pat = self.parse_pat_ident(BindingMode::ByRef(mutbl))?;
4206             } else if self.eat_keyword(keywords::Box) {
4207                 // Parse box pat
4208                 let subpat = self.parse_pat_with_range_pat(false, None)?;
4209                 pat = PatKind::Box(subpat);
4210             } else if self.token.is_ident() && !self.token.is_reserved_ident() &&
4211                       self.parse_as_ident() {
4212                 // Parse ident @ pat
4213                 // This can give false positives and parse nullary enums,
4214                 // they are dealt with later in resolve
4215                 let binding_mode = BindingMode::ByValue(Mutability::Immutable);
4216                 pat = self.parse_pat_ident(binding_mode)?;
4217             } else if self.token.is_path_start() {
4218                 // Parse pattern starting with a path
4219                 let (qself, path) = if self.eat_lt() {
4220                     // Parse a qualified path
4221                     let (qself, path) = self.parse_qpath(PathStyle::Expr)?;
4222                     (Some(qself), path)
4223                 } else {
4224                     // Parse an unqualified path
4225                     (None, self.parse_path(PathStyle::Expr)?)
4226                 };
4227                 match self.token {
4228                     token::Not if qself.is_none() => {
4229                         // Parse macro invocation
4230                         self.bump();
4231                         let (delim, tts) = self.expect_delimited_token_tree()?;
4232                         let mac = respan(lo.to(self.prev_span), Mac_ { path, tts, delim });
4233                         pat = PatKind::Mac(mac);
4234                     }
4235                     token::DotDotDot | token::DotDotEq | token::DotDot => {
4236                         let end_kind = match self.token {
4237                             token::DotDot => RangeEnd::Excluded,
4238                             token::DotDotDot => RangeEnd::Included(RangeSyntax::DotDotDot),
4239                             token::DotDotEq => RangeEnd::Included(RangeSyntax::DotDotEq),
4240                             _ => panic!("can only parse `..`/`...`/`..=` for ranges \
4241                                          (checked above)"),
4242                         };
4243                         let op_span = self.span;
4244                         // Parse range
4245                         let span = lo.to(self.prev_span);
4246                         let begin = self.mk_expr(span, ExprKind::Path(qself, path), ThinVec::new());
4247                         self.bump();
4248                         let end = self.parse_pat_range_end()?;
4249                         let op = Spanned { span: op_span, node: end_kind };
4250                         pat = PatKind::Range(begin, end, op);
4251                     }
4252                     token::OpenDelim(token::Brace) => {
4253                         if qself.is_some() {
4254                             let msg = "unexpected `{` after qualified path";
4255                             let mut err = self.fatal(msg);
4256                             err.span_label(self.span, msg);
4257                             return Err(err);
4258                         }
4259                         // Parse struct pattern
4260                         self.bump();
4261                         let (fields, etc) = self.parse_pat_fields().unwrap_or_else(|mut e| {
4262                             e.emit();
4263                             self.recover_stmt();
4264                             (vec![], false)
4265                         });
4266                         self.bump();
4267                         pat = PatKind::Struct(path, fields, etc);
4268                     }
4269                     token::OpenDelim(token::Paren) => {
4270                         if qself.is_some() {
4271                             let msg = "unexpected `(` after qualified path";
4272                             let mut err = self.fatal(msg);
4273                             err.span_label(self.span, msg);
4274                             return Err(err);
4275                         }
4276                         // Parse tuple struct or enum pattern
4277                         let (fields, ddpos, _) = self.parse_parenthesized_pat_list()?;
4278                         pat = PatKind::TupleStruct(path, fields, ddpos)
4279                     }
4280                     _ => pat = PatKind::Path(qself, path),
4281                 }
4282             } else {
4283                 // Try to parse everything else as literal with optional minus
4284                 match self.parse_literal_maybe_minus() {
4285                     Ok(begin) => {
4286                         let op_span = self.span;
4287                         if self.check(&token::DotDot) || self.check(&token::DotDotEq) ||
4288                                 self.check(&token::DotDotDot) {
4289                             let end_kind = if self.eat(&token::DotDotDot) {
4290                                 RangeEnd::Included(RangeSyntax::DotDotDot)
4291                             } else if self.eat(&token::DotDotEq) {
4292                                 RangeEnd::Included(RangeSyntax::DotDotEq)
4293                             } else if self.eat(&token::DotDot) {
4294                                 RangeEnd::Excluded
4295                             } else {
4296                                 panic!("impossible case: we already matched \
4297                                         on a range-operator token")
4298                             };
4299                             let end = self.parse_pat_range_end()?;
4300                             let op = Spanned { span: op_span, node: end_kind };
4301                             pat = PatKind::Range(begin, end, op);
4302                         } else {
4303                             pat = PatKind::Lit(begin);
4304                         }
4305                     }
4306                     Err(mut err) => {
4307                         self.cancel(&mut err);
4308                         let expected = expected.unwrap_or("pattern");
4309                         let msg = format!(
4310                             "expected {}, found {}",
4311                             expected,
4312                             self.this_token_descr(),
4313                         );
4314                         let mut err = self.fatal(&msg);
4315                         err.span_label(self.span, format!("expected {}", expected));
4316                         return Err(err);
4317                     }
4318                 }
4319             }
4320         }
4321
4322         let pat = Pat { node: pat, span: lo.to(self.prev_span), id: ast::DUMMY_NODE_ID };
4323         let pat = self.maybe_recover_from_bad_qpath(pat, true)?;
4324
4325         if !allow_range_pat {
4326             match pat.node {
4327                 PatKind::Range(
4328                     _, _, Spanned { node: RangeEnd::Included(RangeSyntax::DotDotDot), .. }
4329                 ) => {},
4330                 PatKind::Range(..) => {
4331                     let mut err = self.struct_span_err(
4332                         pat.span,
4333                         "the range pattern here has ambiguous interpretation",
4334                     );
4335                     err.span_suggestion_with_applicability(
4336                         pat.span,
4337                         "add parentheses to clarify the precedence",
4338                         format!("({})", pprust::pat_to_string(&pat)),
4339                         // "ambiguous interpretation" implies that we have to be guessing
4340                         Applicability::MaybeIncorrect
4341                     );
4342                     return Err(err);
4343                 }
4344                 _ => {}
4345             }
4346         }
4347
4348         Ok(P(pat))
4349     }
4350
4351     /// Parse ident or ident @ pat
4352     /// used by the copy foo and ref foo patterns to give a good
4353     /// error message when parsing mistakes like ref foo(a,b)
4354     fn parse_pat_ident(&mut self,
4355                        binding_mode: ast::BindingMode)
4356                        -> PResult<'a, PatKind> {
4357         let ident = self.parse_ident()?;
4358         let sub = if self.eat(&token::At) {
4359             Some(self.parse_pat(Some("binding pattern"))?)
4360         } else {
4361             None
4362         };
4363
4364         // just to be friendly, if they write something like
4365         //   ref Some(i)
4366         // we end up here with ( as the current token.  This shortly
4367         // leads to a parse error.  Note that if there is no explicit
4368         // binding mode then we do not end up here, because the lookahead
4369         // will direct us over to parse_enum_variant()
4370         if self.token == token::OpenDelim(token::Paren) {
4371             return Err(self.span_fatal(
4372                 self.prev_span,
4373                 "expected identifier, found enum pattern"))
4374         }
4375
4376         Ok(PatKind::Ident(binding_mode, ident, sub))
4377     }
4378
4379     /// Parse a local variable declaration
4380     fn parse_local(&mut self, attrs: ThinVec<Attribute>) -> PResult<'a, P<Local>> {
4381         let lo = self.prev_span;
4382         let pat = self.parse_top_level_pat()?;
4383
4384         let (err, ty) = if self.eat(&token::Colon) {
4385             // Save the state of the parser before parsing type normally, in case there is a `:`
4386             // instead of an `=` typo.
4387             let parser_snapshot_before_type = self.clone();
4388             let colon_sp = self.prev_span;
4389             match self.parse_ty() {
4390                 Ok(ty) => (None, Some(ty)),
4391                 Err(mut err) => {
4392                     // Rewind to before attempting to parse the type and continue parsing
4393                     let parser_snapshot_after_type = self.clone();
4394                     mem::replace(self, parser_snapshot_before_type);
4395
4396                     let snippet = self.sess.source_map().span_to_snippet(pat.span).unwrap();
4397                     err.span_label(pat.span, format!("while parsing the type for `{}`", snippet));
4398                     (Some((parser_snapshot_after_type, colon_sp, err)), None)
4399                 }
4400             }
4401         } else {
4402             (None, None)
4403         };
4404         let init = match (self.parse_initializer(err.is_some()), err) {
4405             (Ok(init), None) => {  // init parsed, ty parsed
4406                 init
4407             }
4408             (Ok(init), Some((_, colon_sp, mut err))) => {  // init parsed, ty error
4409                 // Could parse the type as if it were the initializer, it is likely there was a
4410                 // typo in the code: `:` instead of `=`. Add suggestion and emit the error.
4411                 err.span_suggestion_short_with_applicability(
4412                     colon_sp,
4413                     "use `=` if you meant to assign",
4414                     "=".to_string(),
4415                     Applicability::MachineApplicable
4416                 );
4417                 err.emit();
4418                 // As this was parsed successfully, continue as if the code has been fixed for the
4419                 // rest of the file. It will still fail due to the emitted error, but we avoid
4420                 // extra noise.
4421                 init
4422             }
4423             (Err(mut init_err), Some((snapshot, _, ty_err))) => {  // init error, ty error
4424                 init_err.cancel();
4425                 // Couldn't parse the type nor the initializer, only raise the type error and
4426                 // return to the parser state before parsing the type as the initializer.
4427                 // let x: <parse_error>;
4428                 mem::replace(self, snapshot);
4429                 return Err(ty_err);
4430             }
4431             (Err(err), None) => {  // init error, ty parsed
4432                 // Couldn't parse the initializer and we're not attempting to recover a failed
4433                 // parse of the type, return the error.
4434                 return Err(err);
4435             }
4436         };
4437         let hi = if self.token == token::Semi {
4438             self.span
4439         } else {
4440             self.prev_span
4441         };
4442         Ok(P(ast::Local {
4443             ty,
4444             pat,
4445             init,
4446             id: ast::DUMMY_NODE_ID,
4447             span: lo.to(hi),
4448             attrs,
4449         }))
4450     }
4451
4452     /// Parse a structure field
4453     fn parse_name_and_ty(&mut self,
4454                          lo: Span,
4455                          vis: Visibility,
4456                          attrs: Vec<Attribute>)
4457                          -> PResult<'a, StructField> {
4458         let name = self.parse_ident()?;
4459         self.expect(&token::Colon)?;
4460         let ty = self.parse_ty()?;
4461         Ok(StructField {
4462             span: lo.to(self.prev_span),
4463             ident: Some(name),
4464             vis,
4465             id: ast::DUMMY_NODE_ID,
4466             ty,
4467             attrs,
4468         })
4469     }
4470
4471     /// Emit an expected item after attributes error.
4472     fn expected_item_err(&self, attrs: &[Attribute]) {
4473         let message = match attrs.last() {
4474             Some(&Attribute { is_sugared_doc: true, .. }) => "expected item after doc comment",
4475             _ => "expected item after attributes",
4476         };
4477
4478         self.span_err(self.prev_span, message);
4479     }
4480
4481     /// Parse a statement. This stops just before trailing semicolons on everything but items.
4482     /// e.g., a `StmtKind::Semi` parses to a `StmtKind::Expr`, leaving the trailing `;` unconsumed.
4483     pub fn parse_stmt(&mut self) -> PResult<'a, Option<Stmt>> {
4484         Ok(self.parse_stmt_(true))
4485     }
4486
4487     // Eat tokens until we can be relatively sure we reached the end of the
4488     // statement. This is something of a best-effort heuristic.
4489     //
4490     // We terminate when we find an unmatched `}` (without consuming it).
4491     fn recover_stmt(&mut self) {
4492         self.recover_stmt_(SemiColonMode::Ignore, BlockMode::Ignore)
4493     }
4494
4495     // If `break_on_semi` is `Break`, then we will stop consuming tokens after
4496     // finding (and consuming) a `;` outside of `{}` or `[]` (note that this is
4497     // approximate - it can mean we break too early due to macros, but that
4498     // should only lead to sub-optimal recovery, not inaccurate parsing).
4499     //
4500     // If `break_on_block` is `Break`, then we will stop consuming tokens
4501     // after finding (and consuming) a brace-delimited block.
4502     fn recover_stmt_(&mut self, break_on_semi: SemiColonMode, break_on_block: BlockMode) {
4503         let mut brace_depth = 0;
4504         let mut bracket_depth = 0;
4505         let mut in_block = false;
4506         debug!("recover_stmt_ enter loop (semi={:?}, block={:?})",
4507                break_on_semi, break_on_block);
4508         loop {
4509             debug!("recover_stmt_ loop {:?}", self.token);
4510             match self.token {
4511                 token::OpenDelim(token::DelimToken::Brace) => {
4512                     brace_depth += 1;
4513                     self.bump();
4514                     if break_on_block == BlockMode::Break &&
4515                        brace_depth == 1 &&
4516                        bracket_depth == 0 {
4517                         in_block = true;
4518                     }
4519                 }
4520                 token::OpenDelim(token::DelimToken::Bracket) => {
4521                     bracket_depth += 1;
4522                     self.bump();
4523                 }
4524                 token::CloseDelim(token::DelimToken::Brace) => {
4525                     if brace_depth == 0 {
4526                         debug!("recover_stmt_ return - close delim {:?}", self.token);
4527                         return;
4528                     }
4529                     brace_depth -= 1;
4530                     self.bump();
4531                     if in_block && bracket_depth == 0 && brace_depth == 0 {
4532                         debug!("recover_stmt_ return - block end {:?}", self.token);
4533                         return;
4534                     }
4535                 }
4536                 token::CloseDelim(token::DelimToken::Bracket) => {
4537                     bracket_depth -= 1;
4538                     if bracket_depth < 0 {
4539                         bracket_depth = 0;
4540                     }
4541                     self.bump();
4542                 }
4543                 token::Eof => {
4544                     debug!("recover_stmt_ return - Eof");
4545                     return;
4546                 }
4547                 token::Semi => {
4548                     self.bump();
4549                     if break_on_semi == SemiColonMode::Break &&
4550                        brace_depth == 0 &&
4551                        bracket_depth == 0 {
4552                         debug!("recover_stmt_ return - Semi");
4553                         return;
4554                     }
4555                 }
4556                 _ => {
4557                     self.bump()
4558                 }
4559             }
4560         }
4561     }
4562
4563     fn parse_stmt_(&mut self, macro_legacy_warnings: bool) -> Option<Stmt> {
4564         self.parse_stmt_without_recovery(macro_legacy_warnings).unwrap_or_else(|mut e| {
4565             e.emit();
4566             self.recover_stmt_(SemiColonMode::Break, BlockMode::Ignore);
4567             None
4568         })
4569     }
4570
4571     fn is_async_block(&mut self) -> bool {
4572         self.token.is_keyword(keywords::Async) &&
4573         (
4574             ( // `async move {`
4575                 self.look_ahead(1, |t| t.is_keyword(keywords::Move)) &&
4576                 self.look_ahead(2, |t| *t == token::OpenDelim(token::Brace))
4577             ) || ( // `async {`
4578                 self.look_ahead(1, |t| *t == token::OpenDelim(token::Brace))
4579             )
4580         )
4581     }
4582
4583     fn is_do_catch_block(&mut self) -> bool {
4584         self.token.is_keyword(keywords::Do) &&
4585         self.look_ahead(1, |t| t.is_keyword(keywords::Catch)) &&
4586         self.look_ahead(2, |t| *t == token::OpenDelim(token::Brace)) &&
4587         !self.restrictions.contains(Restrictions::NO_STRUCT_LITERAL)
4588     }
4589
4590     fn is_try_block(&mut self) -> bool {
4591         self.token.is_keyword(keywords::Try) &&
4592         self.look_ahead(1, |t| *t == token::OpenDelim(token::Brace)) &&
4593         self.span.rust_2018() &&
4594         // prevent `while try {} {}`, `if try {} {} else {}`, etc.
4595         !self.restrictions.contains(Restrictions::NO_STRUCT_LITERAL)
4596     }
4597
4598     fn is_union_item(&self) -> bool {
4599         self.token.is_keyword(keywords::Union) &&
4600         self.look_ahead(1, |t| t.is_ident() && !t.is_reserved_ident())
4601     }
4602
4603     fn is_crate_vis(&self) -> bool {
4604         self.token.is_keyword(keywords::Crate) && self.look_ahead(1, |t| t != &token::ModSep)
4605     }
4606
4607     fn is_extern_non_path(&self) -> bool {
4608         self.token.is_keyword(keywords::Extern) && self.look_ahead(1, |t| t != &token::ModSep)
4609     }
4610
4611     fn is_existential_type_decl(&self) -> bool {
4612         self.token.is_keyword(keywords::Existential) &&
4613         self.look_ahead(1, |t| t.is_keyword(keywords::Type))
4614     }
4615
4616     fn is_auto_trait_item(&mut self) -> bool {
4617         // auto trait
4618         (self.token.is_keyword(keywords::Auto)
4619             && self.look_ahead(1, |t| t.is_keyword(keywords::Trait)))
4620         || // unsafe auto trait
4621         (self.token.is_keyword(keywords::Unsafe) &&
4622          self.look_ahead(1, |t| t.is_keyword(keywords::Auto)) &&
4623          self.look_ahead(2, |t| t.is_keyword(keywords::Trait)))
4624     }
4625
4626     fn eat_macro_def(&mut self, attrs: &[Attribute], vis: &Visibility, lo: Span)
4627                      -> PResult<'a, Option<P<Item>>> {
4628         let token_lo = self.span;
4629         let (ident, def) = match self.token {
4630             token::Ident(ident, false) if ident.name == keywords::Macro.name() => {
4631                 self.bump();
4632                 let ident = self.parse_ident()?;
4633                 let tokens = if self.check(&token::OpenDelim(token::Brace)) {
4634                     match self.parse_token_tree() {
4635                         TokenTree::Delimited(_, _, tts) => tts.stream(),
4636                         _ => unreachable!(),
4637                     }
4638                 } else if self.check(&token::OpenDelim(token::Paren)) {
4639                     let args = self.parse_token_tree();
4640                     let body = if self.check(&token::OpenDelim(token::Brace)) {
4641                         self.parse_token_tree()
4642                     } else {
4643                         self.unexpected()?;
4644                         unreachable!()
4645                     };
4646                     TokenStream::new(vec![
4647                         args.into(),
4648                         TokenTree::Token(token_lo.to(self.prev_span), token::FatArrow).into(),
4649                         body.into(),
4650                     ])
4651                 } else {
4652                     self.unexpected()?;
4653                     unreachable!()
4654                 };
4655
4656                 (ident, ast::MacroDef { tokens: tokens.into(), legacy: false })
4657             }
4658             token::Ident(ident, _) if ident.name == "macro_rules" &&
4659                                    self.look_ahead(1, |t| *t == token::Not) => {
4660                 let prev_span = self.prev_span;
4661                 self.complain_if_pub_macro(&vis.node, prev_span);
4662                 self.bump();
4663                 self.bump();
4664
4665                 let ident = self.parse_ident()?;
4666                 let (delim, tokens) = self.expect_delimited_token_tree()?;
4667                 if delim != MacDelimiter::Brace {
4668                     if !self.eat(&token::Semi) {
4669                         let msg = "macros that expand to items must either \
4670                                    be surrounded with braces or followed by a semicolon";
4671                         self.span_err(self.prev_span, msg);
4672                     }
4673                 }
4674
4675                 (ident, ast::MacroDef { tokens: tokens, legacy: true })
4676             }
4677             _ => return Ok(None),
4678         };
4679
4680         let span = lo.to(self.prev_span);
4681         Ok(Some(self.mk_item(span, ident, ItemKind::MacroDef(def), vis.clone(), attrs.to_vec())))
4682     }
4683
4684     fn parse_stmt_without_recovery(&mut self,
4685                                    macro_legacy_warnings: bool)
4686                                    -> PResult<'a, Option<Stmt>> {
4687         maybe_whole!(self, NtStmt, |x| Some(x));
4688
4689         let attrs = self.parse_outer_attributes()?;
4690         let lo = self.span;
4691
4692         Ok(Some(if self.eat_keyword(keywords::Let) {
4693             Stmt {
4694                 id: ast::DUMMY_NODE_ID,
4695                 node: StmtKind::Local(self.parse_local(attrs.into())?),
4696                 span: lo.to(self.prev_span),
4697             }
4698         } else if let Some(macro_def) = self.eat_macro_def(
4699             &attrs,
4700             &source_map::respan(lo, VisibilityKind::Inherited),
4701             lo,
4702         )? {
4703             Stmt {
4704                 id: ast::DUMMY_NODE_ID,
4705                 node: StmtKind::Item(macro_def),
4706                 span: lo.to(self.prev_span),
4707             }
4708         // Starts like a simple path, being careful to avoid contextual keywords
4709         // such as a union items, item with `crate` visibility or auto trait items.
4710         // Our goal here is to parse an arbitrary path `a::b::c` but not something that starts
4711         // like a path (1 token), but it fact not a path.
4712         // `union::b::c` - path, `union U { ... }` - not a path.
4713         // `crate::b::c` - path, `crate struct S;` - not a path.
4714         // `extern::b::c` - path, `extern crate c;` - not a path.
4715         } else if self.token.is_path_start() &&
4716                   !self.token.is_qpath_start() &&
4717                   !self.is_union_item() &&
4718                   !self.is_crate_vis() &&
4719                   !self.is_extern_non_path() &&
4720                   !self.is_existential_type_decl() &&
4721                   !self.is_auto_trait_item() {
4722             let pth = self.parse_path(PathStyle::Expr)?;
4723
4724             if !self.eat(&token::Not) {
4725                 let expr = if self.check(&token::OpenDelim(token::Brace)) {
4726                     self.parse_struct_expr(lo, pth, ThinVec::new())?
4727                 } else {
4728                     let hi = self.prev_span;
4729                     self.mk_expr(lo.to(hi), ExprKind::Path(None, pth), ThinVec::new())
4730                 };
4731
4732                 let expr = self.with_res(Restrictions::STMT_EXPR, |this| {
4733                     let expr = this.parse_dot_or_call_expr_with(expr, lo, attrs.into())?;
4734                     this.parse_assoc_expr_with(0, LhsExpr::AlreadyParsed(expr))
4735                 })?;
4736
4737                 return Ok(Some(Stmt {
4738                     id: ast::DUMMY_NODE_ID,
4739                     node: StmtKind::Expr(expr),
4740                     span: lo.to(self.prev_span),
4741                 }));
4742             }
4743
4744             // it's a macro invocation
4745             let id = match self.token {
4746                 token::OpenDelim(_) => keywords::Invalid.ident(), // no special identifier
4747                 _ => self.parse_ident()?,
4748             };
4749
4750             // check that we're pointing at delimiters (need to check
4751             // again after the `if`, because of `parse_ident`
4752             // consuming more tokens).
4753             match self.token {
4754                 token::OpenDelim(_) => {}
4755                 _ => {
4756                     // we only expect an ident if we didn't parse one
4757                     // above.
4758                     let ident_str = if id.name == keywords::Invalid.name() {
4759                         "identifier, "
4760                     } else {
4761                         ""
4762                     };
4763                     let tok_str = self.this_token_descr();
4764                     let mut err = self.fatal(&format!("expected {}`(` or `{{`, found {}",
4765                                                       ident_str,
4766                                                       tok_str));
4767                     err.span_label(self.span, format!("expected {}`(` or `{{`", ident_str));
4768                     return Err(err)
4769                 },
4770             }
4771
4772             let (delim, tts) = self.expect_delimited_token_tree()?;
4773             let hi = self.prev_span;
4774
4775             let style = if delim == MacDelimiter::Brace {
4776                 MacStmtStyle::Braces
4777             } else {
4778                 MacStmtStyle::NoBraces
4779             };
4780
4781             if id.name == keywords::Invalid.name() {
4782                 let mac = respan(lo.to(hi), Mac_ { path: pth, tts, delim });
4783                 let node = if delim == MacDelimiter::Brace ||
4784                               self.token == token::Semi || self.token == token::Eof {
4785                     StmtKind::Mac(P((mac, style, attrs.into())))
4786                 }
4787                 // We used to incorrectly stop parsing macro-expanded statements here.
4788                 // If the next token will be an error anyway but could have parsed with the
4789                 // earlier behavior, stop parsing here and emit a warning to avoid breakage.
4790                 else if macro_legacy_warnings && self.token.can_begin_expr() && match self.token {
4791                     // These can continue an expression, so we can't stop parsing and warn.
4792                     token::OpenDelim(token::Paren) | token::OpenDelim(token::Bracket) |
4793                     token::BinOp(token::Minus) | token::BinOp(token::Star) |
4794                     token::BinOp(token::And) | token::BinOp(token::Or) |
4795                     token::AndAnd | token::OrOr |
4796                     token::DotDot | token::DotDotDot | token::DotDotEq => false,
4797                     _ => true,
4798                 } {
4799                     self.warn_missing_semicolon();
4800                     StmtKind::Mac(P((mac, style, attrs.into())))
4801                 } else {
4802                     let e = self.mk_mac_expr(lo.to(hi), mac.node, ThinVec::new());
4803                     let e = self.parse_dot_or_call_expr_with(e, lo, attrs.into())?;
4804                     let e = self.parse_assoc_expr_with(0, LhsExpr::AlreadyParsed(e))?;
4805                     StmtKind::Expr(e)
4806                 };
4807                 Stmt {
4808                     id: ast::DUMMY_NODE_ID,
4809                     span: lo.to(hi),
4810                     node,
4811                 }
4812             } else {
4813                 // if it has a special ident, it's definitely an item
4814                 //
4815                 // Require a semicolon or braces.
4816                 if style != MacStmtStyle::Braces {
4817                     if !self.eat(&token::Semi) {
4818                         self.span_err(self.prev_span,
4819                                       "macros that expand to items must \
4820                                        either be surrounded with braces or \
4821                                        followed by a semicolon");
4822                     }
4823                 }
4824                 let span = lo.to(hi);
4825                 Stmt {
4826                     id: ast::DUMMY_NODE_ID,
4827                     span,
4828                     node: StmtKind::Item({
4829                         self.mk_item(
4830                             span, id /*id is good here*/,
4831                             ItemKind::Mac(respan(span, Mac_ { path: pth, tts, delim })),
4832                             respan(lo, VisibilityKind::Inherited),
4833                             attrs)
4834                     }),
4835                 }
4836             }
4837         } else {
4838             // FIXME: Bad copy of attrs
4839             let old_directory_ownership =
4840                 mem::replace(&mut self.directory.ownership, DirectoryOwnership::UnownedViaBlock);
4841             let item = self.parse_item_(attrs.clone(), false, true)?;
4842             self.directory.ownership = old_directory_ownership;
4843
4844             match item {
4845                 Some(i) => Stmt {
4846                     id: ast::DUMMY_NODE_ID,
4847                     span: lo.to(i.span),
4848                     node: StmtKind::Item(i),
4849                 },
4850                 None => {
4851                     let unused_attrs = |attrs: &[Attribute], s: &mut Self| {
4852                         if !attrs.is_empty() {
4853                             if s.prev_token_kind == PrevTokenKind::DocComment {
4854                                 s.span_fatal_err(s.prev_span, Error::UselessDocComment).emit();
4855                             } else if attrs.iter().any(|a| a.style == AttrStyle::Outer) {
4856                                 s.span_err(s.span, "expected statement after outer attribute");
4857                             }
4858                         }
4859                     };
4860
4861                     // Do not attempt to parse an expression if we're done here.
4862                     if self.token == token::Semi {
4863                         unused_attrs(&attrs, self);
4864                         self.bump();
4865                         return Ok(None);
4866                     }
4867
4868                     if self.token == token::CloseDelim(token::Brace) {
4869                         unused_attrs(&attrs, self);
4870                         return Ok(None);
4871                     }
4872
4873                     // Remainder are line-expr stmts.
4874                     let e = self.parse_expr_res(
4875                         Restrictions::STMT_EXPR, Some(attrs.into()))?;
4876                     Stmt {
4877                         id: ast::DUMMY_NODE_ID,
4878                         span: lo.to(e.span),
4879                         node: StmtKind::Expr(e),
4880                     }
4881                 }
4882             }
4883         }))
4884     }
4885
4886     /// Is this expression a successfully-parsed statement?
4887     fn expr_is_complete(&mut self, e: &Expr) -> bool {
4888         self.restrictions.contains(Restrictions::STMT_EXPR) &&
4889             !classify::expr_requires_semi_to_be_stmt(e)
4890     }
4891
4892     /// Parse a block. No inner attrs are allowed.
4893     pub fn parse_block(&mut self) -> PResult<'a, P<Block>> {
4894         maybe_whole!(self, NtBlock, |x| x);
4895
4896         let lo = self.span;
4897
4898         if !self.eat(&token::OpenDelim(token::Brace)) {
4899             let sp = self.span;
4900             let tok = self.this_token_descr();
4901             let mut e = self.span_fatal(sp, &format!("expected `{{`, found {}", tok));
4902             let do_not_suggest_help =
4903                 self.token.is_keyword(keywords::In) || self.token == token::Colon;
4904
4905             if self.token.is_ident_named("and") {
4906                 e.span_suggestion_short_with_applicability(
4907                     self.span,
4908                     "use `&&` instead of `and` for the boolean operator",
4909                     "&&".to_string(),
4910                     Applicability::MaybeIncorrect,
4911                 );
4912             }
4913             if self.token.is_ident_named("or") {
4914                 e.span_suggestion_short_with_applicability(
4915                     self.span,
4916                     "use `||` instead of `or` for the boolean operator",
4917                     "||".to_string(),
4918                     Applicability::MaybeIncorrect,
4919                 );
4920             }
4921
4922             // Check to see if the user has written something like
4923             //
4924             //    if (cond)
4925             //      bar;
4926             //
4927             // Which is valid in other languages, but not Rust.
4928             match self.parse_stmt_without_recovery(false) {
4929                 Ok(Some(stmt)) => {
4930                     if self.look_ahead(1, |t| t == &token::OpenDelim(token::Brace))
4931                         || do_not_suggest_help {
4932                         // if the next token is an open brace (e.g., `if a b {`), the place-
4933                         // inside-a-block suggestion would be more likely wrong than right
4934                         e.span_label(sp, "expected `{`");
4935                         return Err(e);
4936                     }
4937                     let mut stmt_span = stmt.span;
4938                     // expand the span to include the semicolon, if it exists
4939                     if self.eat(&token::Semi) {
4940                         stmt_span = stmt_span.with_hi(self.prev_span.hi());
4941                     }
4942                     let sugg = pprust::to_string(|s| {
4943                         use print::pprust::{PrintState, INDENT_UNIT};
4944                         s.ibox(INDENT_UNIT)?;
4945                         s.bopen()?;
4946                         s.print_stmt(&stmt)?;
4947                         s.bclose_maybe_open(stmt.span, INDENT_UNIT, false)
4948                     });
4949                     e.span_suggestion_with_applicability(
4950                         stmt_span,
4951                         "try placing this code inside a block",
4952                         sugg,
4953                         // speculative, has been misleading in the past (closed Issue #46836)
4954                         Applicability::MaybeIncorrect
4955                     );
4956                 }
4957                 Err(mut e) => {
4958                     self.recover_stmt_(SemiColonMode::Break, BlockMode::Ignore);
4959                     self.cancel(&mut e);
4960                 }
4961                 _ => ()
4962             }
4963             e.span_label(sp, "expected `{`");
4964             return Err(e);
4965         }
4966
4967         self.parse_block_tail(lo, BlockCheckMode::Default)
4968     }
4969
4970     /// Parse a block. Inner attrs are allowed.
4971     fn parse_inner_attrs_and_block(&mut self) -> PResult<'a, (Vec<Attribute>, P<Block>)> {
4972         maybe_whole!(self, NtBlock, |x| (Vec::new(), x));
4973
4974         let lo = self.span;
4975         self.expect(&token::OpenDelim(token::Brace))?;
4976         Ok((self.parse_inner_attributes()?,
4977             self.parse_block_tail(lo, BlockCheckMode::Default)?))
4978     }
4979
4980     /// Parse the rest of a block expression or function body
4981     /// Precondition: already parsed the '{'.
4982     fn parse_block_tail(&mut self, lo: Span, s: BlockCheckMode) -> PResult<'a, P<Block>> {
4983         let mut stmts = vec![];
4984         while !self.eat(&token::CloseDelim(token::Brace)) {
4985             let stmt = match self.parse_full_stmt(false) {
4986                 Err(mut err) => {
4987                     err.emit();
4988                     self.recover_stmt_(SemiColonMode::Ignore, BlockMode::Ignore);
4989                     Some(Stmt {
4990                         id: ast::DUMMY_NODE_ID,
4991                         node: StmtKind::Expr(DummyResult::raw_expr(self.span, true)),
4992                         span: self.span,
4993                     })
4994                 }
4995                 Ok(stmt) => stmt,
4996             };
4997             if let Some(stmt) = stmt {
4998                 stmts.push(stmt);
4999             } else if self.token == token::Eof {
5000                 break;
5001             } else {
5002                 // Found only `;` or `}`.
5003                 continue;
5004             };
5005         }
5006         Ok(P(ast::Block {
5007             stmts,
5008             id: ast::DUMMY_NODE_ID,
5009             rules: s,
5010             span: lo.to(self.prev_span),
5011         }))
5012     }
5013
5014     /// Parse a statement, including the trailing semicolon.
5015     crate fn parse_full_stmt(&mut self, macro_legacy_warnings: bool) -> PResult<'a, Option<Stmt>> {
5016         // skip looking for a trailing semicolon when we have an interpolated statement
5017         maybe_whole!(self, NtStmt, |x| Some(x));
5018
5019         let mut stmt = match self.parse_stmt_without_recovery(macro_legacy_warnings)? {
5020             Some(stmt) => stmt,
5021             None => return Ok(None),
5022         };
5023
5024         match stmt.node {
5025             StmtKind::Expr(ref expr) if self.token != token::Eof => {
5026                 // expression without semicolon
5027                 if classify::expr_requires_semi_to_be_stmt(expr) {
5028                     // Just check for errors and recover; do not eat semicolon yet.
5029                     if let Err(mut e) =
5030                         self.expect_one_of(&[], &[token::Semi, token::CloseDelim(token::Brace)])
5031                     {
5032                         e.emit();
5033                         self.recover_stmt();
5034                     }
5035                 }
5036             }
5037             StmtKind::Local(..) => {
5038                 // We used to incorrectly allow a macro-expanded let statement to lack a semicolon.
5039                 if macro_legacy_warnings && self.token != token::Semi {
5040                     self.warn_missing_semicolon();
5041                 } else {
5042                     self.expect_one_of(&[], &[token::Semi])?;
5043                 }
5044             }
5045             _ => {}
5046         }
5047
5048         if self.eat(&token::Semi) {
5049             stmt = stmt.add_trailing_semicolon();
5050         }
5051
5052         stmt.span = stmt.span.with_hi(self.prev_span.hi());
5053         Ok(Some(stmt))
5054     }
5055
5056     fn warn_missing_semicolon(&self) {
5057         self.diagnostic().struct_span_warn(self.span, {
5058             &format!("expected `;`, found {}", self.this_token_descr())
5059         }).note({
5060             "This was erroneously allowed and will become a hard error in a future release"
5061         }).emit();
5062     }
5063
5064     fn err_dotdotdot_syntax(&self, span: Span) {
5065         self.diagnostic().struct_span_err(span, {
5066             "unexpected token: `...`"
5067         }).span_suggestion_with_applicability(
5068             span, "use `..` for an exclusive range", "..".to_owned(),
5069             Applicability::MaybeIncorrect
5070         ).span_suggestion_with_applicability(
5071             span, "or `..=` for an inclusive range", "..=".to_owned(),
5072             Applicability::MaybeIncorrect
5073         ).emit();
5074     }
5075
5076     // Parse bounds of a type parameter `BOUND + BOUND + BOUND`, possibly with trailing `+`.
5077     // BOUND = TY_BOUND | LT_BOUND
5078     // LT_BOUND = LIFETIME (e.g., `'a`)
5079     // TY_BOUND = TY_BOUND_NOPAREN | (TY_BOUND_NOPAREN)
5080     // TY_BOUND_NOPAREN = [?] [for<LT_PARAM_DEFS>] SIMPLE_PATH (e.g., `?for<'a: 'b> m::Trait<'a>`)
5081     fn parse_generic_bounds_common(&mut self, allow_plus: bool) -> PResult<'a, GenericBounds> {
5082         let mut bounds = Vec::new();
5083         loop {
5084             // This needs to be synchronized with `Token::can_begin_bound`.
5085             let is_bound_start = self.check_path() || self.check_lifetime() ||
5086                                  self.check(&token::Question) ||
5087                                  self.check_keyword(keywords::For) ||
5088                                  self.check(&token::OpenDelim(token::Paren));
5089             if is_bound_start {
5090                 let lo = self.span;
5091                 let has_parens = self.eat(&token::OpenDelim(token::Paren));
5092                 let question = if self.eat(&token::Question) { Some(self.prev_span) } else { None };
5093                 if self.token.is_lifetime() {
5094                     if let Some(question_span) = question {
5095                         self.span_err(question_span,
5096                                       "`?` may only modify trait bounds, not lifetime bounds");
5097                     }
5098                     bounds.push(GenericBound::Outlives(self.expect_lifetime()));
5099                     if has_parens {
5100                         self.expect(&token::CloseDelim(token::Paren))?;
5101                         self.span_err(self.prev_span,
5102                                       "parenthesized lifetime bounds are not supported");
5103                     }
5104                 } else {
5105                     let lifetime_defs = self.parse_late_bound_lifetime_defs()?;
5106                     let path = self.parse_path(PathStyle::Type)?;
5107                     if has_parens {
5108                         self.expect(&token::CloseDelim(token::Paren))?;
5109                     }
5110                     let poly_trait = PolyTraitRef::new(lifetime_defs, path, lo.to(self.prev_span));
5111                     let modifier = if question.is_some() {
5112                         TraitBoundModifier::Maybe
5113                     } else {
5114                         TraitBoundModifier::None
5115                     };
5116                     bounds.push(GenericBound::Trait(poly_trait, modifier));
5117                 }
5118             } else {
5119                 break
5120             }
5121
5122             if !allow_plus || !self.eat_plus() {
5123                 break
5124             }
5125         }
5126
5127         return Ok(bounds);
5128     }
5129
5130     fn parse_generic_bounds(&mut self) -> PResult<'a, GenericBounds> {
5131         self.parse_generic_bounds_common(true)
5132     }
5133
5134     // Parse bounds of a lifetime parameter `BOUND + BOUND + BOUND`, possibly with trailing `+`.
5135     // BOUND = LT_BOUND (e.g., `'a`)
5136     fn parse_lt_param_bounds(&mut self) -> GenericBounds {
5137         let mut lifetimes = Vec::new();
5138         while self.check_lifetime() {
5139             lifetimes.push(ast::GenericBound::Outlives(self.expect_lifetime()));
5140
5141             if !self.eat_plus() {
5142                 break
5143             }
5144         }
5145         lifetimes
5146     }
5147
5148     /// Matches typaram = IDENT (`?` unbound)? optbounds ( EQ ty )?
5149     fn parse_ty_param(&mut self,
5150                       preceding_attrs: Vec<Attribute>)
5151                       -> PResult<'a, GenericParam> {
5152         let ident = self.parse_ident()?;
5153
5154         // Parse optional colon and param bounds.
5155         let bounds = if self.eat(&token::Colon) {
5156             self.parse_generic_bounds()?
5157         } else {
5158             Vec::new()
5159         };
5160
5161         let default = if self.eat(&token::Eq) {
5162             Some(self.parse_ty()?)
5163         } else {
5164             None
5165         };
5166
5167         Ok(GenericParam {
5168             ident,
5169             id: ast::DUMMY_NODE_ID,
5170             attrs: preceding_attrs.into(),
5171             bounds,
5172             kind: GenericParamKind::Type {
5173                 default,
5174             }
5175         })
5176     }
5177
5178     /// Parses the following grammar:
5179     ///     TraitItemAssocTy = Ident ["<"...">"] [":" [GenericBounds]] ["where" ...] ["=" Ty]
5180     fn parse_trait_item_assoc_ty(&mut self)
5181         -> PResult<'a, (Ident, TraitItemKind, ast::Generics)> {
5182         let ident = self.parse_ident()?;
5183         let mut generics = self.parse_generics()?;
5184
5185         // Parse optional colon and param bounds.
5186         let bounds = if self.eat(&token::Colon) {
5187             self.parse_generic_bounds()?
5188         } else {
5189             Vec::new()
5190         };
5191         generics.where_clause = self.parse_where_clause()?;
5192
5193         let default = if self.eat(&token::Eq) {
5194             Some(self.parse_ty()?)
5195         } else {
5196             None
5197         };
5198         self.expect(&token::Semi)?;
5199
5200         Ok((ident, TraitItemKind::Type(bounds, default), generics))
5201     }
5202
5203     /// Parses (possibly empty) list of lifetime and type parameters, possibly including
5204     /// trailing comma and erroneous trailing attributes.
5205     crate fn parse_generic_params(&mut self) -> PResult<'a, Vec<ast::GenericParam>> {
5206         let mut lifetimes = Vec::new();
5207         let mut params = Vec::new();
5208         let mut seen_ty_param: Option<Span> = None;
5209         let mut last_comma_span = None;
5210         let mut bad_lifetime_pos = vec![];
5211         let mut suggestions = vec![];
5212         loop {
5213             let attrs = self.parse_outer_attributes()?;
5214             if self.check_lifetime() {
5215                 let lifetime = self.expect_lifetime();
5216                 // Parse lifetime parameter.
5217                 let bounds = if self.eat(&token::Colon) {
5218                     self.parse_lt_param_bounds()
5219                 } else {
5220                     Vec::new()
5221                 };
5222                 lifetimes.push(ast::GenericParam {
5223                     ident: lifetime.ident,
5224                     id: lifetime.id,
5225                     attrs: attrs.into(),
5226                     bounds,
5227                     kind: ast::GenericParamKind::Lifetime,
5228                 });
5229                 if let Some(sp) = seen_ty_param {
5230                     let param_span = self.prev_span;
5231                     let ate_comma = self.eat(&token::Comma);
5232                     let remove_sp = if ate_comma {
5233                         param_span.until(self.span)
5234                     } else {
5235                         last_comma_span.unwrap_or(param_span).to(param_span)
5236                     };
5237                     bad_lifetime_pos.push(param_span);
5238
5239                     if let Ok(snippet) = self.sess.source_map().span_to_snippet(param_span) {
5240                         suggestions.push((remove_sp, String::new()));
5241                         suggestions.push((sp.shrink_to_lo(), format!("{}, ", snippet)));
5242                     }
5243                     if ate_comma {
5244                         last_comma_span = Some(self.prev_span);
5245                         continue
5246                     }
5247                 }
5248             } else if self.check_ident() {
5249                 // Parse type parameter.
5250                 params.push(self.parse_ty_param(attrs)?);
5251                 if seen_ty_param.is_none() {
5252                     seen_ty_param = Some(self.prev_span);
5253                 }
5254             } else {
5255                 // Check for trailing attributes and stop parsing.
5256                 if !attrs.is_empty() {
5257                     let param_kind = if seen_ty_param.is_some() { "type" } else { "lifetime" };
5258                     self.span_err(attrs[0].span,
5259                         &format!("trailing attribute after {} parameters", param_kind));
5260                 }
5261                 break
5262             }
5263
5264             if !self.eat(&token::Comma) {
5265                 break
5266             }
5267             last_comma_span = Some(self.prev_span);
5268         }
5269         if !bad_lifetime_pos.is_empty() {
5270             let mut err = self.struct_span_err(
5271                 bad_lifetime_pos,
5272                 "lifetime parameters must be declared prior to type parameters",
5273             );
5274             if !suggestions.is_empty() {
5275                 err.multipart_suggestion_with_applicability(
5276                     "move the lifetime parameter prior to the first type parameter",
5277                     suggestions,
5278                     Applicability::MachineApplicable,
5279                 );
5280             }
5281             err.emit();
5282         }
5283         lifetimes.extend(params);  // ensure the correct order of lifetimes and type params
5284         Ok(lifetimes)
5285     }
5286
5287     /// Parse a set of optional generic type parameter declarations. Where
5288     /// clauses are not parsed here, and must be added later via
5289     /// `parse_where_clause()`.
5290     ///
5291     /// matches generics = ( ) | ( < > ) | ( < typaramseq ( , )? > ) | ( < lifetimes ( , )? > )
5292     ///                  | ( < lifetimes , typaramseq ( , )? > )
5293     /// where   typaramseq = ( typaram ) | ( typaram , typaramseq )
5294     fn parse_generics(&mut self) -> PResult<'a, ast::Generics> {
5295         maybe_whole!(self, NtGenerics, |x| x);
5296
5297         let span_lo = self.span;
5298         if self.eat_lt() {
5299             let params = self.parse_generic_params()?;
5300             self.expect_gt()?;
5301             Ok(ast::Generics {
5302                 params,
5303                 where_clause: WhereClause {
5304                     id: ast::DUMMY_NODE_ID,
5305                     predicates: Vec::new(),
5306                     span: syntax_pos::DUMMY_SP,
5307                 },
5308                 span: span_lo.to(self.prev_span),
5309             })
5310         } else {
5311             Ok(ast::Generics::default())
5312         }
5313     }
5314
5315     /// Parses (possibly empty) list of lifetime and type arguments and associated type bindings,
5316     /// possibly including trailing comma.
5317     fn parse_generic_args(&mut self)
5318                           -> PResult<'a, (Vec<GenericArg>, Vec<TypeBinding>)> {
5319         let mut args = Vec::new();
5320         let mut bindings = Vec::new();
5321         let mut seen_type = false;
5322         let mut seen_binding = false;
5323         loop {
5324             if self.check_lifetime() && self.look_ahead(1, |t| !t.is_like_plus()) {
5325                 // Parse lifetime argument.
5326                 args.push(GenericArg::Lifetime(self.expect_lifetime()));
5327                 if seen_type || seen_binding {
5328                     self.span_err(self.prev_span,
5329                         "lifetime parameters must be declared prior to type parameters");
5330                 }
5331             } else if self.check_ident() && self.look_ahead(1, |t| t == &token::Eq) {
5332                 // Parse associated type binding.
5333                 let lo = self.span;
5334                 let ident = self.parse_ident()?;
5335                 self.bump();
5336                 let ty = self.parse_ty()?;
5337                 bindings.push(TypeBinding {
5338                     id: ast::DUMMY_NODE_ID,
5339                     ident,
5340                     ty,
5341                     span: lo.to(self.prev_span),
5342                 });
5343                 seen_binding = true;
5344             } else if self.check_type() {
5345                 // Parse type argument.
5346                 let ty_param = self.parse_ty()?;
5347                 if seen_binding {
5348                     self.span_err(ty_param.span,
5349                         "type parameters must be declared prior to associated type bindings");
5350                 }
5351                 args.push(GenericArg::Type(ty_param));
5352                 seen_type = true;
5353             } else {
5354                 break
5355             }
5356
5357             if !self.eat(&token::Comma) {
5358                 break
5359             }
5360         }
5361         Ok((args, bindings))
5362     }
5363
5364     /// Parses an optional `where` clause and places it in `generics`.
5365     ///
5366     /// ```ignore (only-for-syntax-highlight)
5367     /// where T : Trait<U, V> + 'b, 'a : 'b
5368     /// ```
5369     fn parse_where_clause(&mut self) -> PResult<'a, WhereClause> {
5370         maybe_whole!(self, NtWhereClause, |x| x);
5371
5372         let mut where_clause = WhereClause {
5373             id: ast::DUMMY_NODE_ID,
5374             predicates: Vec::new(),
5375             span: syntax_pos::DUMMY_SP,
5376         };
5377
5378         if !self.eat_keyword(keywords::Where) {
5379             return Ok(where_clause);
5380         }
5381         let lo = self.prev_span;
5382
5383         // We are considering adding generics to the `where` keyword as an alternative higher-rank
5384         // parameter syntax (as in `where<'a>` or `where<T>`. To avoid that being a breaking
5385         // change we parse those generics now, but report an error.
5386         if self.choose_generics_over_qpath() {
5387             let generics = self.parse_generics()?;
5388             self.span_err(generics.span,
5389                           "generic parameters on `where` clauses are reserved for future use");
5390         }
5391
5392         loop {
5393             let lo = self.span;
5394             if self.check_lifetime() && self.look_ahead(1, |t| !t.is_like_plus()) {
5395                 let lifetime = self.expect_lifetime();
5396                 // Bounds starting with a colon are mandatory, but possibly empty.
5397                 self.expect(&token::Colon)?;
5398                 let bounds = self.parse_lt_param_bounds();
5399                 where_clause.predicates.push(ast::WherePredicate::RegionPredicate(
5400                     ast::WhereRegionPredicate {
5401                         span: lo.to(self.prev_span),
5402                         lifetime,
5403                         bounds,
5404                     }
5405                 ));
5406             } else if self.check_type() {
5407                 // Parse optional `for<'a, 'b>`.
5408                 // This `for` is parsed greedily and applies to the whole predicate,
5409                 // the bounded type can have its own `for` applying only to it.
5410                 // Example 1: for<'a> Trait1<'a>: Trait2<'a /*ok*/>
5411                 // Example 2: (for<'a> Trait1<'a>): Trait2<'a /*not ok*/>
5412                 // Example 3: for<'a> for<'b> Trait1<'a, 'b>: Trait2<'a /*ok*/, 'b /*not ok*/>
5413                 let lifetime_defs = self.parse_late_bound_lifetime_defs()?;
5414
5415                 // Parse type with mandatory colon and (possibly empty) bounds,
5416                 // or with mandatory equality sign and the second type.
5417                 let ty = self.parse_ty()?;
5418                 if self.eat(&token::Colon) {
5419                     let bounds = self.parse_generic_bounds()?;
5420                     where_clause.predicates.push(ast::WherePredicate::BoundPredicate(
5421                         ast::WhereBoundPredicate {
5422                             span: lo.to(self.prev_span),
5423                             bound_generic_params: lifetime_defs,
5424                             bounded_ty: ty,
5425                             bounds,
5426                         }
5427                     ));
5428                 // FIXME: Decide what should be used here, `=` or `==`.
5429                 // FIXME: We are just dropping the binders in lifetime_defs on the floor here.
5430                 } else if self.eat(&token::Eq) || self.eat(&token::EqEq) {
5431                     let rhs_ty = self.parse_ty()?;
5432                     where_clause.predicates.push(ast::WherePredicate::EqPredicate(
5433                         ast::WhereEqPredicate {
5434                             span: lo.to(self.prev_span),
5435                             lhs_ty: ty,
5436                             rhs_ty,
5437                             id: ast::DUMMY_NODE_ID,
5438                         }
5439                     ));
5440                 } else {
5441                     return self.unexpected();
5442                 }
5443             } else {
5444                 break
5445             }
5446
5447             if !self.eat(&token::Comma) {
5448                 break
5449             }
5450         }
5451
5452         where_clause.span = lo.to(self.prev_span);
5453         Ok(where_clause)
5454     }
5455
5456     fn parse_fn_args(&mut self, named_args: bool, allow_variadic: bool)
5457                      -> PResult<'a, (Vec<Arg> , bool)> {
5458         self.expect(&token::OpenDelim(token::Paren))?;
5459
5460         let sp = self.span;
5461         let mut variadic = false;
5462         let args: Vec<Option<Arg>> =
5463             self.parse_seq_to_before_end(
5464                 &token::CloseDelim(token::Paren),
5465                 SeqSep::trailing_allowed(token::Comma),
5466                 |p| {
5467                     if p.token == token::DotDotDot {
5468                         p.bump();
5469                         variadic = true;
5470                         if allow_variadic {
5471                             if p.token != token::CloseDelim(token::Paren) {
5472                                 let span = p.span;
5473                                 p.span_err(span,
5474                                     "`...` must be last in argument list for variadic function");
5475                             }
5476                             Ok(None)
5477                         } else {
5478                             let span = p.prev_span;
5479                             if p.token == token::CloseDelim(token::Paren) {
5480                                 // continue parsing to present any further errors
5481                                 p.struct_span_err(
5482                                     span,
5483                                     "only foreign functions are allowed to be variadic"
5484                                 ).emit();
5485                                 Ok(Some(dummy_arg(span)))
5486                            } else {
5487                                // this function definition looks beyond recovery, stop parsing
5488                                 p.span_err(span,
5489                                            "only foreign functions are allowed to be variadic");
5490                                 Ok(None)
5491                             }
5492                         }
5493                     } else {
5494                         match p.parse_arg_general(named_args, false) {
5495                             Ok(arg) => Ok(Some(arg)),
5496                             Err(mut e) => {
5497                                 e.emit();
5498                                 let lo = p.prev_span;
5499                                 // Skip every token until next possible arg or end.
5500                                 p.eat_to_tokens(&[&token::Comma, &token::CloseDelim(token::Paren)]);
5501                                 // Create a placeholder argument for proper arg count (#34264).
5502                                 let span = lo.to(p.prev_span);
5503                                 Ok(Some(dummy_arg(span)))
5504                             }
5505                         }
5506                     }
5507                 }
5508             )?;
5509
5510         self.eat(&token::CloseDelim(token::Paren));
5511
5512         let args: Vec<_> = args.into_iter().filter_map(|x| x).collect();
5513
5514         if variadic && args.is_empty() {
5515             self.span_err(sp,
5516                           "variadic function must be declared with at least one named argument");
5517         }
5518
5519         Ok((args, variadic))
5520     }
5521
5522     /// Parse the argument list and result type of a function declaration
5523     fn parse_fn_decl(&mut self, allow_variadic: bool) -> PResult<'a, P<FnDecl>> {
5524
5525         let (args, variadic) = self.parse_fn_args(true, allow_variadic)?;
5526         let ret_ty = self.parse_ret_ty(true)?;
5527
5528         Ok(P(FnDecl {
5529             inputs: args,
5530             output: ret_ty,
5531             variadic,
5532         }))
5533     }
5534
5535     /// Returns the parsed optional self argument and whether a self shortcut was used.
5536     fn parse_self_arg(&mut self) -> PResult<'a, Option<Arg>> {
5537         let expect_ident = |this: &mut Self| match this.token {
5538             // Preserve hygienic context.
5539             token::Ident(ident, _) =>
5540                 { let span = this.span; this.bump(); Ident::new(ident.name, span) }
5541             _ => unreachable!()
5542         };
5543         let isolated_self = |this: &mut Self, n| {
5544             this.look_ahead(n, |t| t.is_keyword(keywords::SelfLower)) &&
5545             this.look_ahead(n + 1, |t| t != &token::ModSep)
5546         };
5547
5548         // Parse optional self parameter of a method.
5549         // Only a limited set of initial token sequences is considered self parameters, anything
5550         // else is parsed as a normal function parameter list, so some lookahead is required.
5551         let eself_lo = self.span;
5552         let (eself, eself_ident, eself_hi) = match self.token {
5553             token::BinOp(token::And) => {
5554                 // &self
5555                 // &mut self
5556                 // &'lt self
5557                 // &'lt mut self
5558                 // &not_self
5559                 (if isolated_self(self, 1) {
5560                     self.bump();
5561                     SelfKind::Region(None, Mutability::Immutable)
5562                 } else if self.look_ahead(1, |t| t.is_keyword(keywords::Mut)) &&
5563                           isolated_self(self, 2) {
5564                     self.bump();
5565                     self.bump();
5566                     SelfKind::Region(None, Mutability::Mutable)
5567                 } else if self.look_ahead(1, |t| t.is_lifetime()) &&
5568                           isolated_self(self, 2) {
5569                     self.bump();
5570                     let lt = self.expect_lifetime();
5571                     SelfKind::Region(Some(lt), Mutability::Immutable)
5572                 } else if self.look_ahead(1, |t| t.is_lifetime()) &&
5573                           self.look_ahead(2, |t| t.is_keyword(keywords::Mut)) &&
5574                           isolated_self(self, 3) {
5575                     self.bump();
5576                     let lt = self.expect_lifetime();
5577                     self.bump();
5578                     SelfKind::Region(Some(lt), Mutability::Mutable)
5579                 } else {
5580                     return Ok(None);
5581                 }, expect_ident(self), self.prev_span)
5582             }
5583             token::BinOp(token::Star) => {
5584                 // *self
5585                 // *const self
5586                 // *mut self
5587                 // *not_self
5588                 // Emit special error for `self` cases.
5589                 (if isolated_self(self, 1) {
5590                     self.bump();
5591                     self.span_err(self.span, "cannot pass `self` by raw pointer");
5592                     SelfKind::Value(Mutability::Immutable)
5593                 } else if self.look_ahead(1, |t| t.is_mutability()) &&
5594                           isolated_self(self, 2) {
5595                     self.bump();
5596                     self.bump();
5597                     self.span_err(self.span, "cannot pass `self` by raw pointer");
5598                     SelfKind::Value(Mutability::Immutable)
5599                 } else {
5600                     return Ok(None);
5601                 }, expect_ident(self), self.prev_span)
5602             }
5603             token::Ident(..) => {
5604                 if isolated_self(self, 0) {
5605                     // self
5606                     // self: TYPE
5607                     let eself_ident = expect_ident(self);
5608                     let eself_hi = self.prev_span;
5609                     (if self.eat(&token::Colon) {
5610                         let ty = self.parse_ty()?;
5611                         SelfKind::Explicit(ty, Mutability::Immutable)
5612                     } else {
5613                         SelfKind::Value(Mutability::Immutable)
5614                     }, eself_ident, eself_hi)
5615                 } else if self.token.is_keyword(keywords::Mut) &&
5616                           isolated_self(self, 1) {
5617                     // mut self
5618                     // mut self: TYPE
5619                     self.bump();
5620                     let eself_ident = expect_ident(self);
5621                     let eself_hi = self.prev_span;
5622                     (if self.eat(&token::Colon) {
5623                         let ty = self.parse_ty()?;
5624                         SelfKind::Explicit(ty, Mutability::Mutable)
5625                     } else {
5626                         SelfKind::Value(Mutability::Mutable)
5627                     }, eself_ident, eself_hi)
5628                 } else {
5629                     return Ok(None);
5630                 }
5631             }
5632             _ => return Ok(None),
5633         };
5634
5635         let eself = source_map::respan(eself_lo.to(eself_hi), eself);
5636         Ok(Some(Arg::from_self(eself, eself_ident)))
5637     }
5638
5639     /// Parse the parameter list and result type of a function that may have a `self` parameter.
5640     fn parse_fn_decl_with_self<F>(&mut self, parse_arg_fn: F) -> PResult<'a, P<FnDecl>>
5641         where F: FnMut(&mut Parser<'a>) -> PResult<'a,  Arg>,
5642     {
5643         self.expect(&token::OpenDelim(token::Paren))?;
5644
5645         // Parse optional self argument
5646         let self_arg = self.parse_self_arg()?;
5647
5648         // Parse the rest of the function parameter list.
5649         let sep = SeqSep::trailing_allowed(token::Comma);
5650         let fn_inputs = if let Some(self_arg) = self_arg {
5651             if self.check(&token::CloseDelim(token::Paren)) {
5652                 vec![self_arg]
5653             } else if self.eat(&token::Comma) {
5654                 let mut fn_inputs = vec![self_arg];
5655                 fn_inputs.append(&mut self.parse_seq_to_before_end(
5656                     &token::CloseDelim(token::Paren), sep, parse_arg_fn)?
5657                 );
5658                 fn_inputs
5659             } else {
5660                 return self.unexpected();
5661             }
5662         } else {
5663             self.parse_seq_to_before_end(&token::CloseDelim(token::Paren), sep, parse_arg_fn)?
5664         };
5665
5666         // Parse closing paren and return type.
5667         self.expect(&token::CloseDelim(token::Paren))?;
5668         Ok(P(FnDecl {
5669             inputs: fn_inputs,
5670             output: self.parse_ret_ty(true)?,
5671             variadic: false
5672         }))
5673     }
5674
5675     // parse the |arg, arg| header on a lambda
5676     fn parse_fn_block_decl(&mut self) -> PResult<'a, P<FnDecl>> {
5677         let inputs_captures = {
5678             if self.eat(&token::OrOr) {
5679                 Vec::new()
5680             } else {
5681                 self.expect(&token::BinOp(token::Or))?;
5682                 let args = self.parse_seq_to_before_tokens(
5683                     &[&token::BinOp(token::Or), &token::OrOr],
5684                     SeqSep::trailing_allowed(token::Comma),
5685                     TokenExpectType::NoExpect,
5686                     |p| p.parse_fn_block_arg()
5687                 )?;
5688                 self.expect_or()?;
5689                 args
5690             }
5691         };
5692         let output = self.parse_ret_ty(true)?;
5693
5694         Ok(P(FnDecl {
5695             inputs: inputs_captures,
5696             output,
5697             variadic: false
5698         }))
5699     }
5700
5701     /// Parse the name and optional generic types of a function header.
5702     fn parse_fn_header(&mut self) -> PResult<'a, (Ident, ast::Generics)> {
5703         let id = self.parse_ident()?;
5704         let generics = self.parse_generics()?;
5705         Ok((id, generics))
5706     }
5707
5708     fn mk_item(&mut self, span: Span, ident: Ident, node: ItemKind, vis: Visibility,
5709                attrs: Vec<Attribute>) -> P<Item> {
5710         P(Item {
5711             ident,
5712             attrs,
5713             id: ast::DUMMY_NODE_ID,
5714             node,
5715             vis,
5716             span,
5717             tokens: None,
5718         })
5719     }
5720
5721     /// Parse an item-position function declaration.
5722     fn parse_item_fn(&mut self,
5723                      unsafety: Unsafety,
5724                      asyncness: IsAsync,
5725                      constness: Spanned<Constness>,
5726                      abi: Abi)
5727                      -> PResult<'a, ItemInfo> {
5728         let (ident, mut generics) = self.parse_fn_header()?;
5729         let decl = self.parse_fn_decl(false)?;
5730         generics.where_clause = self.parse_where_clause()?;
5731         let (inner_attrs, body) = self.parse_inner_attrs_and_block()?;
5732         let header = FnHeader { unsafety, asyncness, constness, abi };
5733         Ok((ident, ItemKind::Fn(decl, header, generics, body), Some(inner_attrs)))
5734     }
5735
5736     /// true if we are looking at `const ID`, false for things like `const fn` etc
5737     fn is_const_item(&mut self) -> bool {
5738         self.token.is_keyword(keywords::Const) &&
5739             !self.look_ahead(1, |t| t.is_keyword(keywords::Fn)) &&
5740             !self.look_ahead(1, |t| t.is_keyword(keywords::Unsafe))
5741     }
5742
5743     /// parses all the "front matter" for a `fn` declaration, up to
5744     /// and including the `fn` keyword:
5745     ///
5746     /// - `const fn`
5747     /// - `unsafe fn`
5748     /// - `const unsafe fn`
5749     /// - `extern fn`
5750     /// - etc
5751     fn parse_fn_front_matter(&mut self)
5752         -> PResult<'a, (
5753             Spanned<Constness>,
5754             Unsafety,
5755             IsAsync,
5756             Abi
5757         )>
5758     {
5759         let is_const_fn = self.eat_keyword(keywords::Const);
5760         let const_span = self.prev_span;
5761         let unsafety = self.parse_unsafety();
5762         let asyncness = self.parse_asyncness();
5763         let (constness, unsafety, abi) = if is_const_fn {
5764             (respan(const_span, Constness::Const), unsafety, Abi::Rust)
5765         } else {
5766             let abi = if self.eat_keyword(keywords::Extern) {
5767                 self.parse_opt_abi()?.unwrap_or(Abi::C)
5768             } else {
5769                 Abi::Rust
5770             };
5771             (respan(self.prev_span, Constness::NotConst), unsafety, abi)
5772         };
5773         self.expect_keyword(keywords::Fn)?;
5774         Ok((constness, unsafety, asyncness, abi))
5775     }
5776
5777     /// Parse an impl item.
5778     pub fn parse_impl_item(&mut self, at_end: &mut bool) -> PResult<'a, ImplItem> {
5779         maybe_whole!(self, NtImplItem, |x| x);
5780         let attrs = self.parse_outer_attributes()?;
5781         let (mut item, tokens) = self.collect_tokens(|this| {
5782             this.parse_impl_item_(at_end, attrs)
5783         })?;
5784
5785         // See `parse_item` for why this clause is here.
5786         if !item.attrs.iter().any(|attr| attr.style == AttrStyle::Inner) {
5787             item.tokens = Some(tokens);
5788         }
5789         Ok(item)
5790     }
5791
5792     fn parse_impl_item_(&mut self,
5793                         at_end: &mut bool,
5794                         mut attrs: Vec<Attribute>) -> PResult<'a, ImplItem> {
5795         let lo = self.span;
5796         let vis = self.parse_visibility(false)?;
5797         let defaultness = self.parse_defaultness();
5798         let (name, node, generics) = if let Some(type_) = self.eat_type() {
5799             let (name, alias, generics) = type_?;
5800             let kind = match alias {
5801                 AliasKind::Weak(typ) => ast::ImplItemKind::Type(typ),
5802                 AliasKind::Existential(bounds) => ast::ImplItemKind::Existential(bounds),
5803             };
5804             (name, kind, generics)
5805         } else if self.is_const_item() {
5806             // This parses the grammar:
5807             //     ImplItemConst = "const" Ident ":" Ty "=" Expr ";"
5808             self.expect_keyword(keywords::Const)?;
5809             let name = self.parse_ident()?;
5810             self.expect(&token::Colon)?;
5811             let typ = self.parse_ty()?;
5812             self.expect(&token::Eq)?;
5813             let expr = self.parse_expr()?;
5814             self.expect(&token::Semi)?;
5815             (name, ast::ImplItemKind::Const(typ, expr), ast::Generics::default())
5816         } else {
5817             let (name, inner_attrs, generics, node) = self.parse_impl_method(&vis, at_end)?;
5818             attrs.extend(inner_attrs);
5819             (name, node, generics)
5820         };
5821
5822         Ok(ImplItem {
5823             id: ast::DUMMY_NODE_ID,
5824             span: lo.to(self.prev_span),
5825             ident: name,
5826             vis,
5827             defaultness,
5828             attrs,
5829             generics,
5830             node,
5831             tokens: None,
5832         })
5833     }
5834
5835     fn complain_if_pub_macro(&mut self, vis: &VisibilityKind, sp: Span) {
5836         match *vis {
5837             VisibilityKind::Inherited => {}
5838             _ => {
5839                 let is_macro_rules: bool = match self.token {
5840                     token::Ident(sid, _) => sid.name == Symbol::intern("macro_rules"),
5841                     _ => false,
5842                 };
5843                 let mut err = if is_macro_rules {
5844                     let mut err = self.diagnostic()
5845                         .struct_span_err(sp, "can't qualify macro_rules invocation with `pub`");
5846                     err.span_suggestion_with_applicability(
5847                         sp,
5848                         "try exporting the macro",
5849                         "#[macro_export]".to_owned(),
5850                         Applicability::MaybeIncorrect // speculative
5851                     );
5852                     err
5853                 } else {
5854                     let mut err = self.diagnostic()
5855                         .struct_span_err(sp, "can't qualify macro invocation with `pub`");
5856                     err.help("try adjusting the macro to put `pub` inside the invocation");
5857                     err
5858                 };
5859                 err.emit();
5860             }
5861         }
5862     }
5863
5864     fn missing_assoc_item_kind_err(&mut self, item_type: &str, prev_span: Span)
5865                                    -> DiagnosticBuilder<'a>
5866     {
5867         let expected_kinds = if item_type == "extern" {
5868             "missing `fn`, `type`, or `static`"
5869         } else {
5870             "missing `fn`, `type`, or `const`"
5871         };
5872
5873         // Given this code `path(`, it seems like this is not
5874         // setting the visibility of a macro invocation, but rather
5875         // a mistyped method declaration.
5876         // Create a diagnostic pointing out that `fn` is missing.
5877         //
5878         // x |     pub path(&self) {
5879         //   |        ^ missing `fn`, `type`, or `const`
5880         //     pub  path(
5881         //        ^^ `sp` below will point to this
5882         let sp = prev_span.between(self.prev_span);
5883         let mut err = self.diagnostic().struct_span_err(
5884             sp,
5885             &format!("{} for {}-item declaration",
5886                      expected_kinds, item_type));
5887         err.span_label(sp, expected_kinds);
5888         err
5889     }
5890
5891     /// Parse a method or a macro invocation in a trait impl.
5892     fn parse_impl_method(&mut self, vis: &Visibility, at_end: &mut bool)
5893                          -> PResult<'a, (Ident, Vec<Attribute>, ast::Generics,
5894                              ast::ImplItemKind)> {
5895         // code copied from parse_macro_use_or_failure... abstraction!
5896         if let Some(mac) = self.parse_assoc_macro_invoc("impl", Some(vis), at_end)? {
5897             // method macro
5898             Ok((keywords::Invalid.ident(), vec![], ast::Generics::default(),
5899                 ast::ImplItemKind::Macro(mac)))
5900         } else {
5901             let (constness, unsafety, asyncness, abi) = self.parse_fn_front_matter()?;
5902             let ident = self.parse_ident()?;
5903             let mut generics = self.parse_generics()?;
5904             let decl = self.parse_fn_decl_with_self(|p| p.parse_arg())?;
5905             generics.where_clause = self.parse_where_clause()?;
5906             *at_end = true;
5907             let (inner_attrs, body) = self.parse_inner_attrs_and_block()?;
5908             let header = ast::FnHeader { abi, unsafety, constness, asyncness };
5909             Ok((ident, inner_attrs, generics, ast::ImplItemKind::Method(
5910                 ast::MethodSig { header, decl },
5911                 body
5912             )))
5913         }
5914     }
5915
5916     /// Parse `trait Foo { ... }` or `trait Foo = Bar;`
5917     fn parse_item_trait(&mut self, is_auto: IsAuto, unsafety: Unsafety) -> PResult<'a, ItemInfo> {
5918         let ident = self.parse_ident()?;
5919         let mut tps = self.parse_generics()?;
5920
5921         // Parse optional colon and supertrait bounds.
5922         let bounds = if self.eat(&token::Colon) {
5923             self.parse_generic_bounds()?
5924         } else {
5925             Vec::new()
5926         };
5927
5928         if self.eat(&token::Eq) {
5929             // it's a trait alias
5930             let bounds = self.parse_generic_bounds()?;
5931             tps.where_clause = self.parse_where_clause()?;
5932             self.expect(&token::Semi)?;
5933             if unsafety != Unsafety::Normal {
5934                 self.span_err(self.prev_span, "trait aliases cannot be unsafe");
5935             }
5936             Ok((ident, ItemKind::TraitAlias(tps, bounds), None))
5937         } else {
5938             // it's a normal trait
5939             tps.where_clause = self.parse_where_clause()?;
5940             self.expect(&token::OpenDelim(token::Brace))?;
5941             let mut trait_items = vec![];
5942             while !self.eat(&token::CloseDelim(token::Brace)) {
5943                 let mut at_end = false;
5944                 match self.parse_trait_item(&mut at_end) {
5945                     Ok(item) => trait_items.push(item),
5946                     Err(mut e) => {
5947                         e.emit();
5948                         if !at_end {
5949                             self.recover_stmt_(SemiColonMode::Break, BlockMode::Break);
5950                         }
5951                     }
5952                 }
5953             }
5954             Ok((ident, ItemKind::Trait(is_auto, unsafety, tps, bounds, trait_items), None))
5955         }
5956     }
5957
5958     fn choose_generics_over_qpath(&self) -> bool {
5959         // There's an ambiguity between generic parameters and qualified paths in impls.
5960         // If we see `<` it may start both, so we have to inspect some following tokens.
5961         // The following combinations can only start generics,
5962         // but not qualified paths (with one exception):
5963         //     `<` `>` - empty generic parameters
5964         //     `<` `#` - generic parameters with attributes
5965         //     `<` (LIFETIME|IDENT) `>` - single generic parameter
5966         //     `<` (LIFETIME|IDENT) `,` - first generic parameter in a list
5967         //     `<` (LIFETIME|IDENT) `:` - generic parameter with bounds
5968         //     `<` (LIFETIME|IDENT) `=` - generic parameter with a default
5969         // The only truly ambiguous case is
5970         //     `<` IDENT `>` `::` IDENT ...
5971         // we disambiguate it in favor of generics (`impl<T> ::absolute::Path<T> { ... }`)
5972         // because this is what almost always expected in practice, qualified paths in impls
5973         // (`impl <Type>::AssocTy { ... }`) aren't even allowed by type checker at the moment.
5974         self.token == token::Lt &&
5975             (self.look_ahead(1, |t| t == &token::Pound || t == &token::Gt) ||
5976              self.look_ahead(1, |t| t.is_lifetime() || t.is_ident()) &&
5977                 self.look_ahead(2, |t| t == &token::Gt || t == &token::Comma ||
5978                                        t == &token::Colon || t == &token::Eq))
5979     }
5980
5981     fn parse_impl_body(&mut self) -> PResult<'a, (Vec<ImplItem>, Vec<Attribute>)> {
5982         self.expect(&token::OpenDelim(token::Brace))?;
5983         let attrs = self.parse_inner_attributes()?;
5984
5985         let mut impl_items = Vec::new();
5986         while !self.eat(&token::CloseDelim(token::Brace)) {
5987             let mut at_end = false;
5988             match self.parse_impl_item(&mut at_end) {
5989                 Ok(impl_item) => impl_items.push(impl_item),
5990                 Err(mut err) => {
5991                     err.emit();
5992                     if !at_end {
5993                         self.recover_stmt_(SemiColonMode::Break, BlockMode::Break);
5994                     }
5995                 }
5996             }
5997         }
5998         Ok((impl_items, attrs))
5999     }
6000
6001     /// Parses an implementation item, `impl` keyword is already parsed.
6002     ///    impl<'a, T> TYPE { /* impl items */ }
6003     ///    impl<'a, T> TRAIT for TYPE { /* impl items */ }
6004     ///    impl<'a, T> !TRAIT for TYPE { /* impl items */ }
6005     /// We actually parse slightly more relaxed grammar for better error reporting and recovery.
6006     ///     `impl` GENERICS `!`? TYPE `for`? (TYPE | `..`) (`where` PREDICATES)? `{` BODY `}`
6007     ///     `impl` GENERICS `!`? TYPE (`where` PREDICATES)? `{` BODY `}`
6008     fn parse_item_impl(&mut self, unsafety: Unsafety, defaultness: Defaultness)
6009                        -> PResult<'a, ItemInfo> {
6010         // First, parse generic parameters if necessary.
6011         let mut generics = if self.choose_generics_over_qpath() {
6012             self.parse_generics()?
6013         } else {
6014             ast::Generics::default()
6015         };
6016
6017         // Disambiguate `impl !Trait for Type { ... }` and `impl ! { ... }` for the never type.
6018         let polarity = if self.check(&token::Not) && self.look_ahead(1, |t| t.can_begin_type()) {
6019             self.bump(); // `!`
6020             ast::ImplPolarity::Negative
6021         } else {
6022             ast::ImplPolarity::Positive
6023         };
6024
6025         // Parse both types and traits as a type, then reinterpret if necessary.
6026         let ty_first = self.parse_ty()?;
6027
6028         // If `for` is missing we try to recover.
6029         let has_for = self.eat_keyword(keywords::For);
6030         let missing_for_span = self.prev_span.between(self.span);
6031
6032         let ty_second = if self.token == token::DotDot {
6033             // We need to report this error after `cfg` expansion for compatibility reasons
6034             self.bump(); // `..`, do not add it to expected tokens
6035             Some(P(Ty { node: TyKind::Err, span: self.prev_span, id: ast::DUMMY_NODE_ID }))
6036         } else if has_for || self.token.can_begin_type() {
6037             Some(self.parse_ty()?)
6038         } else {
6039             None
6040         };
6041
6042         generics.where_clause = self.parse_where_clause()?;
6043
6044         let (impl_items, attrs) = self.parse_impl_body()?;
6045
6046         let item_kind = match ty_second {
6047             Some(ty_second) => {
6048                 // impl Trait for Type
6049                 if !has_for {
6050                     self.span_err(missing_for_span, "missing `for` in a trait impl");
6051                 }
6052
6053                 let ty_first = ty_first.into_inner();
6054                 let path = match ty_first.node {
6055                     // This notably includes paths passed through `ty` macro fragments (#46438).
6056                     TyKind::Path(None, path) => path,
6057                     _ => {
6058                         self.span_err(ty_first.span, "expected a trait, found type");
6059                         ast::Path::from_ident(Ident::new(keywords::Invalid.name(), ty_first.span))
6060                     }
6061                 };
6062                 let trait_ref = TraitRef { path, ref_id: ty_first.id };
6063
6064                 ItemKind::Impl(unsafety, polarity, defaultness,
6065                                generics, Some(trait_ref), ty_second, impl_items)
6066             }
6067             None => {
6068                 // impl Type
6069                 ItemKind::Impl(unsafety, polarity, defaultness,
6070                                generics, None, ty_first, impl_items)
6071             }
6072         };
6073
6074         Ok((keywords::Invalid.ident(), item_kind, Some(attrs)))
6075     }
6076
6077     fn parse_late_bound_lifetime_defs(&mut self) -> PResult<'a, Vec<GenericParam>> {
6078         if self.eat_keyword(keywords::For) {
6079             self.expect_lt()?;
6080             let params = self.parse_generic_params()?;
6081             self.expect_gt()?;
6082             // We rely on AST validation to rule out invalid cases: There must not be type
6083             // parameters, and the lifetime parameters must not have bounds.
6084             Ok(params)
6085         } else {
6086             Ok(Vec::new())
6087         }
6088     }
6089
6090     /// Parse struct Foo { ... }
6091     fn parse_item_struct(&mut self) -> PResult<'a, ItemInfo> {
6092         let class_name = self.parse_ident()?;
6093
6094         let mut generics = self.parse_generics()?;
6095
6096         // There is a special case worth noting here, as reported in issue #17904.
6097         // If we are parsing a tuple struct it is the case that the where clause
6098         // should follow the field list. Like so:
6099         //
6100         // struct Foo<T>(T) where T: Copy;
6101         //
6102         // If we are parsing a normal record-style struct it is the case
6103         // that the where clause comes before the body, and after the generics.
6104         // So if we look ahead and see a brace or a where-clause we begin
6105         // parsing a record style struct.
6106         //
6107         // Otherwise if we look ahead and see a paren we parse a tuple-style
6108         // struct.
6109
6110         let vdata = if self.token.is_keyword(keywords::Where) {
6111             generics.where_clause = self.parse_where_clause()?;
6112             if self.eat(&token::Semi) {
6113                 // If we see a: `struct Foo<T> where T: Copy;` style decl.
6114                 VariantData::Unit(ast::DUMMY_NODE_ID)
6115             } else {
6116                 // If we see: `struct Foo<T> where T: Copy { ... }`
6117                 VariantData::Struct(self.parse_record_struct_body()?, ast::DUMMY_NODE_ID)
6118             }
6119         // No `where` so: `struct Foo<T>;`
6120         } else if self.eat(&token::Semi) {
6121             VariantData::Unit(ast::DUMMY_NODE_ID)
6122         // Record-style struct definition
6123         } else if self.token == token::OpenDelim(token::Brace) {
6124             VariantData::Struct(self.parse_record_struct_body()?, ast::DUMMY_NODE_ID)
6125         // Tuple-style struct definition with optional where-clause.
6126         } else if self.token == token::OpenDelim(token::Paren) {
6127             let body = VariantData::Tuple(self.parse_tuple_struct_body()?, ast::DUMMY_NODE_ID);
6128             generics.where_clause = self.parse_where_clause()?;
6129             self.expect(&token::Semi)?;
6130             body
6131         } else {
6132             let token_str = self.this_token_descr();
6133             let mut err = self.fatal(&format!(
6134                 "expected `where`, `{{`, `(`, or `;` after struct name, found {}",
6135                 token_str
6136             ));
6137             err.span_label(self.span, "expected `where`, `{`, `(`, or `;` after struct name");
6138             return Err(err);
6139         };
6140
6141         Ok((class_name, ItemKind::Struct(vdata, generics), None))
6142     }
6143
6144     /// Parse union Foo { ... }
6145     fn parse_item_union(&mut self) -> PResult<'a, ItemInfo> {
6146         let class_name = self.parse_ident()?;
6147
6148         let mut generics = self.parse_generics()?;
6149
6150         let vdata = if self.token.is_keyword(keywords::Where) {
6151             generics.where_clause = self.parse_where_clause()?;
6152             VariantData::Struct(self.parse_record_struct_body()?, ast::DUMMY_NODE_ID)
6153         } else if self.token == token::OpenDelim(token::Brace) {
6154             VariantData::Struct(self.parse_record_struct_body()?, ast::DUMMY_NODE_ID)
6155         } else {
6156             let token_str = self.this_token_descr();
6157             let mut err = self.fatal(&format!(
6158                 "expected `where` or `{{` after union name, found {}", token_str));
6159             err.span_label(self.span, "expected `where` or `{` after union name");
6160             return Err(err);
6161         };
6162
6163         Ok((class_name, ItemKind::Union(vdata, generics), None))
6164     }
6165
6166     fn consume_block(&mut self, delim: token::DelimToken) {
6167         let mut brace_depth = 0;
6168         loop {
6169             if self.eat(&token::OpenDelim(delim)) {
6170                 brace_depth += 1;
6171             } else if self.eat(&token::CloseDelim(delim)) {
6172                 if brace_depth == 0 {
6173                     return;
6174                 } else {
6175                     brace_depth -= 1;
6176                     continue;
6177                 }
6178             } else if self.token == token::Eof || self.eat(&token::CloseDelim(token::NoDelim)) {
6179                 return;
6180             } else {
6181                 self.bump();
6182             }
6183         }
6184     }
6185
6186     fn parse_record_struct_body(&mut self) -> PResult<'a, Vec<StructField>> {
6187         let mut fields = Vec::new();
6188         if self.eat(&token::OpenDelim(token::Brace)) {
6189             while self.token != token::CloseDelim(token::Brace) {
6190                 let field = self.parse_struct_decl_field().map_err(|e| {
6191                     self.recover_stmt();
6192                     e
6193                 });
6194                 match field {
6195                     Ok(field) => fields.push(field),
6196                     Err(mut err) => {
6197                         err.emit();
6198                     }
6199                 }
6200             }
6201             self.eat(&token::CloseDelim(token::Brace));
6202         } else {
6203             let token_str = self.this_token_descr();
6204             let mut err = self.fatal(&format!(
6205                     "expected `where`, or `{{` after struct name, found {}", token_str));
6206             err.span_label(self.span, "expected `where`, or `{` after struct name");
6207             return Err(err);
6208         }
6209
6210         Ok(fields)
6211     }
6212
6213     fn parse_tuple_struct_body(&mut self) -> PResult<'a, Vec<StructField>> {
6214         // This is the case where we find `struct Foo<T>(T) where T: Copy;`
6215         // Unit like structs are handled in parse_item_struct function
6216         let fields = self.parse_unspanned_seq(
6217             &token::OpenDelim(token::Paren),
6218             &token::CloseDelim(token::Paren),
6219             SeqSep::trailing_allowed(token::Comma),
6220             |p| {
6221                 let attrs = p.parse_outer_attributes()?;
6222                 let lo = p.span;
6223                 let vis = p.parse_visibility(true)?;
6224                 let ty = p.parse_ty()?;
6225                 Ok(StructField {
6226                     span: lo.to(ty.span),
6227                     vis,
6228                     ident: None,
6229                     id: ast::DUMMY_NODE_ID,
6230                     ty,
6231                     attrs,
6232                 })
6233             })?;
6234
6235         Ok(fields)
6236     }
6237
6238     /// Parse a structure field declaration
6239     fn parse_single_struct_field(&mut self,
6240                                      lo: Span,
6241                                      vis: Visibility,
6242                                      attrs: Vec<Attribute> )
6243                                      -> PResult<'a, StructField> {
6244         let mut seen_comma: bool = false;
6245         let a_var = self.parse_name_and_ty(lo, vis, attrs)?;
6246         if self.token == token::Comma {
6247             seen_comma = true;
6248         }
6249         match self.token {
6250             token::Comma => {
6251                 self.bump();
6252             }
6253             token::CloseDelim(token::Brace) => {}
6254             token::DocComment(_) => {
6255                 let previous_span = self.prev_span;
6256                 let mut err = self.span_fatal_err(self.span, Error::UselessDocComment);
6257                 self.bump(); // consume the doc comment
6258                 let comma_after_doc_seen = self.eat(&token::Comma);
6259                 // `seen_comma` is always false, because we are inside doc block
6260                 // condition is here to make code more readable
6261                 if seen_comma == false && comma_after_doc_seen == true {
6262                     seen_comma = true;
6263                 }
6264                 if comma_after_doc_seen || self.token == token::CloseDelim(token::Brace) {
6265                     err.emit();
6266                 } else {
6267                     if seen_comma == false {
6268                         let sp = self.sess.source_map().next_point(previous_span);
6269                         err.span_suggestion_with_applicability(
6270                             sp,
6271                             "missing comma here",
6272                             ",".into(),
6273                             Applicability::MachineApplicable
6274                         );
6275                     }
6276                     return Err(err);
6277                 }
6278             }
6279             _ => {
6280                 let sp = self.sess.source_map().next_point(self.prev_span);
6281                 let mut err = self.struct_span_err(sp, &format!("expected `,`, or `}}`, found {}",
6282                                                                 self.this_token_descr()));
6283                 if self.token.is_ident() {
6284                     // This is likely another field; emit the diagnostic and keep going
6285                     err.span_suggestion_with_applicability(
6286                         sp,
6287                         "try adding a comma",
6288                         ",".into(),
6289                         Applicability::MachineApplicable,
6290                     );
6291                     err.emit();
6292                 } else {
6293                     return Err(err)
6294                 }
6295             }
6296         }
6297         Ok(a_var)
6298     }
6299
6300     /// Parse an element of a struct definition
6301     fn parse_struct_decl_field(&mut self) -> PResult<'a, StructField> {
6302         let attrs = self.parse_outer_attributes()?;
6303         let lo = self.span;
6304         let vis = self.parse_visibility(false)?;
6305         self.parse_single_struct_field(lo, vis, attrs)
6306     }
6307
6308     /// Parse `pub`, `pub(crate)` and `pub(in path)` plus shortcuts `crate` for `pub(crate)`,
6309     /// `pub(self)` for `pub(in self)` and `pub(super)` for `pub(in super)`.
6310     /// If the following element can't be a tuple (i.e., it's a function definition,
6311     /// it's not a tuple struct field) and the contents within the parens
6312     /// isn't valid, emit a proper diagnostic.
6313     pub fn parse_visibility(&mut self, can_take_tuple: bool) -> PResult<'a, Visibility> {
6314         maybe_whole!(self, NtVis, |x| x);
6315
6316         self.expected_tokens.push(TokenType::Keyword(keywords::Crate));
6317         if self.is_crate_vis() {
6318             self.bump(); // `crate`
6319             return Ok(respan(self.prev_span, VisibilityKind::Crate(CrateSugar::JustCrate)));
6320         }
6321
6322         if !self.eat_keyword(keywords::Pub) {
6323             // We need a span for our `Spanned<VisibilityKind>`, but there's inherently no
6324             // keyword to grab a span from for inherited visibility; an empty span at the
6325             // beginning of the current token would seem to be the "Schelling span".
6326             return Ok(respan(self.span.shrink_to_lo(), VisibilityKind::Inherited))
6327         }
6328         let lo = self.prev_span;
6329
6330         if self.check(&token::OpenDelim(token::Paren)) {
6331             // We don't `self.bump()` the `(` yet because this might be a struct definition where
6332             // `()` or a tuple might be allowed. For example, `struct Struct(pub (), pub (usize));`.
6333             // Because of this, we only `bump` the `(` if we're assured it is appropriate to do so
6334             // by the following tokens.
6335             if self.look_ahead(1, |t| t.is_keyword(keywords::Crate)) {
6336                 // `pub(crate)`
6337                 self.bump(); // `(`
6338                 self.bump(); // `crate`
6339                 self.expect(&token::CloseDelim(token::Paren))?; // `)`
6340                 let vis = respan(
6341                     lo.to(self.prev_span),
6342                     VisibilityKind::Crate(CrateSugar::PubCrate),
6343                 );
6344                 return Ok(vis)
6345             } else if self.look_ahead(1, |t| t.is_keyword(keywords::In)) {
6346                 // `pub(in path)`
6347                 self.bump(); // `(`
6348                 self.bump(); // `in`
6349                 let path = self.parse_path(PathStyle::Mod)?; // `path`
6350                 self.expect(&token::CloseDelim(token::Paren))?; // `)`
6351                 let vis = respan(lo.to(self.prev_span), VisibilityKind::Restricted {
6352                     path: P(path),
6353                     id: ast::DUMMY_NODE_ID,
6354                 });
6355                 return Ok(vis)
6356             } else if self.look_ahead(2, |t| t == &token::CloseDelim(token::Paren)) &&
6357                       self.look_ahead(1, |t| t.is_keyword(keywords::Super) ||
6358                                              t.is_keyword(keywords::SelfLower))
6359             {
6360                 // `pub(self)` or `pub(super)`
6361                 self.bump(); // `(`
6362                 let path = self.parse_path(PathStyle::Mod)?; // `super`/`self`
6363                 self.expect(&token::CloseDelim(token::Paren))?; // `)`
6364                 let vis = respan(lo.to(self.prev_span), VisibilityKind::Restricted {
6365                     path: P(path),
6366                     id: ast::DUMMY_NODE_ID,
6367                 });
6368                 return Ok(vis)
6369             } else if !can_take_tuple {  // Provide this diagnostic if this is not a tuple struct
6370                 // `pub(something) fn ...` or `struct X { pub(something) y: Z }`
6371                 self.bump(); // `(`
6372                 let msg = "incorrect visibility restriction";
6373                 let suggestion = r##"some possible visibility restrictions are:
6374 `pub(crate)`: visible only on the current crate
6375 `pub(super)`: visible only in the current module's parent
6376 `pub(in path::to::module)`: visible only on the specified path"##;
6377                 let path = self.parse_path(PathStyle::Mod)?;
6378                 let sp = self.prev_span;
6379                 let help_msg = format!("make this visible only to module `{}` with `in`", path);
6380                 self.expect(&token::CloseDelim(token::Paren))?;  // `)`
6381                 let mut err = struct_span_err!(self.sess.span_diagnostic, sp, E0704, "{}", msg);
6382                 err.help(suggestion);
6383                 err.span_suggestion_with_applicability(
6384                     sp, &help_msg, format!("in {}", path), Applicability::MachineApplicable
6385                 );
6386                 err.emit();  // emit diagnostic, but continue with public visibility
6387             }
6388         }
6389
6390         Ok(respan(lo, VisibilityKind::Public))
6391     }
6392
6393     /// Parse defaultness: `default` or nothing.
6394     fn parse_defaultness(&mut self) -> Defaultness {
6395         // `pub` is included for better error messages
6396         if self.check_keyword(keywords::Default) &&
6397            self.look_ahead(1, |t| t.is_keyword(keywords::Impl) ||
6398                                   t.is_keyword(keywords::Const) ||
6399                                   t.is_keyword(keywords::Fn) ||
6400                                   t.is_keyword(keywords::Unsafe) ||
6401                                   t.is_keyword(keywords::Extern) ||
6402                                   t.is_keyword(keywords::Type) ||
6403                                   t.is_keyword(keywords::Pub)) {
6404             self.bump(); // `default`
6405             Defaultness::Default
6406         } else {
6407             Defaultness::Final
6408         }
6409     }
6410
6411     /// Given a termination token, parse all of the items in a module
6412     fn parse_mod_items(&mut self, term: &token::Token, inner_lo: Span) -> PResult<'a, Mod> {
6413         let mut items = vec![];
6414         while let Some(item) = self.parse_item()? {
6415             items.push(item);
6416         }
6417
6418         if !self.eat(term) {
6419             let token_str = self.this_token_descr();
6420             let mut err = self.fatal(&format!("expected item, found {}", token_str));
6421             if self.token == token::Semi {
6422                 let msg = "consider removing this semicolon";
6423                 err.span_suggestion_short_with_applicability(
6424                     self.span, msg, String::new(), Applicability::MachineApplicable
6425                 );
6426                 if !items.is_empty() {  // Issue #51603
6427                     let previous_item = &items[items.len()-1];
6428                     let previous_item_kind_name = match previous_item.node {
6429                         // say "braced struct" because tuple-structs and
6430                         // braceless-empty-struct declarations do take a semicolon
6431                         ItemKind::Struct(..) => Some("braced struct"),
6432                         ItemKind::Enum(..) => Some("enum"),
6433                         ItemKind::Trait(..) => Some("trait"),
6434                         ItemKind::Union(..) => Some("union"),
6435                         _ => None,
6436                     };
6437                     if let Some(name) = previous_item_kind_name {
6438                         err.help(&format!("{} declarations are not followed by a semicolon",
6439                                           name));
6440                     }
6441                 }
6442             } else {
6443                 err.span_label(self.span, "expected item");
6444             }
6445             return Err(err);
6446         }
6447
6448         let hi = if self.span.is_dummy() {
6449             inner_lo
6450         } else {
6451             self.prev_span
6452         };
6453
6454         Ok(ast::Mod {
6455             inner: inner_lo.to(hi),
6456             items,
6457             inline: true
6458         })
6459     }
6460
6461     fn parse_item_const(&mut self, m: Option<Mutability>) -> PResult<'a, ItemInfo> {
6462         let id = if m.is_none() { self.parse_ident_or_underscore() } else { self.parse_ident() }?;
6463         self.expect(&token::Colon)?;
6464         let ty = self.parse_ty()?;
6465         self.expect(&token::Eq)?;
6466         let e = self.parse_expr()?;
6467         self.expect(&token::Semi)?;
6468         let item = match m {
6469             Some(m) => ItemKind::Static(ty, m, e),
6470             None => ItemKind::Const(ty, e),
6471         };
6472         Ok((id, item, None))
6473     }
6474
6475     /// Parse a `mod <foo> { ... }` or `mod <foo>;` item
6476     fn parse_item_mod(&mut self, outer_attrs: &[Attribute]) -> PResult<'a, ItemInfo> {
6477         let (in_cfg, outer_attrs) = {
6478             let mut strip_unconfigured = ::config::StripUnconfigured {
6479                 sess: self.sess,
6480                 features: None, // don't perform gated feature checking
6481             };
6482             let outer_attrs = strip_unconfigured.process_cfg_attrs(outer_attrs.to_owned());
6483             (!self.cfg_mods || strip_unconfigured.in_cfg(&outer_attrs), outer_attrs)
6484         };
6485
6486         let id_span = self.span;
6487         let id = self.parse_ident()?;
6488         if self.eat(&token::Semi) {
6489             if in_cfg && self.recurse_into_file_modules {
6490                 // This mod is in an external file. Let's go get it!
6491                 let ModulePathSuccess { path, directory_ownership, warn } =
6492                     self.submod_path(id, &outer_attrs, id_span)?;
6493                 let (module, mut attrs) =
6494                     self.eval_src_mod(path, directory_ownership, id.to_string(), id_span)?;
6495                 // Record that we fetched the mod from an external file
6496                 if warn {
6497                     let attr = Attribute {
6498                         id: attr::mk_attr_id(),
6499                         style: ast::AttrStyle::Outer,
6500                         path: ast::Path::from_ident(Ident::from_str("warn_directory_ownership")),
6501                         tokens: TokenStream::empty(),
6502                         is_sugared_doc: false,
6503                         span: syntax_pos::DUMMY_SP,
6504                     };
6505                     attr::mark_known(&attr);
6506                     attrs.push(attr);
6507                 }
6508                 Ok((id, ItemKind::Mod(module), Some(attrs)))
6509             } else {
6510                 let placeholder = ast::Mod {
6511                     inner: syntax_pos::DUMMY_SP,
6512                     items: Vec::new(),
6513                     inline: false
6514                 };
6515                 Ok((id, ItemKind::Mod(placeholder), None))
6516             }
6517         } else {
6518             let old_directory = self.directory.clone();
6519             self.push_directory(id, &outer_attrs);
6520
6521             self.expect(&token::OpenDelim(token::Brace))?;
6522             let mod_inner_lo = self.span;
6523             let attrs = self.parse_inner_attributes()?;
6524             let module = self.parse_mod_items(&token::CloseDelim(token::Brace), mod_inner_lo)?;
6525
6526             self.directory = old_directory;
6527             Ok((id, ItemKind::Mod(module), Some(attrs)))
6528         }
6529     }
6530
6531     fn push_directory(&mut self, id: Ident, attrs: &[Attribute]) {
6532         if let Some(path) = attr::first_attr_value_str_by_name(attrs, "path") {
6533             self.directory.path.to_mut().push(&path.as_str());
6534             self.directory.ownership = DirectoryOwnership::Owned { relative: None };
6535         } else {
6536             // We have to push on the current module name in the case of relative
6537             // paths in order to ensure that any additional module paths from inline
6538             // `mod x { ... }` come after the relative extension.
6539             //
6540             // For example, a `mod z { ... }` inside `x/y.rs` should set the current
6541             // directory path to `/x/y/z`, not `/x/z` with a relative offset of `y`.
6542             if let DirectoryOwnership::Owned { relative } = &mut self.directory.ownership {
6543                 if let Some(ident) = relative.take() { // remove the relative offset
6544                     self.directory.path.to_mut().push(ident.as_str());
6545                 }
6546             }
6547             self.directory.path.to_mut().push(&id.as_str());
6548         }
6549     }
6550
6551     pub fn submod_path_from_attr(attrs: &[Attribute], dir_path: &Path) -> Option<PathBuf> {
6552         if let Some(s) = attr::first_attr_value_str_by_name(attrs, "path") {
6553             let s = s.as_str();
6554
6555             // On windows, the base path might have the form
6556             // `\\?\foo\bar` in which case it does not tolerate
6557             // mixed `/` and `\` separators, so canonicalize
6558             // `/` to `\`.
6559             #[cfg(windows)]
6560             let s = s.replace("/", "\\");
6561             Some(dir_path.join(s))
6562         } else {
6563             None
6564         }
6565     }
6566
6567     /// Returns either a path to a module, or .
6568     pub fn default_submod_path(
6569         id: ast::Ident,
6570         relative: Option<ast::Ident>,
6571         dir_path: &Path,
6572         source_map: &SourceMap) -> ModulePath
6573     {
6574         // If we're in a foo.rs file instead of a mod.rs file,
6575         // we need to look for submodules in
6576         // `./foo/<id>.rs` and `./foo/<id>/mod.rs` rather than
6577         // `./<id>.rs` and `./<id>/mod.rs`.
6578         let relative_prefix_string;
6579         let relative_prefix = if let Some(ident) = relative {
6580             relative_prefix_string = format!("{}{}", ident.as_str(), path::MAIN_SEPARATOR);
6581             &relative_prefix_string
6582         } else {
6583             ""
6584         };
6585
6586         let mod_name = id.to_string();
6587         let default_path_str = format!("{}{}.rs", relative_prefix, mod_name);
6588         let secondary_path_str = format!("{}{}{}mod.rs",
6589                                          relative_prefix, mod_name, path::MAIN_SEPARATOR);
6590         let default_path = dir_path.join(&default_path_str);
6591         let secondary_path = dir_path.join(&secondary_path_str);
6592         let default_exists = source_map.file_exists(&default_path);
6593         let secondary_exists = source_map.file_exists(&secondary_path);
6594
6595         let result = match (default_exists, secondary_exists) {
6596             (true, false) => Ok(ModulePathSuccess {
6597                 path: default_path,
6598                 directory_ownership: DirectoryOwnership::Owned {
6599                     relative: Some(id),
6600                 },
6601                 warn: false,
6602             }),
6603             (false, true) => Ok(ModulePathSuccess {
6604                 path: secondary_path,
6605                 directory_ownership: DirectoryOwnership::Owned {
6606                     relative: None,
6607                 },
6608                 warn: false,
6609             }),
6610             (false, false) => Err(Error::FileNotFoundForModule {
6611                 mod_name: mod_name.clone(),
6612                 default_path: default_path_str,
6613                 secondary_path: secondary_path_str,
6614                 dir_path: dir_path.display().to_string(),
6615             }),
6616             (true, true) => Err(Error::DuplicatePaths {
6617                 mod_name: mod_name.clone(),
6618                 default_path: default_path_str,
6619                 secondary_path: secondary_path_str,
6620             }),
6621         };
6622
6623         ModulePath {
6624             name: mod_name,
6625             path_exists: default_exists || secondary_exists,
6626             result,
6627         }
6628     }
6629
6630     fn submod_path(&mut self,
6631                    id: ast::Ident,
6632                    outer_attrs: &[Attribute],
6633                    id_sp: Span)
6634                    -> PResult<'a, ModulePathSuccess> {
6635         if let Some(path) = Parser::submod_path_from_attr(outer_attrs, &self.directory.path) {
6636             return Ok(ModulePathSuccess {
6637                 directory_ownership: match path.file_name().and_then(|s| s.to_str()) {
6638                     // All `#[path]` files are treated as though they are a `mod.rs` file.
6639                     // This means that `mod foo;` declarations inside `#[path]`-included
6640                     // files are siblings,
6641                     //
6642                     // Note that this will produce weirdness when a file named `foo.rs` is
6643                     // `#[path]` included and contains a `mod foo;` declaration.
6644                     // If you encounter this, it's your own darn fault :P
6645                     Some(_) => DirectoryOwnership::Owned { relative: None },
6646                     _ => DirectoryOwnership::UnownedViaMod(true),
6647                 },
6648                 path,
6649                 warn: false,
6650             });
6651         }
6652
6653         let relative = match self.directory.ownership {
6654             DirectoryOwnership::Owned { relative } => relative,
6655             DirectoryOwnership::UnownedViaBlock |
6656             DirectoryOwnership::UnownedViaMod(_) => None,
6657         };
6658         let paths = Parser::default_submod_path(
6659                         id, relative, &self.directory.path, self.sess.source_map());
6660
6661         match self.directory.ownership {
6662             DirectoryOwnership::Owned { .. } => {
6663                 paths.result.map_err(|err| self.span_fatal_err(id_sp, err))
6664             },
6665             DirectoryOwnership::UnownedViaBlock => {
6666                 let msg =
6667                     "Cannot declare a non-inline module inside a block \
6668                     unless it has a path attribute";
6669                 let mut err = self.diagnostic().struct_span_err(id_sp, msg);
6670                 if paths.path_exists {
6671                     let msg = format!("Maybe `use` the module `{}` instead of redeclaring it",
6672                                       paths.name);
6673                     err.span_note(id_sp, &msg);
6674                 }
6675                 Err(err)
6676             }
6677             DirectoryOwnership::UnownedViaMod(warn) => {
6678                 if warn {
6679                     if let Ok(result) = paths.result {
6680                         return Ok(ModulePathSuccess { warn: true, ..result });
6681                     }
6682                 }
6683                 let mut err = self.diagnostic().struct_span_err(id_sp,
6684                     "cannot declare a new module at this location");
6685                 if !id_sp.is_dummy() {
6686                     let src_path = self.sess.source_map().span_to_filename(id_sp);
6687                     if let FileName::Real(src_path) = src_path {
6688                         if let Some(stem) = src_path.file_stem() {
6689                             let mut dest_path = src_path.clone();
6690                             dest_path.set_file_name(stem);
6691                             dest_path.push("mod.rs");
6692                             err.span_note(id_sp,
6693                                     &format!("maybe move this module `{}` to its own \
6694                                                 directory via `{}`", src_path.display(),
6695                                             dest_path.display()));
6696                         }
6697                     }
6698                 }
6699                 if paths.path_exists {
6700                     err.span_note(id_sp,
6701                                   &format!("... or maybe `use` the module `{}` instead \
6702                                             of possibly redeclaring it",
6703                                            paths.name));
6704                 }
6705                 Err(err)
6706             }
6707         }
6708     }
6709
6710     /// Read a module from a source file.
6711     fn eval_src_mod(&mut self,
6712                     path: PathBuf,
6713                     directory_ownership: DirectoryOwnership,
6714                     name: String,
6715                     id_sp: Span)
6716                     -> PResult<'a, (ast::Mod, Vec<Attribute> )> {
6717         let mut included_mod_stack = self.sess.included_mod_stack.borrow_mut();
6718         if let Some(i) = included_mod_stack.iter().position(|p| *p == path) {
6719             let mut err = String::from("circular modules: ");
6720             let len = included_mod_stack.len();
6721             for p in &included_mod_stack[i.. len] {
6722                 err.push_str(&p.to_string_lossy());
6723                 err.push_str(" -> ");
6724             }
6725             err.push_str(&path.to_string_lossy());
6726             return Err(self.span_fatal(id_sp, &err[..]));
6727         }
6728         included_mod_stack.push(path.clone());
6729         drop(included_mod_stack);
6730
6731         let mut p0 =
6732             new_sub_parser_from_file(self.sess, &path, directory_ownership, Some(name), id_sp);
6733         p0.cfg_mods = self.cfg_mods;
6734         let mod_inner_lo = p0.span;
6735         let mod_attrs = p0.parse_inner_attributes()?;
6736         let mut m0 = p0.parse_mod_items(&token::Eof, mod_inner_lo)?;
6737         m0.inline = false;
6738         self.sess.included_mod_stack.borrow_mut().pop();
6739         Ok((m0, mod_attrs))
6740     }
6741
6742     /// Parse a function declaration from a foreign module
6743     fn parse_item_foreign_fn(&mut self, vis: ast::Visibility, lo: Span, attrs: Vec<Attribute>)
6744                              -> PResult<'a, ForeignItem> {
6745         self.expect_keyword(keywords::Fn)?;
6746
6747         let (ident, mut generics) = self.parse_fn_header()?;
6748         let decl = self.parse_fn_decl(true)?;
6749         generics.where_clause = self.parse_where_clause()?;
6750         let hi = self.span;
6751         self.expect(&token::Semi)?;
6752         Ok(ast::ForeignItem {
6753             ident,
6754             attrs,
6755             node: ForeignItemKind::Fn(decl, generics),
6756             id: ast::DUMMY_NODE_ID,
6757             span: lo.to(hi),
6758             vis,
6759         })
6760     }
6761
6762     /// Parse a static item from a foreign module.
6763     /// Assumes that the `static` keyword is already parsed.
6764     fn parse_item_foreign_static(&mut self, vis: ast::Visibility, lo: Span, attrs: Vec<Attribute>)
6765                                  -> PResult<'a, ForeignItem> {
6766         let mutbl = self.eat_keyword(keywords::Mut);
6767         let ident = self.parse_ident()?;
6768         self.expect(&token::Colon)?;
6769         let ty = self.parse_ty()?;
6770         let hi = self.span;
6771         self.expect(&token::Semi)?;
6772         Ok(ForeignItem {
6773             ident,
6774             attrs,
6775             node: ForeignItemKind::Static(ty, mutbl),
6776             id: ast::DUMMY_NODE_ID,
6777             span: lo.to(hi),
6778             vis,
6779         })
6780     }
6781
6782     /// Parse a type from a foreign module
6783     fn parse_item_foreign_type(&mut self, vis: ast::Visibility, lo: Span, attrs: Vec<Attribute>)
6784                              -> PResult<'a, ForeignItem> {
6785         self.expect_keyword(keywords::Type)?;
6786
6787         let ident = self.parse_ident()?;
6788         let hi = self.span;
6789         self.expect(&token::Semi)?;
6790         Ok(ast::ForeignItem {
6791             ident: ident,
6792             attrs: attrs,
6793             node: ForeignItemKind::Ty,
6794             id: ast::DUMMY_NODE_ID,
6795             span: lo.to(hi),
6796             vis: vis
6797         })
6798     }
6799
6800     fn parse_crate_name_with_dashes(&mut self) -> PResult<'a, ast::Ident> {
6801         let error_msg = "crate name using dashes are not valid in `extern crate` statements";
6802         let suggestion_msg = "if the original crate name uses dashes you need to use underscores \
6803                               in the code";
6804         let mut ident = if self.token.is_keyword(keywords::SelfLower) {
6805             self.parse_path_segment_ident()
6806         } else {
6807             self.parse_ident()
6808         }?;
6809         let mut idents = vec![];
6810         let mut replacement = vec![];
6811         let mut fixed_crate_name = false;
6812         // Accept `extern crate name-like-this` for better diagnostics
6813         let dash = token::Token::BinOp(token::BinOpToken::Minus);
6814         if self.token == dash {  // Do not include `-` as part of the expected tokens list
6815             while self.eat(&dash) {
6816                 fixed_crate_name = true;
6817                 replacement.push((self.prev_span, "_".to_string()));
6818                 idents.push(self.parse_ident()?);
6819             }
6820         }
6821         if fixed_crate_name {
6822             let fixed_name_sp = ident.span.to(idents.last().unwrap().span);
6823             let mut fixed_name = format!("{}", ident.name);
6824             for part in idents {
6825                 fixed_name.push_str(&format!("_{}", part.name));
6826             }
6827             ident = Ident::from_str(&fixed_name).with_span_pos(fixed_name_sp);
6828
6829             let mut err = self.struct_span_err(fixed_name_sp, error_msg);
6830             err.span_label(fixed_name_sp, "dash-separated idents are not valid");
6831             err.multipart_suggestion(suggestion_msg, replacement);
6832             err.emit();
6833         }
6834         Ok(ident)
6835     }
6836
6837     /// Parse extern crate links
6838     ///
6839     /// # Examples
6840     ///
6841     /// extern crate foo;
6842     /// extern crate bar as foo;
6843     fn parse_item_extern_crate(&mut self,
6844                                lo: Span,
6845                                visibility: Visibility,
6846                                attrs: Vec<Attribute>)
6847                                -> PResult<'a, P<Item>> {
6848         // Accept `extern crate name-like-this` for better diagnostics
6849         let orig_name = self.parse_crate_name_with_dashes()?;
6850         let (item_name, orig_name) = if let Some(rename) = self.parse_rename()? {
6851             (rename, Some(orig_name.name))
6852         } else {
6853             (orig_name, None)
6854         };
6855         self.expect(&token::Semi)?;
6856
6857         let span = lo.to(self.prev_span);
6858         Ok(self.mk_item(span, item_name, ItemKind::ExternCrate(orig_name), visibility, attrs))
6859     }
6860
6861     /// Parse `extern` for foreign ABIs
6862     /// modules.
6863     ///
6864     /// `extern` is expected to have been
6865     /// consumed before calling this method
6866     ///
6867     /// # Examples:
6868     ///
6869     /// extern "C" {}
6870     /// extern {}
6871     fn parse_item_foreign_mod(&mut self,
6872                               lo: Span,
6873                               opt_abi: Option<Abi>,
6874                               visibility: Visibility,
6875                               mut attrs: Vec<Attribute>)
6876                               -> PResult<'a, P<Item>> {
6877         self.expect(&token::OpenDelim(token::Brace))?;
6878
6879         let abi = opt_abi.unwrap_or(Abi::C);
6880
6881         attrs.extend(self.parse_inner_attributes()?);
6882
6883         let mut foreign_items = vec![];
6884         while !self.eat(&token::CloseDelim(token::Brace)) {
6885             foreign_items.push(self.parse_foreign_item()?);
6886         }
6887
6888         let prev_span = self.prev_span;
6889         let m = ast::ForeignMod {
6890             abi,
6891             items: foreign_items
6892         };
6893         let invalid = keywords::Invalid.ident();
6894         Ok(self.mk_item(lo.to(prev_span), invalid, ItemKind::ForeignMod(m), visibility, attrs))
6895     }
6896
6897     /// Parse `type Foo = Bar;`
6898     /// or
6899     /// `existential type Foo: Bar;`
6900     /// or
6901     /// `return None` without modifying the parser state
6902     fn eat_type(&mut self) -> Option<PResult<'a, (Ident, AliasKind, ast::Generics)>> {
6903         // This parses the grammar:
6904         //     Ident ["<"...">"] ["where" ...] ("=" | ":") Ty ";"
6905         if self.check_keyword(keywords::Type) ||
6906            self.check_keyword(keywords::Existential) &&
6907                 self.look_ahead(1, |t| t.is_keyword(keywords::Type)) {
6908             let existential = self.eat_keyword(keywords::Existential);
6909             assert!(self.eat_keyword(keywords::Type));
6910             Some(self.parse_existential_or_alias(existential))
6911         } else {
6912             None
6913         }
6914     }
6915
6916     /// Parse type alias or existential type
6917     fn parse_existential_or_alias(
6918         &mut self,
6919         existential: bool,
6920     ) -> PResult<'a, (Ident, AliasKind, ast::Generics)> {
6921         let ident = self.parse_ident()?;
6922         let mut tps = self.parse_generics()?;
6923         tps.where_clause = self.parse_where_clause()?;
6924         let alias = if existential {
6925             self.expect(&token::Colon)?;
6926             let bounds = self.parse_generic_bounds()?;
6927             AliasKind::Existential(bounds)
6928         } else {
6929             self.expect(&token::Eq)?;
6930             let ty = self.parse_ty()?;
6931             AliasKind::Weak(ty)
6932         };
6933         self.expect(&token::Semi)?;
6934         Ok((ident, alias, tps))
6935     }
6936
6937     /// Parse the part of an "enum" decl following the '{'
6938     fn parse_enum_def(&mut self, _generics: &ast::Generics) -> PResult<'a, EnumDef> {
6939         let mut variants = Vec::new();
6940         let mut all_nullary = true;
6941         let mut any_disr = None;
6942         while self.token != token::CloseDelim(token::Brace) {
6943             let variant_attrs = self.parse_outer_attributes()?;
6944             let vlo = self.span;
6945
6946             let struct_def;
6947             let mut disr_expr = None;
6948             let ident = self.parse_ident()?;
6949             if self.check(&token::OpenDelim(token::Brace)) {
6950                 // Parse a struct variant.
6951                 all_nullary = false;
6952                 struct_def = VariantData::Struct(self.parse_record_struct_body()?,
6953                                                  ast::DUMMY_NODE_ID);
6954             } else if self.check(&token::OpenDelim(token::Paren)) {
6955                 all_nullary = false;
6956                 struct_def = VariantData::Tuple(self.parse_tuple_struct_body()?,
6957                                                 ast::DUMMY_NODE_ID);
6958             } else if self.eat(&token::Eq) {
6959                 disr_expr = Some(AnonConst {
6960                     id: ast::DUMMY_NODE_ID,
6961                     value: self.parse_expr()?,
6962                 });
6963                 any_disr = disr_expr.as_ref().map(|c| c.value.span);
6964                 struct_def = VariantData::Unit(ast::DUMMY_NODE_ID);
6965             } else {
6966                 struct_def = VariantData::Unit(ast::DUMMY_NODE_ID);
6967             }
6968
6969             let vr = ast::Variant_ {
6970                 ident,
6971                 attrs: variant_attrs,
6972                 data: struct_def,
6973                 disr_expr,
6974             };
6975             variants.push(respan(vlo.to(self.prev_span), vr));
6976
6977             if !self.eat(&token::Comma) { break; }
6978         }
6979         self.expect(&token::CloseDelim(token::Brace))?;
6980         match any_disr {
6981             Some(disr_span) if !all_nullary =>
6982                 self.span_err(disr_span,
6983                     "discriminator values can only be used with a field-less enum"),
6984             _ => ()
6985         }
6986
6987         Ok(ast::EnumDef { variants })
6988     }
6989
6990     /// Parse an "enum" declaration
6991     fn parse_item_enum(&mut self) -> PResult<'a, ItemInfo> {
6992         let id = self.parse_ident()?;
6993         let mut generics = self.parse_generics()?;
6994         generics.where_clause = self.parse_where_clause()?;
6995         self.expect(&token::OpenDelim(token::Brace))?;
6996
6997         let enum_definition = self.parse_enum_def(&generics).map_err(|e| {
6998             self.recover_stmt();
6999             self.eat(&token::CloseDelim(token::Brace));
7000             e
7001         })?;
7002         Ok((id, ItemKind::Enum(enum_definition, generics), None))
7003     }
7004
7005     /// Parses a string as an ABI spec on an extern type or module. Consumes
7006     /// the `extern` keyword, if one is found.
7007     fn parse_opt_abi(&mut self) -> PResult<'a, Option<Abi>> {
7008         match self.token {
7009             token::Literal(token::Str_(s), suf) | token::Literal(token::StrRaw(s, _), suf) => {
7010                 let sp = self.span;
7011                 self.expect_no_suffix(sp, "ABI spec", suf);
7012                 self.bump();
7013                 match abi::lookup(&s.as_str()) {
7014                     Some(abi) => Ok(Some(abi)),
7015                     None => {
7016                         let prev_span = self.prev_span;
7017                         let mut err = struct_span_err!(
7018                             self.sess.span_diagnostic,
7019                             prev_span,
7020                             E0703,
7021                             "invalid ABI: found `{}`",
7022                             s);
7023                         err.span_label(prev_span, "invalid ABI");
7024                         err.help(&format!("valid ABIs: {}", abi::all_names().join(", ")));
7025                         err.emit();
7026                         Ok(None)
7027                     }
7028                 }
7029             }
7030
7031             _ => Ok(None),
7032         }
7033     }
7034
7035     fn is_static_global(&mut self) -> bool {
7036         if self.check_keyword(keywords::Static) {
7037             // Check if this could be a closure
7038             !self.look_ahead(1, |token| {
7039                 if token.is_keyword(keywords::Move) {
7040                     return true;
7041                 }
7042                 match *token {
7043                     token::BinOp(token::Or) | token::OrOr => true,
7044                     _ => false,
7045                 }
7046             })
7047         } else {
7048             false
7049         }
7050     }
7051
7052     fn parse_item_(
7053         &mut self,
7054         attrs: Vec<Attribute>,
7055         macros_allowed: bool,
7056         attributes_allowed: bool,
7057     ) -> PResult<'a, Option<P<Item>>> {
7058         let (ret, tokens) = self.collect_tokens(|this| {
7059             this.parse_item_implementation(attrs, macros_allowed, attributes_allowed)
7060         })?;
7061
7062         // Once we've parsed an item and recorded the tokens we got while
7063         // parsing we may want to store `tokens` into the item we're about to
7064         // return. Note, though, that we specifically didn't capture tokens
7065         // related to outer attributes. The `tokens` field here may later be
7066         // used with procedural macros to convert this item back into a token
7067         // stream, but during expansion we may be removing attributes as we go
7068         // along.
7069         //
7070         // If we've got inner attributes then the `tokens` we've got above holds
7071         // these inner attributes. If an inner attribute is expanded we won't
7072         // actually remove it from the token stream, so we'll just keep yielding
7073         // it (bad!). To work around this case for now we just avoid recording
7074         // `tokens` if we detect any inner attributes. This should help keep
7075         // expansion correct, but we should fix this bug one day!
7076         Ok(ret.map(|item| {
7077             item.map(|mut i| {
7078                 if !i.attrs.iter().any(|attr| attr.style == AttrStyle::Inner) {
7079                     i.tokens = Some(tokens);
7080                 }
7081                 i
7082             })
7083         }))
7084     }
7085
7086     /// Parse one of the items allowed by the flags.
7087     fn parse_item_implementation(
7088         &mut self,
7089         attrs: Vec<Attribute>,
7090         macros_allowed: bool,
7091         attributes_allowed: bool,
7092     ) -> PResult<'a, Option<P<Item>>> {
7093         maybe_whole!(self, NtItem, |item| {
7094             let mut item = item.into_inner();
7095             let mut attrs = attrs;
7096             mem::swap(&mut item.attrs, &mut attrs);
7097             item.attrs.extend(attrs);
7098             Some(P(item))
7099         });
7100
7101         let lo = self.span;
7102
7103         let visibility = self.parse_visibility(false)?;
7104
7105         if self.eat_keyword(keywords::Use) {
7106             // USE ITEM
7107             let item_ = ItemKind::Use(P(self.parse_use_tree()?));
7108             self.expect(&token::Semi)?;
7109
7110             let span = lo.to(self.prev_span);
7111             let item = self.mk_item(span, keywords::Invalid.ident(), item_, visibility, attrs);
7112             return Ok(Some(item));
7113         }
7114
7115         if self.check_keyword(keywords::Extern) && self.is_extern_non_path() {
7116             self.bump(); // `extern`
7117             if self.eat_keyword(keywords::Crate) {
7118                 return Ok(Some(self.parse_item_extern_crate(lo, visibility, attrs)?));
7119             }
7120
7121             let opt_abi = self.parse_opt_abi()?;
7122
7123             if self.eat_keyword(keywords::Fn) {
7124                 // EXTERN FUNCTION ITEM
7125                 let fn_span = self.prev_span;
7126                 let abi = opt_abi.unwrap_or(Abi::C);
7127                 let (ident, item_, extra_attrs) =
7128                     self.parse_item_fn(Unsafety::Normal,
7129                                        IsAsync::NotAsync,
7130                                        respan(fn_span, Constness::NotConst),
7131                                        abi)?;
7132                 let prev_span = self.prev_span;
7133                 let item = self.mk_item(lo.to(prev_span),
7134                                         ident,
7135                                         item_,
7136                                         visibility,
7137                                         maybe_append(attrs, extra_attrs));
7138                 return Ok(Some(item));
7139             } else if self.check(&token::OpenDelim(token::Brace)) {
7140                 return Ok(Some(self.parse_item_foreign_mod(lo, opt_abi, visibility, attrs)?));
7141             }
7142
7143             self.unexpected()?;
7144         }
7145
7146         if self.is_static_global() {
7147             self.bump();
7148             // STATIC ITEM
7149             let m = if self.eat_keyword(keywords::Mut) {
7150                 Mutability::Mutable
7151             } else {
7152                 Mutability::Immutable
7153             };
7154             let (ident, item_, extra_attrs) = self.parse_item_const(Some(m))?;
7155             let prev_span = self.prev_span;
7156             let item = self.mk_item(lo.to(prev_span),
7157                                     ident,
7158                                     item_,
7159                                     visibility,
7160                                     maybe_append(attrs, extra_attrs));
7161             return Ok(Some(item));
7162         }
7163         if self.eat_keyword(keywords::Const) {
7164             let const_span = self.prev_span;
7165             if self.check_keyword(keywords::Fn)
7166                 || (self.check_keyword(keywords::Unsafe)
7167                     && self.look_ahead(1, |t| t.is_keyword(keywords::Fn))) {
7168                 // CONST FUNCTION ITEM
7169                 let unsafety = self.parse_unsafety();
7170                 self.bump();
7171                 let (ident, item_, extra_attrs) =
7172                     self.parse_item_fn(unsafety,
7173                                        IsAsync::NotAsync,
7174                                        respan(const_span, Constness::Const),
7175                                        Abi::Rust)?;
7176                 let prev_span = self.prev_span;
7177                 let item = self.mk_item(lo.to(prev_span),
7178                                         ident,
7179                                         item_,
7180                                         visibility,
7181                                         maybe_append(attrs, extra_attrs));
7182                 return Ok(Some(item));
7183             }
7184
7185             // CONST ITEM
7186             if self.eat_keyword(keywords::Mut) {
7187                 let prev_span = self.prev_span;
7188                 self.diagnostic().struct_span_err(prev_span, "const globals cannot be mutable")
7189                                  .help("did you mean to declare a static?")
7190                                  .emit();
7191             }
7192             let (ident, item_, extra_attrs) = self.parse_item_const(None)?;
7193             let prev_span = self.prev_span;
7194             let item = self.mk_item(lo.to(prev_span),
7195                                     ident,
7196                                     item_,
7197                                     visibility,
7198                                     maybe_append(attrs, extra_attrs));
7199             return Ok(Some(item));
7200         }
7201
7202         // `unsafe async fn` or `async fn`
7203         if (
7204             self.check_keyword(keywords::Unsafe) &&
7205             self.look_ahead(1, |t| t.is_keyword(keywords::Async))
7206         ) || (
7207             self.check_keyword(keywords::Async) &&
7208             self.look_ahead(1, |t| t.is_keyword(keywords::Fn))
7209         )
7210         {
7211             // ASYNC FUNCTION ITEM
7212             let unsafety = self.parse_unsafety();
7213             self.expect_keyword(keywords::Async)?;
7214             self.expect_keyword(keywords::Fn)?;
7215             let fn_span = self.prev_span;
7216             let (ident, item_, extra_attrs) =
7217                 self.parse_item_fn(unsafety,
7218                                    IsAsync::Async {
7219                                        closure_id: ast::DUMMY_NODE_ID,
7220                                        return_impl_trait_id: ast::DUMMY_NODE_ID,
7221                                    },
7222                                    respan(fn_span, Constness::NotConst),
7223                                    Abi::Rust)?;
7224             let prev_span = self.prev_span;
7225             let item = self.mk_item(lo.to(prev_span),
7226                                     ident,
7227                                     item_,
7228                                     visibility,
7229                                     maybe_append(attrs, extra_attrs));
7230             return Ok(Some(item));
7231         }
7232         if self.check_keyword(keywords::Unsafe) &&
7233             (self.look_ahead(1, |t| t.is_keyword(keywords::Trait)) ||
7234             self.look_ahead(1, |t| t.is_keyword(keywords::Auto)))
7235         {
7236             // UNSAFE TRAIT ITEM
7237             self.bump(); // `unsafe`
7238             let is_auto = if self.eat_keyword(keywords::Trait) {
7239                 IsAuto::No
7240             } else {
7241                 self.expect_keyword(keywords::Auto)?;
7242                 self.expect_keyword(keywords::Trait)?;
7243                 IsAuto::Yes
7244             };
7245             let (ident, item_, extra_attrs) =
7246                 self.parse_item_trait(is_auto, Unsafety::Unsafe)?;
7247             let prev_span = self.prev_span;
7248             let item = self.mk_item(lo.to(prev_span),
7249                                     ident,
7250                                     item_,
7251                                     visibility,
7252                                     maybe_append(attrs, extra_attrs));
7253             return Ok(Some(item));
7254         }
7255         if self.check_keyword(keywords::Impl) ||
7256            self.check_keyword(keywords::Unsafe) &&
7257                 self.look_ahead(1, |t| t.is_keyword(keywords::Impl)) ||
7258            self.check_keyword(keywords::Default) &&
7259                 self.look_ahead(1, |t| t.is_keyword(keywords::Impl)) ||
7260            self.check_keyword(keywords::Default) &&
7261                 self.look_ahead(1, |t| t.is_keyword(keywords::Unsafe)) {
7262             // IMPL ITEM
7263             let defaultness = self.parse_defaultness();
7264             let unsafety = self.parse_unsafety();
7265             self.expect_keyword(keywords::Impl)?;
7266             let (ident, item, extra_attrs) = self.parse_item_impl(unsafety, defaultness)?;
7267             let span = lo.to(self.prev_span);
7268             return Ok(Some(self.mk_item(span, ident, item, visibility,
7269                                         maybe_append(attrs, extra_attrs))));
7270         }
7271         if self.check_keyword(keywords::Fn) {
7272             // FUNCTION ITEM
7273             self.bump();
7274             let fn_span = self.prev_span;
7275             let (ident, item_, extra_attrs) =
7276                 self.parse_item_fn(Unsafety::Normal,
7277                                    IsAsync::NotAsync,
7278                                    respan(fn_span, Constness::NotConst),
7279                                    Abi::Rust)?;
7280             let prev_span = self.prev_span;
7281             let item = self.mk_item(lo.to(prev_span),
7282                                     ident,
7283                                     item_,
7284                                     visibility,
7285                                     maybe_append(attrs, extra_attrs));
7286             return Ok(Some(item));
7287         }
7288         if self.check_keyword(keywords::Unsafe)
7289             && self.look_ahead(1, |t| *t != token::OpenDelim(token::Brace)) {
7290             // UNSAFE FUNCTION ITEM
7291             self.bump(); // `unsafe`
7292             // `{` is also expected after `unsafe`, in case of error, include it in the diagnostic
7293             self.check(&token::OpenDelim(token::Brace));
7294             let abi = if self.eat_keyword(keywords::Extern) {
7295                 self.parse_opt_abi()?.unwrap_or(Abi::C)
7296             } else {
7297                 Abi::Rust
7298             };
7299             self.expect_keyword(keywords::Fn)?;
7300             let fn_span = self.prev_span;
7301             let (ident, item_, extra_attrs) =
7302                 self.parse_item_fn(Unsafety::Unsafe,
7303                                    IsAsync::NotAsync,
7304                                    respan(fn_span, Constness::NotConst),
7305                                    abi)?;
7306             let prev_span = self.prev_span;
7307             let item = self.mk_item(lo.to(prev_span),
7308                                     ident,
7309                                     item_,
7310                                     visibility,
7311                                     maybe_append(attrs, extra_attrs));
7312             return Ok(Some(item));
7313         }
7314         if self.eat_keyword(keywords::Mod) {
7315             // MODULE ITEM
7316             let (ident, item_, extra_attrs) =
7317                 self.parse_item_mod(&attrs[..])?;
7318             let prev_span = self.prev_span;
7319             let item = self.mk_item(lo.to(prev_span),
7320                                     ident,
7321                                     item_,
7322                                     visibility,
7323                                     maybe_append(attrs, extra_attrs));
7324             return Ok(Some(item));
7325         }
7326         if let Some(type_) = self.eat_type() {
7327             let (ident, alias, generics) = type_?;
7328             // TYPE ITEM
7329             let item_ = match alias {
7330                 AliasKind::Weak(ty) => ItemKind::Ty(ty, generics),
7331                 AliasKind::Existential(bounds) => ItemKind::Existential(bounds, generics),
7332             };
7333             let prev_span = self.prev_span;
7334             let item = self.mk_item(lo.to(prev_span),
7335                                     ident,
7336                                     item_,
7337                                     visibility,
7338                                     attrs);
7339             return Ok(Some(item));
7340         }
7341         if self.eat_keyword(keywords::Enum) {
7342             // ENUM ITEM
7343             let (ident, item_, extra_attrs) = self.parse_item_enum()?;
7344             let prev_span = self.prev_span;
7345             let item = self.mk_item(lo.to(prev_span),
7346                                     ident,
7347                                     item_,
7348                                     visibility,
7349                                     maybe_append(attrs, extra_attrs));
7350             return Ok(Some(item));
7351         }
7352         if self.check_keyword(keywords::Trait)
7353             || (self.check_keyword(keywords::Auto)
7354                 && self.look_ahead(1, |t| t.is_keyword(keywords::Trait)))
7355         {
7356             let is_auto = if self.eat_keyword(keywords::Trait) {
7357                 IsAuto::No
7358             } else {
7359                 self.expect_keyword(keywords::Auto)?;
7360                 self.expect_keyword(keywords::Trait)?;
7361                 IsAuto::Yes
7362             };
7363             // TRAIT ITEM
7364             let (ident, item_, extra_attrs) =
7365                 self.parse_item_trait(is_auto, Unsafety::Normal)?;
7366             let prev_span = self.prev_span;
7367             let item = self.mk_item(lo.to(prev_span),
7368                                     ident,
7369                                     item_,
7370                                     visibility,
7371                                     maybe_append(attrs, extra_attrs));
7372             return Ok(Some(item));
7373         }
7374         if self.eat_keyword(keywords::Struct) {
7375             // STRUCT ITEM
7376             let (ident, item_, extra_attrs) = self.parse_item_struct()?;
7377             let prev_span = self.prev_span;
7378             let item = self.mk_item(lo.to(prev_span),
7379                                     ident,
7380                                     item_,
7381                                     visibility,
7382                                     maybe_append(attrs, extra_attrs));
7383             return Ok(Some(item));
7384         }
7385         if self.is_union_item() {
7386             // UNION ITEM
7387             self.bump();
7388             let (ident, item_, extra_attrs) = self.parse_item_union()?;
7389             let prev_span = self.prev_span;
7390             let item = self.mk_item(lo.to(prev_span),
7391                                     ident,
7392                                     item_,
7393                                     visibility,
7394                                     maybe_append(attrs, extra_attrs));
7395             return Ok(Some(item));
7396         }
7397         if let Some(macro_def) = self.eat_macro_def(&attrs, &visibility, lo)? {
7398             return Ok(Some(macro_def));
7399         }
7400
7401         // Verify whether we have encountered a struct or method definition where the user forgot to
7402         // add the `struct` or `fn` keyword after writing `pub`: `pub S {}`
7403         if visibility.node.is_pub() &&
7404             self.check_ident() &&
7405             self.look_ahead(1, |t| *t != token::Not)
7406         {
7407             // Space between `pub` keyword and the identifier
7408             //
7409             //     pub   S {}
7410             //        ^^^ `sp` points here
7411             let sp = self.prev_span.between(self.span);
7412             let full_sp = self.prev_span.to(self.span);
7413             let ident_sp = self.span;
7414             if self.look_ahead(1, |t| *t == token::OpenDelim(token::Brace)) {
7415                 // possible public struct definition where `struct` was forgotten
7416                 let ident = self.parse_ident().unwrap();
7417                 let msg = format!("add `struct` here to parse `{}` as a public struct",
7418                                   ident);
7419                 let mut err = self.diagnostic()
7420                     .struct_span_err(sp, "missing `struct` for struct definition");
7421                 err.span_suggestion_short_with_applicability(
7422                     sp, &msg, " struct ".into(), Applicability::MaybeIncorrect // speculative
7423                 );
7424                 return Err(err);
7425             } else if self.look_ahead(1, |t| *t == token::OpenDelim(token::Paren)) {
7426                 let ident = self.parse_ident().unwrap();
7427                 self.bump();  // `(`
7428                 let kw_name = if let Ok(Some(_)) = self.parse_self_arg() {
7429                     "method"
7430                 } else {
7431                     "function"
7432                 };
7433                 self.consume_block(token::Paren);
7434                 let (kw, kw_name, ambiguous) = if self.check(&token::RArrow) {
7435                     self.eat_to_tokens(&[&token::OpenDelim(token::Brace)]);
7436                     self.bump();  // `{`
7437                     ("fn", kw_name, false)
7438                 } else if self.check(&token::OpenDelim(token::Brace)) {
7439                     self.bump();  // `{`
7440                     ("fn", kw_name, false)
7441                 } else if self.check(&token::Colon) {
7442                     let kw = "struct";
7443                     (kw, kw, false)
7444                 } else {
7445                     ("fn` or `struct", "function or struct", true)
7446                 };
7447                 self.consume_block(token::Brace);
7448
7449                 let msg = format!("missing `{}` for {} definition", kw, kw_name);
7450                 let mut err = self.diagnostic().struct_span_err(sp, &msg);
7451                 if !ambiguous {
7452                     let suggestion = format!("add `{}` here to parse `{}` as a public {}",
7453                                              kw,
7454                                              ident,
7455                                              kw_name);
7456                     err.span_suggestion_short_with_applicability(
7457                         sp, &suggestion, format!(" {} ", kw), Applicability::MachineApplicable
7458                     );
7459                 } else {
7460                     if let Ok(snippet) = self.sess.source_map().span_to_snippet(ident_sp) {
7461                         err.span_suggestion_with_applicability(
7462                             full_sp,
7463                             "if you meant to call a macro, try",
7464                             format!("{}!", snippet),
7465                             // this is the `ambiguous` conditional branch
7466                             Applicability::MaybeIncorrect
7467                         );
7468                     } else {
7469                         err.help("if you meant to call a macro, remove the `pub` \
7470                                   and add a trailing `!` after the identifier");
7471                     }
7472                 }
7473                 return Err(err);
7474             } else if self.look_ahead(1, |t| *t == token::Lt) {
7475                 let ident = self.parse_ident().unwrap();
7476                 self.eat_to_tokens(&[&token::Gt]);
7477                 self.bump();  // `>`
7478                 let (kw, kw_name, ambiguous) = if self.eat(&token::OpenDelim(token::Paren)) {
7479                     if let Ok(Some(_)) = self.parse_self_arg() {
7480                         ("fn", "method", false)
7481                     } else {
7482                         ("fn", "function", false)
7483                     }
7484                 } else if self.check(&token::OpenDelim(token::Brace)) {
7485                     ("struct", "struct", false)
7486                 } else {
7487                     ("fn` or `struct", "function or struct", true)
7488                 };
7489                 let msg = format!("missing `{}` for {} definition", kw, kw_name);
7490                 let mut err = self.diagnostic().struct_span_err(sp, &msg);
7491                 if !ambiguous {
7492                     err.span_suggestion_short_with_applicability(
7493                         sp,
7494                         &format!("add `{}` here to parse `{}` as a public {}", kw, ident, kw_name),
7495                         format!(" {} ", kw),
7496                         Applicability::MachineApplicable,
7497                     );
7498                 }
7499                 return Err(err);
7500             }
7501         }
7502         self.parse_macro_use_or_failure(attrs, macros_allowed, attributes_allowed, lo, visibility)
7503     }
7504
7505     /// Parse a foreign item.
7506     crate fn parse_foreign_item(&mut self) -> PResult<'a, ForeignItem> {
7507         maybe_whole!(self, NtForeignItem, |ni| ni);
7508
7509         let attrs = self.parse_outer_attributes()?;
7510         let lo = self.span;
7511         let visibility = self.parse_visibility(false)?;
7512
7513         // FOREIGN STATIC ITEM
7514         // Treat `const` as `static` for error recovery, but don't add it to expected tokens.
7515         if self.check_keyword(keywords::Static) || self.token.is_keyword(keywords::Const) {
7516             if self.token.is_keyword(keywords::Const) {
7517                 self.diagnostic()
7518                     .struct_span_err(self.span, "extern items cannot be `const`")
7519                     .span_suggestion_with_applicability(
7520                         self.span,
7521                         "try using a static value",
7522                         "static".to_owned(),
7523                         Applicability::MachineApplicable
7524                     ).emit();
7525             }
7526             self.bump(); // `static` or `const`
7527             return Ok(self.parse_item_foreign_static(visibility, lo, attrs)?);
7528         }
7529         // FOREIGN FUNCTION ITEM
7530         if self.check_keyword(keywords::Fn) {
7531             return Ok(self.parse_item_foreign_fn(visibility, lo, attrs)?);
7532         }
7533         // FOREIGN TYPE ITEM
7534         if self.check_keyword(keywords::Type) {
7535             return Ok(self.parse_item_foreign_type(visibility, lo, attrs)?);
7536         }
7537
7538         match self.parse_assoc_macro_invoc("extern", Some(&visibility), &mut false)? {
7539             Some(mac) => {
7540                 Ok(
7541                     ForeignItem {
7542                         ident: keywords::Invalid.ident(),
7543                         span: lo.to(self.prev_span),
7544                         id: ast::DUMMY_NODE_ID,
7545                         attrs,
7546                         vis: visibility,
7547                         node: ForeignItemKind::Macro(mac),
7548                     }
7549                 )
7550             }
7551             None => {
7552                 if !attrs.is_empty()  {
7553                     self.expected_item_err(&attrs);
7554                 }
7555
7556                 self.unexpected()
7557             }
7558         }
7559     }
7560
7561     /// This is the fall-through for parsing items.
7562     fn parse_macro_use_or_failure(
7563         &mut self,
7564         attrs: Vec<Attribute> ,
7565         macros_allowed: bool,
7566         attributes_allowed: bool,
7567         lo: Span,
7568         visibility: Visibility
7569     ) -> PResult<'a, Option<P<Item>>> {
7570         if macros_allowed && self.token.is_path_start() {
7571             // MACRO INVOCATION ITEM
7572
7573             let prev_span = self.prev_span;
7574             self.complain_if_pub_macro(&visibility.node, prev_span);
7575
7576             let mac_lo = self.span;
7577
7578             // item macro.
7579             let pth = self.parse_path(PathStyle::Mod)?;
7580             self.expect(&token::Not)?;
7581
7582             // a 'special' identifier (like what `macro_rules!` uses)
7583             // is optional. We should eventually unify invoc syntax
7584             // and remove this.
7585             let id = if self.token.is_ident() {
7586                 self.parse_ident()?
7587             } else {
7588                 keywords::Invalid.ident() // no special identifier
7589             };
7590             // eat a matched-delimiter token tree:
7591             let (delim, tts) = self.expect_delimited_token_tree()?;
7592             if delim != MacDelimiter::Brace {
7593                 if !self.eat(&token::Semi) {
7594                     self.span_err(self.prev_span,
7595                                   "macros that expand to items must either \
7596                                    be surrounded with braces or followed by \
7597                                    a semicolon");
7598                 }
7599             }
7600
7601             let hi = self.prev_span;
7602             let mac = respan(mac_lo.to(hi), Mac_ { path: pth, tts, delim });
7603             let item = self.mk_item(lo.to(hi), id, ItemKind::Mac(mac), visibility, attrs);
7604             return Ok(Some(item));
7605         }
7606
7607         // FAILURE TO PARSE ITEM
7608         match visibility.node {
7609             VisibilityKind::Inherited => {}
7610             _ => {
7611                 return Err(self.span_fatal(self.prev_span, "unmatched visibility `pub`"));
7612             }
7613         }
7614
7615         if !attributes_allowed && !attrs.is_empty() {
7616             self.expected_item_err(&attrs);
7617         }
7618         Ok(None)
7619     }
7620
7621     /// Parse a macro invocation inside a `trait`, `impl` or `extern` block
7622     fn parse_assoc_macro_invoc(&mut self, item_kind: &str, vis: Option<&Visibility>,
7623                                at_end: &mut bool) -> PResult<'a, Option<Mac>>
7624     {
7625         if self.token.is_path_start() && !self.is_extern_non_path() {
7626             let prev_span = self.prev_span;
7627             let lo = self.span;
7628             let pth = self.parse_path(PathStyle::Mod)?;
7629
7630             if pth.segments.len() == 1 {
7631                 if !self.eat(&token::Not) {
7632                     return Err(self.missing_assoc_item_kind_err(item_kind, prev_span));
7633                 }
7634             } else {
7635                 self.expect(&token::Not)?;
7636             }
7637
7638             if let Some(vis) = vis {
7639                 self.complain_if_pub_macro(&vis.node, prev_span);
7640             }
7641
7642             *at_end = true;
7643
7644             // eat a matched-delimiter token tree:
7645             let (delim, tts) = self.expect_delimited_token_tree()?;
7646             if delim != MacDelimiter::Brace {
7647                 self.expect(&token::Semi)?
7648             }
7649
7650             Ok(Some(respan(lo.to(self.prev_span), Mac_ { path: pth, tts, delim })))
7651         } else {
7652             Ok(None)
7653         }
7654     }
7655
7656     fn collect_tokens<F, R>(&mut self, f: F) -> PResult<'a, (R, TokenStream)>
7657         where F: FnOnce(&mut Self) -> PResult<'a, R>
7658     {
7659         // Record all tokens we parse when parsing this item.
7660         let mut tokens = Vec::new();
7661         let prev_collecting = match self.token_cursor.frame.last_token {
7662             LastToken::Collecting(ref mut list) => {
7663                 Some(mem::replace(list, Vec::new()))
7664             }
7665             LastToken::Was(ref mut last) => {
7666                 tokens.extend(last.take());
7667                 None
7668             }
7669         };
7670         self.token_cursor.frame.last_token = LastToken::Collecting(tokens);
7671         let prev = self.token_cursor.stack.len();
7672         let ret = f(self);
7673         let last_token = if self.token_cursor.stack.len() == prev {
7674             &mut self.token_cursor.frame.last_token
7675         } else {
7676             &mut self.token_cursor.stack[prev].last_token
7677         };
7678
7679         // Pull our the toekns that we've collected from the call to `f` above
7680         let mut collected_tokens = match *last_token {
7681             LastToken::Collecting(ref mut v) => mem::replace(v, Vec::new()),
7682             LastToken::Was(_) => panic!("our vector went away?"),
7683         };
7684
7685         // If we're not at EOF our current token wasn't actually consumed by
7686         // `f`, but it'll still be in our list that we pulled out. In that case
7687         // put it back.
7688         let extra_token = if self.token != token::Eof {
7689             collected_tokens.pop()
7690         } else {
7691             None
7692         };
7693
7694         // If we were previously collecting tokens, then this was a recursive
7695         // call. In that case we need to record all the tokens we collected in
7696         // our parent list as well. To do that we push a clone of our stream
7697         // onto the previous list.
7698         let stream = collected_tokens.into_iter().collect::<TokenStream>();
7699         match prev_collecting {
7700             Some(mut list) => {
7701                 list.push(stream.clone());
7702                 list.extend(extra_token);
7703                 *last_token = LastToken::Collecting(list);
7704             }
7705             None => {
7706                 *last_token = LastToken::Was(extra_token);
7707             }
7708         }
7709
7710         Ok((ret?, stream))
7711     }
7712
7713     pub fn parse_item(&mut self) -> PResult<'a, Option<P<Item>>> {
7714         let attrs = self.parse_outer_attributes()?;
7715         self.parse_item_(attrs, true, false)
7716     }
7717
7718     /// `::{` or `::*`
7719     fn is_import_coupler(&mut self) -> bool {
7720         self.check(&token::ModSep) &&
7721             self.look_ahead(1, |t| *t == token::OpenDelim(token::Brace) ||
7722                                    *t == token::BinOp(token::Star))
7723     }
7724
7725     /// Parse UseTree
7726     ///
7727     /// USE_TREE = [`::`] `*` |
7728     ///            [`::`] `{` USE_TREE_LIST `}` |
7729     ///            PATH `::` `*` |
7730     ///            PATH `::` `{` USE_TREE_LIST `}` |
7731     ///            PATH [`as` IDENT]
7732     fn parse_use_tree(&mut self) -> PResult<'a, UseTree> {
7733         let lo = self.span;
7734
7735         let mut prefix = ast::Path { segments: Vec::new(), span: lo.shrink_to_lo() };
7736         let kind = if self.check(&token::OpenDelim(token::Brace)) ||
7737                       self.check(&token::BinOp(token::Star)) ||
7738                       self.is_import_coupler() {
7739             // `use *;` or `use ::*;` or `use {...};` or `use ::{...};`
7740             let mod_sep_ctxt = self.span.ctxt();
7741             if self.eat(&token::ModSep) {
7742                 prefix.segments.push(
7743                     PathSegment::path_root(lo.shrink_to_lo().with_ctxt(mod_sep_ctxt))
7744                 );
7745             }
7746
7747             if self.eat(&token::BinOp(token::Star)) {
7748                 UseTreeKind::Glob
7749             } else {
7750                 UseTreeKind::Nested(self.parse_use_tree_list()?)
7751             }
7752         } else {
7753             // `use path::*;` or `use path::{...};` or `use path;` or `use path as bar;`
7754             prefix = self.parse_path(PathStyle::Mod)?;
7755
7756             if self.eat(&token::ModSep) {
7757                 if self.eat(&token::BinOp(token::Star)) {
7758                     UseTreeKind::Glob
7759                 } else {
7760                     UseTreeKind::Nested(self.parse_use_tree_list()?)
7761                 }
7762             } else {
7763                 UseTreeKind::Simple(self.parse_rename()?, ast::DUMMY_NODE_ID, ast::DUMMY_NODE_ID)
7764             }
7765         };
7766
7767         Ok(UseTree { prefix, kind, span: lo.to(self.prev_span) })
7768     }
7769
7770     /// Parse UseTreeKind::Nested(list)
7771     ///
7772     /// USE_TREE_LIST = Ø | (USE_TREE `,`)* USE_TREE [`,`]
7773     fn parse_use_tree_list(&mut self) -> PResult<'a, Vec<(UseTree, ast::NodeId)>> {
7774         self.parse_unspanned_seq(&token::OpenDelim(token::Brace),
7775                                  &token::CloseDelim(token::Brace),
7776                                  SeqSep::trailing_allowed(token::Comma), |this| {
7777             Ok((this.parse_use_tree()?, ast::DUMMY_NODE_ID))
7778         })
7779     }
7780
7781     fn parse_rename(&mut self) -> PResult<'a, Option<Ident>> {
7782         if self.eat_keyword(keywords::As) {
7783             self.parse_ident_or_underscore().map(Some)
7784         } else {
7785             Ok(None)
7786         }
7787     }
7788
7789     /// Parses a source module as a crate. This is the main
7790     /// entry point for the parser.
7791     pub fn parse_crate_mod(&mut self) -> PResult<'a, Crate> {
7792         let lo = self.span;
7793         Ok(ast::Crate {
7794             attrs: self.parse_inner_attributes()?,
7795             module: self.parse_mod_items(&token::Eof, lo)?,
7796             span: lo.to(self.span),
7797         })
7798     }
7799
7800     pub fn parse_optional_str(&mut self) -> Option<(Symbol, ast::StrStyle, Option<ast::Name>)> {
7801         let ret = match self.token {
7802             token::Literal(token::Str_(s), suf) => (s, ast::StrStyle::Cooked, suf),
7803             token::Literal(token::StrRaw(s, n), suf) => (s, ast::StrStyle::Raw(n), suf),
7804             _ => return None
7805         };
7806         self.bump();
7807         Some(ret)
7808     }
7809
7810     pub fn parse_str(&mut self) -> PResult<'a, (Symbol, StrStyle)> {
7811         match self.parse_optional_str() {
7812             Some((s, style, suf)) => {
7813                 let sp = self.prev_span;
7814                 self.expect_no_suffix(sp, "string literal", suf);
7815                 Ok((s, style))
7816             }
7817             _ => {
7818                 let msg = "expected string literal";
7819                 let mut err = self.fatal(msg);
7820                 err.span_label(self.span, msg);
7821                 Err(err)
7822             }
7823         }
7824     }
7825 }