]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_ast/src/ast.rs
Auto merge of #96078 - udoprog:refcounted-str-to-u8, r=dtolnay
[rust.git] / compiler / rustc_ast / src / ast.rs
1 //! The Rust abstract syntax tree module.
2 //!
3 //! This module contains common structures forming the language AST.
4 //! Two main entities in the module are [`Item`] (which represents an AST element with
5 //! additional metadata), and [`ItemKind`] (which represents a concrete type and contains
6 //! information specific to the type of the item).
7 //!
8 //! Other module items worth mentioning:
9 //! - [`Ty`] and [`TyKind`]: A parsed Rust type.
10 //! - [`Expr`] and [`ExprKind`]: A parsed Rust expression.
11 //! - [`Pat`] and [`PatKind`]: A parsed Rust pattern. Patterns are often dual to expressions.
12 //! - [`Stmt`] and [`StmtKind`]: An executable action that does not return a value.
13 //! - [`FnDecl`], [`FnHeader`] and [`Param`]: Metadata associated with a function declaration.
14 //! - [`Generics`], [`GenericParam`], [`WhereClause`]: Metadata associated with generic parameters.
15 //! - [`EnumDef`] and [`Variant`]: Enum declaration.
16 //! - [`Lit`] and [`LitKind`]: Literal expressions.
17 //! - [`MacroDef`], [`MacStmtStyle`], [`MacCall`], [`MacDelimiter`]: Macro definition and invocation.
18 //! - [`Attribute`]: Metadata associated with item.
19 //! - [`UnOp`], [`BinOp`], and [`BinOpKind`]: Unary and binary operators.
20
21 pub use crate::util::parser::ExprPrecedence;
22 pub use GenericArgs::*;
23 pub use UnsafeSource::*;
24
25 use crate::ptr::P;
26 use crate::token::{self, CommentKind, Delimiter, Token};
27 use crate::tokenstream::{DelimSpan, LazyTokenStream, TokenStream, TokenTree};
28
29 use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
30 use rustc_data_structures::stack::ensure_sufficient_stack;
31 use rustc_data_structures::sync::Lrc;
32 use rustc_data_structures::thin_vec::ThinVec;
33 use rustc_macros::HashStable_Generic;
34 use rustc_serialize::{self, Decoder, Encoder};
35 use rustc_span::source_map::{respan, Spanned};
36 use rustc_span::symbol::{kw, sym, Ident, Symbol};
37 use rustc_span::{Span, DUMMY_SP};
38
39 use std::cmp::Ordering;
40 use std::convert::TryFrom;
41 use std::fmt;
42 use std::mem;
43
44 #[cfg(test)]
45 mod tests;
46
47 /// A "Label" is an identifier of some point in sources,
48 /// e.g. in the following code:
49 ///
50 /// ```rust
51 /// 'outer: loop {
52 ///     break 'outer;
53 /// }
54 /// ```
55 ///
56 /// `'outer` is a label.
57 #[derive(Clone, Encodable, Decodable, Copy, HashStable_Generic, Eq, PartialEq)]
58 pub struct Label {
59     pub ident: Ident,
60 }
61
62 impl fmt::Debug for Label {
63     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
64         write!(f, "label({:?})", self.ident)
65     }
66 }
67
68 /// A "Lifetime" is an annotation of the scope in which variable
69 /// can be used, e.g. `'a` in `&'a i32`.
70 #[derive(Clone, Encodable, Decodable, Copy)]
71 pub struct Lifetime {
72     pub id: NodeId,
73     pub ident: Ident,
74 }
75
76 impl fmt::Debug for Lifetime {
77     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
78         write!(f, "lifetime({}: {})", self.id, self)
79     }
80 }
81
82 impl fmt::Display for Lifetime {
83     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
84         write!(f, "{}", self.ident.name)
85     }
86 }
87
88 /// A "Path" is essentially Rust's notion of a name.
89 ///
90 /// It's represented as a sequence of identifiers,
91 /// along with a bunch of supporting information.
92 ///
93 /// E.g., `std::cmp::PartialEq`.
94 #[derive(Clone, Encodable, Decodable, Debug)]
95 pub struct Path {
96     pub span: Span,
97     /// The segments in the path: the things separated by `::`.
98     /// Global paths begin with `kw::PathRoot`.
99     pub segments: Vec<PathSegment>,
100     pub tokens: Option<LazyTokenStream>,
101 }
102
103 impl PartialEq<Symbol> for Path {
104     #[inline]
105     fn eq(&self, symbol: &Symbol) -> bool {
106         self.segments.len() == 1 && { self.segments[0].ident.name == *symbol }
107     }
108 }
109
110 impl<CTX: rustc_span::HashStableContext> HashStable<CTX> for Path {
111     fn hash_stable(&self, hcx: &mut CTX, hasher: &mut StableHasher) {
112         self.segments.len().hash_stable(hcx, hasher);
113         for segment in &self.segments {
114             segment.ident.hash_stable(hcx, hasher);
115         }
116     }
117 }
118
119 impl Path {
120     // Convert a span and an identifier to the corresponding
121     // one-segment path.
122     pub fn from_ident(ident: Ident) -> Path {
123         Path { segments: vec![PathSegment::from_ident(ident)], span: ident.span, tokens: None }
124     }
125
126     pub fn is_global(&self) -> bool {
127         !self.segments.is_empty() && self.segments[0].ident.name == kw::PathRoot
128     }
129 }
130
131 /// A segment of a path: an identifier, an optional lifetime, and a set of types.
132 ///
133 /// E.g., `std`, `String` or `Box<T>`.
134 #[derive(Clone, Encodable, Decodable, Debug)]
135 pub struct PathSegment {
136     /// The identifier portion of this path segment.
137     pub ident: Ident,
138
139     pub id: NodeId,
140
141     /// Type/lifetime parameters attached to this path. They come in
142     /// two flavors: `Path<A,B,C>` and `Path(A,B) -> C`.
143     /// `None` means that no parameter list is supplied (`Path`),
144     /// `Some` means that parameter list is supplied (`Path<X, Y>`)
145     /// but it can be empty (`Path<>`).
146     /// `P` is used as a size optimization for the common case with no parameters.
147     pub args: Option<P<GenericArgs>>,
148 }
149
150 impl PathSegment {
151     pub fn from_ident(ident: Ident) -> Self {
152         PathSegment { ident, id: DUMMY_NODE_ID, args: None }
153     }
154
155     pub fn path_root(span: Span) -> Self {
156         PathSegment::from_ident(Ident::new(kw::PathRoot, span))
157     }
158
159     pub fn span(&self) -> Span {
160         match &self.args {
161             Some(args) => self.ident.span.to(args.span()),
162             None => self.ident.span,
163         }
164     }
165 }
166
167 /// The arguments of a path segment.
168 ///
169 /// E.g., `<A, B>` as in `Foo<A, B>` or `(A, B)` as in `Foo(A, B)`.
170 #[derive(Clone, Encodable, Decodable, Debug)]
171 pub enum GenericArgs {
172     /// The `<'a, A, B, C>` in `foo::bar::baz::<'a, A, B, C>`.
173     AngleBracketed(AngleBracketedArgs),
174     /// The `(A, B)` and `C` in `Foo(A, B) -> C`.
175     Parenthesized(ParenthesizedArgs),
176 }
177
178 impl GenericArgs {
179     pub fn is_angle_bracketed(&self) -> bool {
180         matches!(self, AngleBracketed(..))
181     }
182
183     pub fn span(&self) -> Span {
184         match *self {
185             AngleBracketed(ref data) => data.span,
186             Parenthesized(ref data) => data.span,
187         }
188     }
189 }
190
191 /// Concrete argument in the sequence of generic args.
192 #[derive(Clone, Encodable, Decodable, Debug)]
193 pub enum GenericArg {
194     /// `'a` in `Foo<'a>`
195     Lifetime(Lifetime),
196     /// `Bar` in `Foo<Bar>`
197     Type(P<Ty>),
198     /// `1` in `Foo<1>`
199     Const(AnonConst),
200 }
201
202 impl GenericArg {
203     pub fn span(&self) -> Span {
204         match self {
205             GenericArg::Lifetime(lt) => lt.ident.span,
206             GenericArg::Type(ty) => ty.span,
207             GenericArg::Const(ct) => ct.value.span,
208         }
209     }
210 }
211
212 /// A path like `Foo<'a, T>`.
213 #[derive(Clone, Encodable, Decodable, Debug, Default)]
214 pub struct AngleBracketedArgs {
215     /// The overall span.
216     pub span: Span,
217     /// The comma separated parts in the `<...>`.
218     pub args: Vec<AngleBracketedArg>,
219 }
220
221 /// Either an argument for a parameter e.g., `'a`, `Vec<u8>`, `0`,
222 /// or a constraint on an associated item, e.g., `Item = String` or `Item: Bound`.
223 #[derive(Clone, Encodable, Decodable, Debug)]
224 pub enum AngleBracketedArg {
225     /// Argument for a generic parameter.
226     Arg(GenericArg),
227     /// Constraint for an associated item.
228     Constraint(AssocConstraint),
229 }
230
231 impl AngleBracketedArg {
232     pub fn span(&self) -> Span {
233         match self {
234             AngleBracketedArg::Arg(arg) => arg.span(),
235             AngleBracketedArg::Constraint(constraint) => constraint.span,
236         }
237     }
238 }
239
240 impl Into<Option<P<GenericArgs>>> for AngleBracketedArgs {
241     fn into(self) -> Option<P<GenericArgs>> {
242         Some(P(GenericArgs::AngleBracketed(self)))
243     }
244 }
245
246 impl Into<Option<P<GenericArgs>>> for ParenthesizedArgs {
247     fn into(self) -> Option<P<GenericArgs>> {
248         Some(P(GenericArgs::Parenthesized(self)))
249     }
250 }
251
252 /// A path like `Foo(A, B) -> C`.
253 #[derive(Clone, Encodable, Decodable, Debug)]
254 pub struct ParenthesizedArgs {
255     /// ```text
256     /// Foo(A, B) -> C
257     /// ^^^^^^^^^^^^^^
258     /// ```
259     pub span: Span,
260
261     /// `(A, B)`
262     pub inputs: Vec<P<Ty>>,
263
264     /// ```text
265     /// Foo(A, B) -> C
266     ///    ^^^^^^
267     /// ```
268     pub inputs_span: Span,
269
270     /// `C`
271     pub output: FnRetTy,
272 }
273
274 impl ParenthesizedArgs {
275     pub fn as_angle_bracketed_args(&self) -> AngleBracketedArgs {
276         let args = self
277             .inputs
278             .iter()
279             .cloned()
280             .map(|input| AngleBracketedArg::Arg(GenericArg::Type(input)))
281             .collect();
282         AngleBracketedArgs { span: self.inputs_span, args }
283     }
284 }
285
286 pub use crate::node_id::{NodeId, CRATE_NODE_ID, DUMMY_NODE_ID};
287
288 /// A modifier on a bound, e.g., `?Trait` or `~const Trait`.
289 ///
290 /// Negative bounds should also be handled here.
291 #[derive(Copy, Clone, PartialEq, Eq, Encodable, Decodable, Debug)]
292 pub enum TraitBoundModifier {
293     /// No modifiers
294     None,
295
296     /// `?Trait`
297     Maybe,
298
299     /// `~const Trait`
300     MaybeConst,
301
302     /// `~const ?Trait`
303     //
304     // This parses but will be rejected during AST validation.
305     MaybeConstMaybe,
306 }
307
308 /// The AST represents all type param bounds as types.
309 /// `typeck::collect::compute_bounds` matches these against
310 /// the "special" built-in traits (see `middle::lang_items`) and
311 /// detects `Copy`, `Send` and `Sync`.
312 #[derive(Clone, Encodable, Decodable, Debug)]
313 pub enum GenericBound {
314     Trait(PolyTraitRef, TraitBoundModifier),
315     Outlives(Lifetime),
316 }
317
318 impl GenericBound {
319     pub fn span(&self) -> Span {
320         match self {
321             GenericBound::Trait(ref t, ..) => t.span,
322             GenericBound::Outlives(ref l) => l.ident.span,
323         }
324     }
325 }
326
327 pub type GenericBounds = Vec<GenericBound>;
328
329 /// Specifies the enforced ordering for generic parameters. In the future,
330 /// if we wanted to relax this order, we could override `PartialEq` and
331 /// `PartialOrd`, to allow the kinds to be unordered.
332 #[derive(Hash, Clone, Copy)]
333 pub enum ParamKindOrd {
334     Lifetime,
335     Type,
336     Const,
337     // `Infer` is not actually constructed directly from the AST, but is implicitly constructed
338     // during HIR lowering, and `ParamKindOrd` will implicitly order inferred variables last.
339     Infer,
340 }
341
342 impl Ord for ParamKindOrd {
343     fn cmp(&self, other: &Self) -> Ordering {
344         use ParamKindOrd::*;
345         let to_int = |v| match v {
346             Lifetime => 0,
347             Infer | Type | Const => 1,
348         };
349
350         to_int(*self).cmp(&to_int(*other))
351     }
352 }
353 impl PartialOrd for ParamKindOrd {
354     fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
355         Some(self.cmp(other))
356     }
357 }
358 impl PartialEq for ParamKindOrd {
359     fn eq(&self, other: &Self) -> bool {
360         self.cmp(other) == Ordering::Equal
361     }
362 }
363 impl Eq for ParamKindOrd {}
364
365 impl fmt::Display for ParamKindOrd {
366     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
367         match self {
368             ParamKindOrd::Lifetime => "lifetime".fmt(f),
369             ParamKindOrd::Type => "type".fmt(f),
370             ParamKindOrd::Const { .. } => "const".fmt(f),
371             ParamKindOrd::Infer => "infer".fmt(f),
372         }
373     }
374 }
375
376 #[derive(Clone, Encodable, Decodable, Debug)]
377 pub enum GenericParamKind {
378     /// A lifetime definition (e.g., `'a: 'b + 'c + 'd`).
379     Lifetime,
380     Type {
381         default: Option<P<Ty>>,
382     },
383     Const {
384         ty: P<Ty>,
385         /// Span of the `const` keyword.
386         kw_span: Span,
387         /// Optional default value for the const generic param
388         default: Option<AnonConst>,
389     },
390 }
391
392 #[derive(Clone, Encodable, Decodable, Debug)]
393 pub struct GenericParam {
394     pub id: NodeId,
395     pub ident: Ident,
396     pub attrs: AttrVec,
397     pub bounds: GenericBounds,
398     pub is_placeholder: bool,
399     pub kind: GenericParamKind,
400     pub colon_span: Option<Span>,
401 }
402
403 impl GenericParam {
404     pub fn span(&self) -> Span {
405         match &self.kind {
406             GenericParamKind::Lifetime | GenericParamKind::Type { default: None } => {
407                 self.ident.span
408             }
409             GenericParamKind::Type { default: Some(ty) } => self.ident.span.to(ty.span),
410             GenericParamKind::Const { kw_span, default: Some(default), .. } => {
411                 kw_span.to(default.value.span)
412             }
413             GenericParamKind::Const { kw_span, default: None, ty } => kw_span.to(ty.span),
414         }
415     }
416 }
417
418 /// Represents lifetime, type and const parameters attached to a declaration of
419 /// a function, enum, trait, etc.
420 #[derive(Clone, Encodable, Decodable, Debug)]
421 pub struct Generics {
422     pub params: Vec<GenericParam>,
423     pub where_clause: WhereClause,
424     pub span: Span,
425 }
426
427 impl Default for Generics {
428     /// Creates an instance of `Generics`.
429     fn default() -> Generics {
430         Generics {
431             params: Vec::new(),
432             where_clause: WhereClause {
433                 has_where_token: false,
434                 predicates: Vec::new(),
435                 span: DUMMY_SP,
436             },
437             span: DUMMY_SP,
438         }
439     }
440 }
441
442 /// A where-clause in a definition.
443 #[derive(Clone, Encodable, Decodable, Debug)]
444 pub struct WhereClause {
445     /// `true` if we ate a `where` token: this can happen
446     /// if we parsed no predicates (e.g. `struct Foo where {}`).
447     /// This allows us to accurately pretty-print
448     /// in `nt_to_tokenstream`
449     pub has_where_token: bool,
450     pub predicates: Vec<WherePredicate>,
451     pub span: Span,
452 }
453
454 /// A single predicate in a where-clause.
455 #[derive(Clone, Encodable, Decodable, Debug)]
456 pub enum WherePredicate {
457     /// A type binding (e.g., `for<'c> Foo: Send + Clone + 'c`).
458     BoundPredicate(WhereBoundPredicate),
459     /// A lifetime predicate (e.g., `'a: 'b + 'c`).
460     RegionPredicate(WhereRegionPredicate),
461     /// An equality predicate (unsupported).
462     EqPredicate(WhereEqPredicate),
463 }
464
465 impl WherePredicate {
466     pub fn span(&self) -> Span {
467         match self {
468             WherePredicate::BoundPredicate(p) => p.span,
469             WherePredicate::RegionPredicate(p) => p.span,
470             WherePredicate::EqPredicate(p) => p.span,
471         }
472     }
473 }
474
475 /// A type bound.
476 ///
477 /// E.g., `for<'c> Foo: Send + Clone + 'c`.
478 #[derive(Clone, Encodable, Decodable, Debug)]
479 pub struct WhereBoundPredicate {
480     pub span: Span,
481     /// Any generics from a `for` binding.
482     pub bound_generic_params: Vec<GenericParam>,
483     /// The type being bounded.
484     pub bounded_ty: P<Ty>,
485     /// Trait and lifetime bounds (`Clone + Send + 'static`).
486     pub bounds: GenericBounds,
487 }
488
489 /// A lifetime predicate.
490 ///
491 /// E.g., `'a: 'b + 'c`.
492 #[derive(Clone, Encodable, Decodable, Debug)]
493 pub struct WhereRegionPredicate {
494     pub span: Span,
495     pub lifetime: Lifetime,
496     pub bounds: GenericBounds,
497 }
498
499 /// An equality predicate (unsupported).
500 ///
501 /// E.g., `T = int`.
502 #[derive(Clone, Encodable, Decodable, Debug)]
503 pub struct WhereEqPredicate {
504     pub id: NodeId,
505     pub span: Span,
506     pub lhs_ty: P<Ty>,
507     pub rhs_ty: P<Ty>,
508 }
509
510 #[derive(Clone, Encodable, Decodable, Debug)]
511 pub struct Crate {
512     pub attrs: Vec<Attribute>,
513     pub items: Vec<P<Item>>,
514     pub spans: ModSpans,
515     /// Must be equal to `CRATE_NODE_ID` after the crate root is expanded, but may hold
516     /// expansion placeholders or an unassigned value (`DUMMY_NODE_ID`) before that.
517     pub id: NodeId,
518     pub is_placeholder: bool,
519 }
520
521 /// Possible values inside of compile-time attribute lists.
522 ///
523 /// E.g., the '..' in `#[name(..)]`.
524 #[derive(Clone, Encodable, Decodable, Debug, HashStable_Generic)]
525 pub enum NestedMetaItem {
526     /// A full MetaItem, for recursive meta items.
527     MetaItem(MetaItem),
528     /// A literal.
529     ///
530     /// E.g., `"foo"`, `64`, `true`.
531     Literal(Lit),
532 }
533
534 /// A spanned compile-time attribute item.
535 ///
536 /// E.g., `#[test]`, `#[derive(..)]`, `#[rustfmt::skip]` or `#[feature = "foo"]`.
537 #[derive(Clone, Encodable, Decodable, Debug, HashStable_Generic)]
538 pub struct MetaItem {
539     pub path: Path,
540     pub kind: MetaItemKind,
541     pub span: Span,
542 }
543
544 /// A compile-time attribute item.
545 ///
546 /// E.g., `#[test]`, `#[derive(..)]` or `#[feature = "foo"]`.
547 #[derive(Clone, Encodable, Decodable, Debug, HashStable_Generic)]
548 pub enum MetaItemKind {
549     /// Word meta item.
550     ///
551     /// E.g., `test` as in `#[test]`.
552     Word,
553     /// List meta item.
554     ///
555     /// E.g., `derive(..)` as in `#[derive(..)]`.
556     List(Vec<NestedMetaItem>),
557     /// Name value meta item.
558     ///
559     /// E.g., `feature = "foo"` as in `#[feature = "foo"]`.
560     NameValue(Lit),
561 }
562
563 /// A block (`{ .. }`).
564 ///
565 /// E.g., `{ .. }` as in `fn foo() { .. }`.
566 #[derive(Clone, Encodable, Decodable, Debug)]
567 pub struct Block {
568     /// The statements in the block.
569     pub stmts: Vec<Stmt>,
570     pub id: NodeId,
571     /// Distinguishes between `unsafe { ... }` and `{ ... }`.
572     pub rules: BlockCheckMode,
573     pub span: Span,
574     pub tokens: Option<LazyTokenStream>,
575     /// The following *isn't* a parse error, but will cause multiple errors in following stages.
576     /// ```
577     /// let x = {
578     ///     foo: var
579     /// };
580     /// ```
581     /// #34255
582     pub could_be_bare_literal: bool,
583 }
584
585 /// A match pattern.
586 ///
587 /// Patterns appear in match statements and some other contexts, such as `let` and `if let`.
588 #[derive(Clone, Encodable, Decodable, Debug)]
589 pub struct Pat {
590     pub id: NodeId,
591     pub kind: PatKind,
592     pub span: Span,
593     pub tokens: Option<LazyTokenStream>,
594 }
595
596 impl Pat {
597     /// Attempt reparsing the pattern as a type.
598     /// This is intended for use by diagnostics.
599     pub fn to_ty(&self) -> Option<P<Ty>> {
600         let kind = match &self.kind {
601             // In a type expression `_` is an inference variable.
602             PatKind::Wild => TyKind::Infer,
603             // An IDENT pattern with no binding mode would be valid as path to a type. E.g. `u32`.
604             PatKind::Ident(BindingMode::ByValue(Mutability::Not), ident, None) => {
605                 TyKind::Path(None, Path::from_ident(*ident))
606             }
607             PatKind::Path(qself, path) => TyKind::Path(qself.clone(), path.clone()),
608             PatKind::MacCall(mac) => TyKind::MacCall(mac.clone()),
609             // `&mut? P` can be reinterpreted as `&mut? T` where `T` is `P` reparsed as a type.
610             PatKind::Ref(pat, mutbl) => {
611                 pat.to_ty().map(|ty| TyKind::Rptr(None, MutTy { ty, mutbl: *mutbl }))?
612             }
613             // A slice/array pattern `[P]` can be reparsed as `[T]`, an unsized array,
614             // when `P` can be reparsed as a type `T`.
615             PatKind::Slice(pats) if pats.len() == 1 => pats[0].to_ty().map(TyKind::Slice)?,
616             // A tuple pattern `(P0, .., Pn)` can be reparsed as `(T0, .., Tn)`
617             // assuming `T0` to `Tn` are all syntactically valid as types.
618             PatKind::Tuple(pats) => {
619                 let mut tys = Vec::with_capacity(pats.len());
620                 // FIXME(#48994) - could just be collected into an Option<Vec>
621                 for pat in pats {
622                     tys.push(pat.to_ty()?);
623                 }
624                 TyKind::Tup(tys)
625             }
626             _ => return None,
627         };
628
629         Some(P(Ty { kind, id: self.id, span: self.span, tokens: None }))
630     }
631
632     /// Walk top-down and call `it` in each place where a pattern occurs
633     /// starting with the root pattern `walk` is called on. If `it` returns
634     /// false then we will descend no further but siblings will be processed.
635     pub fn walk(&self, it: &mut impl FnMut(&Pat) -> bool) {
636         if !it(self) {
637             return;
638         }
639
640         match &self.kind {
641             // Walk into the pattern associated with `Ident` (if any).
642             PatKind::Ident(_, _, Some(p)) => p.walk(it),
643
644             // Walk into each field of struct.
645             PatKind::Struct(_, _, fields, _) => fields.iter().for_each(|field| field.pat.walk(it)),
646
647             // Sequence of patterns.
648             PatKind::TupleStruct(_, _, s)
649             | PatKind::Tuple(s)
650             | PatKind::Slice(s)
651             | PatKind::Or(s) => s.iter().for_each(|p| p.walk(it)),
652
653             // Trivial wrappers over inner patterns.
654             PatKind::Box(s) | PatKind::Ref(s, _) | PatKind::Paren(s) => s.walk(it),
655
656             // These patterns do not contain subpatterns, skip.
657             PatKind::Wild
658             | PatKind::Rest
659             | PatKind::Lit(_)
660             | PatKind::Range(..)
661             | PatKind::Ident(..)
662             | PatKind::Path(..)
663             | PatKind::MacCall(_) => {}
664         }
665     }
666
667     /// Is this a `..` pattern?
668     pub fn is_rest(&self) -> bool {
669         matches!(self.kind, PatKind::Rest)
670     }
671 }
672
673 /// A single field in a struct pattern.
674 ///
675 /// Patterns like the fields of `Foo { x, ref y, ref mut z }`
676 /// are treated the same as `x: x, y: ref y, z: ref mut z`,
677 /// except when `is_shorthand` is true.
678 #[derive(Clone, Encodable, Decodable, Debug)]
679 pub struct PatField {
680     /// The identifier for the field.
681     pub ident: Ident,
682     /// The pattern the field is destructured to.
683     pub pat: P<Pat>,
684     pub is_shorthand: bool,
685     pub attrs: AttrVec,
686     pub id: NodeId,
687     pub span: Span,
688     pub is_placeholder: bool,
689 }
690
691 #[derive(Clone, PartialEq, Encodable, Decodable, Debug, Copy)]
692 pub enum BindingMode {
693     ByRef(Mutability),
694     ByValue(Mutability),
695 }
696
697 #[derive(Clone, Encodable, Decodable, Debug)]
698 pub enum RangeEnd {
699     /// `..=` or `...`
700     Included(RangeSyntax),
701     /// `..`
702     Excluded,
703 }
704
705 #[derive(Clone, Encodable, Decodable, Debug)]
706 pub enum RangeSyntax {
707     /// `...`
708     DotDotDot,
709     /// `..=`
710     DotDotEq,
711 }
712
713 /// All the different flavors of pattern that Rust recognizes.
714 #[derive(Clone, Encodable, Decodable, Debug)]
715 pub enum PatKind {
716     /// Represents a wildcard pattern (`_`).
717     Wild,
718
719     /// A `PatKind::Ident` may either be a new bound variable (`ref mut binding @ OPT_SUBPATTERN`),
720     /// or a unit struct/variant pattern, or a const pattern (in the last two cases the third
721     /// field must be `None`). Disambiguation cannot be done with parser alone, so it happens
722     /// during name resolution.
723     Ident(BindingMode, Ident, Option<P<Pat>>),
724
725     /// A struct or struct variant pattern (e.g., `Variant {x, y, ..}`).
726     /// The `bool` is `true` in the presence of a `..`.
727     Struct(Option<QSelf>, Path, Vec<PatField>, /* recovered */ bool),
728
729     /// A tuple struct/variant pattern (`Variant(x, y, .., z)`).
730     TupleStruct(Option<QSelf>, Path, Vec<P<Pat>>),
731
732     /// An or-pattern `A | B | C`.
733     /// Invariant: `pats.len() >= 2`.
734     Or(Vec<P<Pat>>),
735
736     /// A possibly qualified path pattern.
737     /// Unqualified path patterns `A::B::C` can legally refer to variants, structs, constants
738     /// or associated constants. Qualified path patterns `<A>::B::C`/`<A as Trait>::B::C` can
739     /// only legally refer to associated constants.
740     Path(Option<QSelf>, Path),
741
742     /// A tuple pattern (`(a, b)`).
743     Tuple(Vec<P<Pat>>),
744
745     /// A `box` pattern.
746     Box(P<Pat>),
747
748     /// A reference pattern (e.g., `&mut (a, b)`).
749     Ref(P<Pat>, Mutability),
750
751     /// A literal.
752     Lit(P<Expr>),
753
754     /// A range pattern (e.g., `1...2`, `1..2`, `1..`, `..2`, `1..=2`, `..=2`).
755     Range(Option<P<Expr>>, Option<P<Expr>>, Spanned<RangeEnd>),
756
757     /// A slice pattern `[a, b, c]`.
758     Slice(Vec<P<Pat>>),
759
760     /// A rest pattern `..`.
761     ///
762     /// Syntactically it is valid anywhere.
763     ///
764     /// Semantically however, it only has meaning immediately inside:
765     /// - a slice pattern: `[a, .., b]`,
766     /// - a binding pattern immediately inside a slice pattern: `[a, r @ ..]`,
767     /// - a tuple pattern: `(a, .., b)`,
768     /// - a tuple struct/variant pattern: `$path(a, .., b)`.
769     ///
770     /// In all of these cases, an additional restriction applies,
771     /// only one rest pattern may occur in the pattern sequences.
772     Rest,
773
774     /// Parentheses in patterns used for grouping (i.e., `(PAT)`).
775     Paren(P<Pat>),
776
777     /// A macro pattern; pre-expansion.
778     MacCall(MacCall),
779 }
780
781 #[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, Copy)]
782 #[derive(HashStable_Generic, Encodable, Decodable)]
783 pub enum Mutability {
784     Mut,
785     Not,
786 }
787
788 impl Mutability {
789     pub fn invert(self) -> Self {
790         match self {
791             Mutability::Mut => Mutability::Not,
792             Mutability::Not => Mutability::Mut,
793         }
794     }
795
796     pub fn prefix_str(&self) -> &'static str {
797         match self {
798             Mutability::Mut => "mut ",
799             Mutability::Not => "",
800         }
801     }
802 }
803
804 /// The kind of borrow in an `AddrOf` expression,
805 /// e.g., `&place` or `&raw const place`.
806 #[derive(Clone, Copy, PartialEq, Eq, Debug)]
807 #[derive(Encodable, Decodable, HashStable_Generic)]
808 pub enum BorrowKind {
809     /// A normal borrow, `&$expr` or `&mut $expr`.
810     /// The resulting type is either `&'a T` or `&'a mut T`
811     /// where `T = typeof($expr)` and `'a` is some lifetime.
812     Ref,
813     /// A raw borrow, `&raw const $expr` or `&raw mut $expr`.
814     /// The resulting type is either `*const T` or `*mut T`
815     /// where `T = typeof($expr)`.
816     Raw,
817 }
818
819 #[derive(Clone, PartialEq, Encodable, Decodable, Debug, Copy)]
820 pub enum BinOpKind {
821     /// The `+` operator (addition)
822     Add,
823     /// The `-` operator (subtraction)
824     Sub,
825     /// The `*` operator (multiplication)
826     Mul,
827     /// The `/` operator (division)
828     Div,
829     /// The `%` operator (modulus)
830     Rem,
831     /// The `&&` operator (logical and)
832     And,
833     /// The `||` operator (logical or)
834     Or,
835     /// The `^` operator (bitwise xor)
836     BitXor,
837     /// The `&` operator (bitwise and)
838     BitAnd,
839     /// The `|` operator (bitwise or)
840     BitOr,
841     /// The `<<` operator (shift left)
842     Shl,
843     /// The `>>` operator (shift right)
844     Shr,
845     /// The `==` operator (equality)
846     Eq,
847     /// The `<` operator (less than)
848     Lt,
849     /// The `<=` operator (less than or equal to)
850     Le,
851     /// The `!=` operator (not equal to)
852     Ne,
853     /// The `>=` operator (greater than or equal to)
854     Ge,
855     /// The `>` operator (greater than)
856     Gt,
857 }
858
859 impl BinOpKind {
860     pub fn to_string(&self) -> &'static str {
861         use BinOpKind::*;
862         match *self {
863             Add => "+",
864             Sub => "-",
865             Mul => "*",
866             Div => "/",
867             Rem => "%",
868             And => "&&",
869             Or => "||",
870             BitXor => "^",
871             BitAnd => "&",
872             BitOr => "|",
873             Shl => "<<",
874             Shr => ">>",
875             Eq => "==",
876             Lt => "<",
877             Le => "<=",
878             Ne => "!=",
879             Ge => ">=",
880             Gt => ">",
881         }
882     }
883     pub fn lazy(&self) -> bool {
884         matches!(self, BinOpKind::And | BinOpKind::Or)
885     }
886
887     pub fn is_comparison(&self) -> bool {
888         use BinOpKind::*;
889         // Note for developers: please keep this as is;
890         // we want compilation to fail if another variant is added.
891         match *self {
892             Eq | Lt | Le | Ne | Gt | Ge => true,
893             And | Or | Add | Sub | Mul | Div | Rem | BitXor | BitAnd | BitOr | Shl | Shr => false,
894         }
895     }
896 }
897
898 pub type BinOp = Spanned<BinOpKind>;
899
900 /// Unary operator.
901 ///
902 /// Note that `&data` is not an operator, it's an `AddrOf` expression.
903 #[derive(Clone, Encodable, Decodable, Debug, Copy)]
904 pub enum UnOp {
905     /// The `*` operator for dereferencing
906     Deref,
907     /// The `!` operator for logical inversion
908     Not,
909     /// The `-` operator for negation
910     Neg,
911 }
912
913 impl UnOp {
914     pub fn to_string(op: UnOp) -> &'static str {
915         match op {
916             UnOp::Deref => "*",
917             UnOp::Not => "!",
918             UnOp::Neg => "-",
919         }
920     }
921 }
922
923 /// A statement
924 #[derive(Clone, Encodable, Decodable, Debug)]
925 pub struct Stmt {
926     pub id: NodeId,
927     pub kind: StmtKind,
928     pub span: Span,
929 }
930
931 impl Stmt {
932     pub fn tokens(&self) -> Option<&LazyTokenStream> {
933         match self.kind {
934             StmtKind::Local(ref local) => local.tokens.as_ref(),
935             StmtKind::Item(ref item) => item.tokens.as_ref(),
936             StmtKind::Expr(ref expr) | StmtKind::Semi(ref expr) => expr.tokens.as_ref(),
937             StmtKind::Empty => None,
938             StmtKind::MacCall(ref mac) => mac.tokens.as_ref(),
939         }
940     }
941
942     pub fn has_trailing_semicolon(&self) -> bool {
943         match &self.kind {
944             StmtKind::Semi(_) => true,
945             StmtKind::MacCall(mac) => matches!(mac.style, MacStmtStyle::Semicolon),
946             _ => false,
947         }
948     }
949
950     /// Converts a parsed `Stmt` to a `Stmt` with
951     /// a trailing semicolon.
952     ///
953     /// This only modifies the parsed AST struct, not the attached
954     /// `LazyTokenStream`. The parser is responsible for calling
955     /// `CreateTokenStream::add_trailing_semi` when there is actually
956     /// a semicolon in the tokenstream.
957     pub fn add_trailing_semicolon(mut self) -> Self {
958         self.kind = match self.kind {
959             StmtKind::Expr(expr) => StmtKind::Semi(expr),
960             StmtKind::MacCall(mac) => {
961                 StmtKind::MacCall(mac.map(|MacCallStmt { mac, style: _, attrs, tokens }| {
962                     MacCallStmt { mac, style: MacStmtStyle::Semicolon, attrs, tokens }
963                 }))
964             }
965             kind => kind,
966         };
967
968         self
969     }
970
971     pub fn is_item(&self) -> bool {
972         matches!(self.kind, StmtKind::Item(_))
973     }
974
975     pub fn is_expr(&self) -> bool {
976         matches!(self.kind, StmtKind::Expr(_))
977     }
978 }
979
980 #[derive(Clone, Encodable, Decodable, Debug)]
981 pub enum StmtKind {
982     /// A local (let) binding.
983     Local(P<Local>),
984     /// An item definition.
985     Item(P<Item>),
986     /// Expr without trailing semi-colon.
987     Expr(P<Expr>),
988     /// Expr with a trailing semi-colon.
989     Semi(P<Expr>),
990     /// Just a trailing semi-colon.
991     Empty,
992     /// Macro.
993     MacCall(P<MacCallStmt>),
994 }
995
996 #[derive(Clone, Encodable, Decodable, Debug)]
997 pub struct MacCallStmt {
998     pub mac: MacCall,
999     pub style: MacStmtStyle,
1000     pub attrs: AttrVec,
1001     pub tokens: Option<LazyTokenStream>,
1002 }
1003
1004 #[derive(Clone, Copy, PartialEq, Encodable, Decodable, Debug)]
1005 pub enum MacStmtStyle {
1006     /// The macro statement had a trailing semicolon (e.g., `foo! { ... };`
1007     /// `foo!(...);`, `foo![...];`).
1008     Semicolon,
1009     /// The macro statement had braces (e.g., `foo! { ... }`).
1010     Braces,
1011     /// The macro statement had parentheses or brackets and no semicolon (e.g.,
1012     /// `foo!(...)`). All of these will end up being converted into macro
1013     /// expressions.
1014     NoBraces,
1015 }
1016
1017 /// Local represents a `let` statement, e.g., `let <pat>:<ty> = <expr>;`.
1018 #[derive(Clone, Encodable, Decodable, Debug)]
1019 pub struct Local {
1020     pub id: NodeId,
1021     pub pat: P<Pat>,
1022     pub ty: Option<P<Ty>>,
1023     pub kind: LocalKind,
1024     pub span: Span,
1025     pub attrs: AttrVec,
1026     pub tokens: Option<LazyTokenStream>,
1027 }
1028
1029 #[derive(Clone, Encodable, Decodable, Debug)]
1030 pub enum LocalKind {
1031     /// Local declaration.
1032     /// Example: `let x;`
1033     Decl,
1034     /// Local declaration with an initializer.
1035     /// Example: `let x = y;`
1036     Init(P<Expr>),
1037     /// Local declaration with an initializer and an `else` clause.
1038     /// Example: `let Some(x) = y else { return };`
1039     InitElse(P<Expr>, P<Block>),
1040 }
1041
1042 impl LocalKind {
1043     pub fn init(&self) -> Option<&Expr> {
1044         match self {
1045             Self::Decl => None,
1046             Self::Init(i) | Self::InitElse(i, _) => Some(i),
1047         }
1048     }
1049
1050     pub fn init_else_opt(&self) -> Option<(&Expr, Option<&Block>)> {
1051         match self {
1052             Self::Decl => None,
1053             Self::Init(init) => Some((init, None)),
1054             Self::InitElse(init, els) => Some((init, Some(els))),
1055         }
1056     }
1057 }
1058
1059 /// An arm of a 'match'.
1060 ///
1061 /// E.g., `0..=10 => { println!("match!") }` as in
1062 ///
1063 /// ```
1064 /// match 123 {
1065 ///     0..=10 => { println!("match!") },
1066 ///     _ => { println!("no match!") },
1067 /// }
1068 /// ```
1069 #[derive(Clone, Encodable, Decodable, Debug)]
1070 pub struct Arm {
1071     pub attrs: AttrVec,
1072     /// Match arm pattern, e.g. `10` in `match foo { 10 => {}, _ => {} }`
1073     pub pat: P<Pat>,
1074     /// Match arm guard, e.g. `n > 10` in `match foo { n if n > 10 => {}, _ => {} }`
1075     pub guard: Option<P<Expr>>,
1076     /// Match arm body.
1077     pub body: P<Expr>,
1078     pub span: Span,
1079     pub id: NodeId,
1080     pub is_placeholder: bool,
1081 }
1082
1083 /// A single field in a struct expression, e.g. `x: value` and `y` in `Foo { x: value, y }`.
1084 #[derive(Clone, Encodable, Decodable, Debug)]
1085 pub struct ExprField {
1086     pub attrs: AttrVec,
1087     pub id: NodeId,
1088     pub span: Span,
1089     pub ident: Ident,
1090     pub expr: P<Expr>,
1091     pub is_shorthand: bool,
1092     pub is_placeholder: bool,
1093 }
1094
1095 #[derive(Clone, PartialEq, Encodable, Decodable, Debug, Copy)]
1096 pub enum BlockCheckMode {
1097     Default,
1098     Unsafe(UnsafeSource),
1099 }
1100
1101 #[derive(Clone, PartialEq, Encodable, Decodable, Debug, Copy)]
1102 pub enum UnsafeSource {
1103     CompilerGenerated,
1104     UserProvided,
1105 }
1106
1107 /// A constant (expression) that's not an item or associated item,
1108 /// but needs its own `DefId` for type-checking, const-eval, etc.
1109 /// These are usually found nested inside types (e.g., array lengths)
1110 /// or expressions (e.g., repeat counts), and also used to define
1111 /// explicit discriminant values for enum variants.
1112 #[derive(Clone, Encodable, Decodable, Debug)]
1113 pub struct AnonConst {
1114     pub id: NodeId,
1115     pub value: P<Expr>,
1116 }
1117
1118 /// An expression.
1119 #[derive(Clone, Encodable, Decodable, Debug)]
1120 pub struct Expr {
1121     pub id: NodeId,
1122     pub kind: ExprKind,
1123     pub span: Span,
1124     pub attrs: AttrVec,
1125     pub tokens: Option<LazyTokenStream>,
1126 }
1127
1128 // `Expr` is used a lot. Make sure it doesn't unintentionally get bigger.
1129 #[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
1130 rustc_data_structures::static_assert_size!(Expr, 104);
1131
1132 impl Expr {
1133     /// Returns `true` if this expression would be valid somewhere that expects a value;
1134     /// for example, an `if` condition.
1135     pub fn returns(&self) -> bool {
1136         if let ExprKind::Block(ref block, _) = self.kind {
1137             match block.stmts.last().map(|last_stmt| &last_stmt.kind) {
1138                 // Implicit return
1139                 Some(StmtKind::Expr(_)) => true,
1140                 // Last statement is an explicit return?
1141                 Some(StmtKind::Semi(expr)) => matches!(expr.kind, ExprKind::Ret(_)),
1142                 // This is a block that doesn't end in either an implicit or explicit return.
1143                 _ => false,
1144             }
1145         } else {
1146             // This is not a block, it is a value.
1147             true
1148         }
1149     }
1150
1151     /// Is this expr either `N`, or `{ N }`.
1152     ///
1153     /// If this is not the case, name resolution does not resolve `N` when using
1154     /// `min_const_generics` as more complex expressions are not supported.
1155     pub fn is_potential_trivial_const_param(&self) -> bool {
1156         let this = if let ExprKind::Block(ref block, None) = self.kind {
1157             if block.stmts.len() == 1 {
1158                 if let StmtKind::Expr(ref expr) = block.stmts[0].kind { expr } else { self }
1159             } else {
1160                 self
1161             }
1162         } else {
1163             self
1164         };
1165
1166         if let ExprKind::Path(None, ref path) = this.kind {
1167             if path.segments.len() == 1 && path.segments[0].args.is_none() {
1168                 return true;
1169             }
1170         }
1171
1172         false
1173     }
1174
1175     pub fn to_bound(&self) -> Option<GenericBound> {
1176         match &self.kind {
1177             ExprKind::Path(None, path) => Some(GenericBound::Trait(
1178                 PolyTraitRef::new(Vec::new(), path.clone(), self.span),
1179                 TraitBoundModifier::None,
1180             )),
1181             _ => None,
1182         }
1183     }
1184
1185     pub fn peel_parens(&self) -> &Expr {
1186         let mut expr = self;
1187         while let ExprKind::Paren(inner) = &expr.kind {
1188             expr = &inner;
1189         }
1190         expr
1191     }
1192
1193     /// Attempts to reparse as `Ty` (for diagnostic purposes).
1194     pub fn to_ty(&self) -> Option<P<Ty>> {
1195         let kind = match &self.kind {
1196             // Trivial conversions.
1197             ExprKind::Path(qself, path) => TyKind::Path(qself.clone(), path.clone()),
1198             ExprKind::MacCall(mac) => TyKind::MacCall(mac.clone()),
1199
1200             ExprKind::Paren(expr) => expr.to_ty().map(TyKind::Paren)?,
1201
1202             ExprKind::AddrOf(BorrowKind::Ref, mutbl, expr) => {
1203                 expr.to_ty().map(|ty| TyKind::Rptr(None, MutTy { ty, mutbl: *mutbl }))?
1204             }
1205
1206             ExprKind::Repeat(expr, expr_len) => {
1207                 expr.to_ty().map(|ty| TyKind::Array(ty, expr_len.clone()))?
1208             }
1209
1210             ExprKind::Array(exprs) if exprs.len() == 1 => exprs[0].to_ty().map(TyKind::Slice)?,
1211
1212             ExprKind::Tup(exprs) => {
1213                 let tys = exprs.iter().map(|expr| expr.to_ty()).collect::<Option<Vec<_>>>()?;
1214                 TyKind::Tup(tys)
1215             }
1216
1217             // If binary operator is `Add` and both `lhs` and `rhs` are trait bounds,
1218             // then type of result is trait object.
1219             // Otherwise we don't assume the result type.
1220             ExprKind::Binary(binop, lhs, rhs) if binop.node == BinOpKind::Add => {
1221                 if let (Some(lhs), Some(rhs)) = (lhs.to_bound(), rhs.to_bound()) {
1222                     TyKind::TraitObject(vec![lhs, rhs], TraitObjectSyntax::None)
1223                 } else {
1224                     return None;
1225                 }
1226             }
1227
1228             ExprKind::Underscore => TyKind::Infer,
1229
1230             // This expression doesn't look like a type syntactically.
1231             _ => return None,
1232         };
1233
1234         Some(P(Ty { kind, id: self.id, span: self.span, tokens: None }))
1235     }
1236
1237     pub fn precedence(&self) -> ExprPrecedence {
1238         match self.kind {
1239             ExprKind::Box(_) => ExprPrecedence::Box,
1240             ExprKind::Array(_) => ExprPrecedence::Array,
1241             ExprKind::ConstBlock(_) => ExprPrecedence::ConstBlock,
1242             ExprKind::Call(..) => ExprPrecedence::Call,
1243             ExprKind::MethodCall(..) => ExprPrecedence::MethodCall,
1244             ExprKind::Tup(_) => ExprPrecedence::Tup,
1245             ExprKind::Binary(op, ..) => ExprPrecedence::Binary(op.node),
1246             ExprKind::Unary(..) => ExprPrecedence::Unary,
1247             ExprKind::Lit(_) => ExprPrecedence::Lit,
1248             ExprKind::Type(..) | ExprKind::Cast(..) => ExprPrecedence::Cast,
1249             ExprKind::Let(..) => ExprPrecedence::Let,
1250             ExprKind::If(..) => ExprPrecedence::If,
1251             ExprKind::While(..) => ExprPrecedence::While,
1252             ExprKind::ForLoop(..) => ExprPrecedence::ForLoop,
1253             ExprKind::Loop(..) => ExprPrecedence::Loop,
1254             ExprKind::Match(..) => ExprPrecedence::Match,
1255             ExprKind::Closure(..) => ExprPrecedence::Closure,
1256             ExprKind::Block(..) => ExprPrecedence::Block,
1257             ExprKind::TryBlock(..) => ExprPrecedence::TryBlock,
1258             ExprKind::Async(..) => ExprPrecedence::Async,
1259             ExprKind::Await(..) => ExprPrecedence::Await,
1260             ExprKind::Assign(..) => ExprPrecedence::Assign,
1261             ExprKind::AssignOp(..) => ExprPrecedence::AssignOp,
1262             ExprKind::Field(..) => ExprPrecedence::Field,
1263             ExprKind::Index(..) => ExprPrecedence::Index,
1264             ExprKind::Range(..) => ExprPrecedence::Range,
1265             ExprKind::Underscore => ExprPrecedence::Path,
1266             ExprKind::Path(..) => ExprPrecedence::Path,
1267             ExprKind::AddrOf(..) => ExprPrecedence::AddrOf,
1268             ExprKind::Break(..) => ExprPrecedence::Break,
1269             ExprKind::Continue(..) => ExprPrecedence::Continue,
1270             ExprKind::Ret(..) => ExprPrecedence::Ret,
1271             ExprKind::InlineAsm(..) => ExprPrecedence::InlineAsm,
1272             ExprKind::MacCall(..) => ExprPrecedence::Mac,
1273             ExprKind::Struct(..) => ExprPrecedence::Struct,
1274             ExprKind::Repeat(..) => ExprPrecedence::Repeat,
1275             ExprKind::Paren(..) => ExprPrecedence::Paren,
1276             ExprKind::Try(..) => ExprPrecedence::Try,
1277             ExprKind::Yield(..) => ExprPrecedence::Yield,
1278             ExprKind::Err => ExprPrecedence::Err,
1279         }
1280     }
1281
1282     pub fn take(&mut self) -> Self {
1283         mem::replace(
1284             self,
1285             Expr {
1286                 id: DUMMY_NODE_ID,
1287                 kind: ExprKind::Err,
1288                 span: DUMMY_SP,
1289                 attrs: ThinVec::new(),
1290                 tokens: None,
1291             },
1292         )
1293     }
1294 }
1295
1296 /// Limit types of a range (inclusive or exclusive)
1297 #[derive(Copy, Clone, PartialEq, Encodable, Decodable, Debug)]
1298 pub enum RangeLimits {
1299     /// Inclusive at the beginning, exclusive at the end
1300     HalfOpen,
1301     /// Inclusive at the beginning and end
1302     Closed,
1303 }
1304
1305 #[derive(Clone, Encodable, Decodable, Debug)]
1306 pub enum StructRest {
1307     /// `..x`.
1308     Base(P<Expr>),
1309     /// `..`.
1310     Rest(Span),
1311     /// No trailing `..` or expression.
1312     None,
1313 }
1314
1315 #[derive(Clone, Encodable, Decodable, Debug)]
1316 pub struct StructExpr {
1317     pub qself: Option<QSelf>,
1318     pub path: Path,
1319     pub fields: Vec<ExprField>,
1320     pub rest: StructRest,
1321 }
1322
1323 #[derive(Clone, Encodable, Decodable, Debug)]
1324 pub enum ExprKind {
1325     /// A `box x` expression.
1326     Box(P<Expr>),
1327     /// An array (`[a, b, c, d]`)
1328     Array(Vec<P<Expr>>),
1329     /// Allow anonymous constants from an inline `const` block
1330     ConstBlock(AnonConst),
1331     /// A function call
1332     ///
1333     /// The first field resolves to the function itself,
1334     /// and the second field is the list of arguments.
1335     /// This also represents calling the constructor of
1336     /// tuple-like ADTs such as tuple structs and enum variants.
1337     Call(P<Expr>, Vec<P<Expr>>),
1338     /// A method call (`x.foo::<'static, Bar, Baz>(a, b, c, d)`)
1339     ///
1340     /// The `PathSegment` represents the method name and its generic arguments
1341     /// (within the angle brackets).
1342     /// The first element of the vector of an `Expr` is the expression that evaluates
1343     /// to the object on which the method is being called on (the receiver),
1344     /// and the remaining elements are the rest of the arguments.
1345     /// Thus, `x.foo::<Bar, Baz>(a, b, c, d)` is represented as
1346     /// `ExprKind::MethodCall(PathSegment { foo, [Bar, Baz] }, [x, a, b, c, d])`.
1347     /// This `Span` is the span of the function, without the dot and receiver
1348     /// (e.g. `foo(a, b)` in `x.foo(a, b)`
1349     MethodCall(PathSegment, Vec<P<Expr>>, Span),
1350     /// A tuple (e.g., `(a, b, c, d)`).
1351     Tup(Vec<P<Expr>>),
1352     /// A binary operation (e.g., `a + b`, `a * b`).
1353     Binary(BinOp, P<Expr>, P<Expr>),
1354     /// A unary operation (e.g., `!x`, `*x`).
1355     Unary(UnOp, P<Expr>),
1356     /// A literal (e.g., `1`, `"foo"`).
1357     Lit(Lit),
1358     /// A cast (e.g., `foo as f64`).
1359     Cast(P<Expr>, P<Ty>),
1360     /// A type ascription (e.g., `42: usize`).
1361     Type(P<Expr>, P<Ty>),
1362     /// A `let pat = expr` expression that is only semantically allowed in the condition
1363     /// of `if` / `while` expressions. (e.g., `if let 0 = x { .. }`).
1364     ///
1365     /// `Span` represents the whole `let pat = expr` statement.
1366     Let(P<Pat>, P<Expr>, Span),
1367     /// An `if` block, with an optional `else` block.
1368     ///
1369     /// `if expr { block } else { expr }`
1370     If(P<Expr>, P<Block>, Option<P<Expr>>),
1371     /// A while loop, with an optional label.
1372     ///
1373     /// `'label: while expr { block }`
1374     While(P<Expr>, P<Block>, Option<Label>),
1375     /// A `for` loop, with an optional label.
1376     ///
1377     /// `'label: for pat in expr { block }`
1378     ///
1379     /// This is desugared to a combination of `loop` and `match` expressions.
1380     ForLoop(P<Pat>, P<Expr>, P<Block>, Option<Label>),
1381     /// Conditionless loop (can be exited with `break`, `continue`, or `return`).
1382     ///
1383     /// `'label: loop { block }`
1384     Loop(P<Block>, Option<Label>),
1385     /// A `match` block.
1386     Match(P<Expr>, Vec<Arm>),
1387     /// A closure (e.g., `move |a, b, c| a + b + c`).
1388     ///
1389     /// The final span is the span of the argument block `|...|`.
1390     Closure(CaptureBy, Async, Movability, P<FnDecl>, P<Expr>, Span),
1391     /// A block (`'label: { ... }`).
1392     Block(P<Block>, Option<Label>),
1393     /// An async block (`async move { ... }`).
1394     ///
1395     /// The `NodeId` is the `NodeId` for the closure that results from
1396     /// desugaring an async block, just like the NodeId field in the
1397     /// `Async::Yes` variant. This is necessary in order to create a def for the
1398     /// closure which can be used as a parent of any child defs. Defs
1399     /// created during lowering cannot be made the parent of any other
1400     /// preexisting defs.
1401     Async(CaptureBy, NodeId, P<Block>),
1402     /// An await expression (`my_future.await`).
1403     Await(P<Expr>),
1404
1405     /// A try block (`try { ... }`).
1406     TryBlock(P<Block>),
1407
1408     /// An assignment (`a = foo()`).
1409     /// The `Span` argument is the span of the `=` token.
1410     Assign(P<Expr>, P<Expr>, Span),
1411     /// An assignment with an operator.
1412     ///
1413     /// E.g., `a += 1`.
1414     AssignOp(BinOp, P<Expr>, P<Expr>),
1415     /// Access of a named (e.g., `obj.foo`) or unnamed (e.g., `obj.0`) struct field.
1416     Field(P<Expr>, Ident),
1417     /// An indexing operation (e.g., `foo[2]`).
1418     Index(P<Expr>, P<Expr>),
1419     /// A range (e.g., `1..2`, `1..`, `..2`, `1..=2`, `..=2`; and `..` in destructuring assignment).
1420     Range(Option<P<Expr>>, Option<P<Expr>>, RangeLimits),
1421     /// An underscore, used in destructuring assignment to ignore a value.
1422     Underscore,
1423
1424     /// Variable reference, possibly containing `::` and/or type
1425     /// parameters (e.g., `foo::bar::<baz>`).
1426     ///
1427     /// Optionally "qualified" (e.g., `<Vec<T> as SomeTrait>::SomeType`).
1428     Path(Option<QSelf>, Path),
1429
1430     /// A referencing operation (`&a`, `&mut a`, `&raw const a` or `&raw mut a`).
1431     AddrOf(BorrowKind, Mutability, P<Expr>),
1432     /// A `break`, with an optional label to break, and an optional expression.
1433     Break(Option<Label>, Option<P<Expr>>),
1434     /// A `continue`, with an optional label.
1435     Continue(Option<Label>),
1436     /// A `return`, with an optional value to be returned.
1437     Ret(Option<P<Expr>>),
1438
1439     /// Output of the `asm!()` macro.
1440     InlineAsm(P<InlineAsm>),
1441
1442     /// A macro invocation; pre-expansion.
1443     MacCall(MacCall),
1444
1445     /// A struct literal expression.
1446     ///
1447     /// E.g., `Foo {x: 1, y: 2}`, or `Foo {x: 1, .. rest}`.
1448     Struct(P<StructExpr>),
1449
1450     /// An array literal constructed from one repeated element.
1451     ///
1452     /// E.g., `[1; 5]`. The expression is the element to be
1453     /// repeated; the constant is the number of times to repeat it.
1454     Repeat(P<Expr>, AnonConst),
1455
1456     /// No-op: used solely so we can pretty-print faithfully.
1457     Paren(P<Expr>),
1458
1459     /// A try expression (`expr?`).
1460     Try(P<Expr>),
1461
1462     /// A `yield`, with an optional value to be yielded.
1463     Yield(Option<P<Expr>>),
1464
1465     /// Placeholder for an expression that wasn't syntactically well formed in some way.
1466     Err,
1467 }
1468
1469 /// The explicit `Self` type in a "qualified path". The actual
1470 /// path, including the trait and the associated item, is stored
1471 /// separately. `position` represents the index of the associated
1472 /// item qualified with this `Self` type.
1473 ///
1474 /// ```ignore (only-for-syntax-highlight)
1475 /// <Vec<T> as a::b::Trait>::AssociatedItem
1476 ///  ^~~~~     ~~~~~~~~~~~~~~^
1477 ///  ty        position = 3
1478 ///
1479 /// <Vec<T>>::AssociatedItem
1480 ///  ^~~~~    ^
1481 ///  ty       position = 0
1482 /// ```
1483 #[derive(Clone, Encodable, Decodable, Debug)]
1484 pub struct QSelf {
1485     pub ty: P<Ty>,
1486
1487     /// The span of `a::b::Trait` in a path like `<Vec<T> as
1488     /// a::b::Trait>::AssociatedItem`; in the case where `position ==
1489     /// 0`, this is an empty span.
1490     pub path_span: Span,
1491     pub position: usize,
1492 }
1493
1494 /// A capture clause used in closures and `async` blocks.
1495 #[derive(Clone, Copy, PartialEq, Encodable, Decodable, Debug, HashStable_Generic)]
1496 pub enum CaptureBy {
1497     /// `move |x| y + x`.
1498     Value,
1499     /// `move` keyword was not specified.
1500     Ref,
1501 }
1502
1503 /// The movability of a generator / closure literal:
1504 /// whether a generator contains self-references, causing it to be `!Unpin`.
1505 #[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Encodable, Decodable, Debug, Copy)]
1506 #[derive(HashStable_Generic)]
1507 pub enum Movability {
1508     /// May contain self-references, `!Unpin`.
1509     Static,
1510     /// Must not contain self-references, `Unpin`.
1511     Movable,
1512 }
1513
1514 /// Represents a macro invocation. The `path` indicates which macro
1515 /// is being invoked, and the `args` are arguments passed to it.
1516 #[derive(Clone, Encodable, Decodable, Debug)]
1517 pub struct MacCall {
1518     pub path: Path,
1519     pub args: P<MacArgs>,
1520     pub prior_type_ascription: Option<(Span, bool)>,
1521 }
1522
1523 impl MacCall {
1524     pub fn span(&self) -> Span {
1525         self.path.span.to(self.args.span().unwrap_or(self.path.span))
1526     }
1527 }
1528
1529 /// Arguments passed to an attribute or a function-like macro.
1530 #[derive(Clone, Encodable, Decodable, Debug, HashStable_Generic)]
1531 pub enum MacArgs {
1532     /// No arguments - `#[attr]`.
1533     Empty,
1534     /// Delimited arguments - `#[attr()/[]/{}]` or `mac!()/[]/{}`.
1535     Delimited(DelimSpan, MacDelimiter, TokenStream),
1536     /// Arguments of a key-value attribute - `#[attr = "value"]`.
1537     Eq(
1538         /// Span of the `=` token.
1539         Span,
1540         /// "value" as a nonterminal token.
1541         Token,
1542     ),
1543 }
1544
1545 impl MacArgs {
1546     pub fn delim(&self) -> Option<Delimiter> {
1547         match self {
1548             MacArgs::Delimited(_, delim, _) => Some(delim.to_token()),
1549             MacArgs::Empty | MacArgs::Eq(..) => None,
1550         }
1551     }
1552
1553     pub fn span(&self) -> Option<Span> {
1554         match self {
1555             MacArgs::Empty => None,
1556             MacArgs::Delimited(dspan, ..) => Some(dspan.entire()),
1557             MacArgs::Eq(eq_span, token) => Some(eq_span.to(token.span)),
1558         }
1559     }
1560
1561     /// Tokens inside the delimiters or after `=`.
1562     /// Proc macros see these tokens, for example.
1563     pub fn inner_tokens(&self) -> TokenStream {
1564         match self {
1565             MacArgs::Empty => TokenStream::default(),
1566             MacArgs::Delimited(.., tokens) => tokens.clone(),
1567             MacArgs::Eq(.., token) => TokenTree::Token(token.clone()).into(),
1568         }
1569     }
1570
1571     /// Whether a macro with these arguments needs a semicolon
1572     /// when used as a standalone item or statement.
1573     pub fn need_semicolon(&self) -> bool {
1574         !matches!(self, MacArgs::Delimited(_, MacDelimiter::Brace, _))
1575     }
1576 }
1577
1578 #[derive(Copy, Clone, PartialEq, Eq, Encodable, Decodable, Debug, HashStable_Generic)]
1579 pub enum MacDelimiter {
1580     Parenthesis,
1581     Bracket,
1582     Brace,
1583 }
1584
1585 impl MacDelimiter {
1586     pub fn to_token(self) -> Delimiter {
1587         match self {
1588             MacDelimiter::Parenthesis => Delimiter::Parenthesis,
1589             MacDelimiter::Bracket => Delimiter::Bracket,
1590             MacDelimiter::Brace => Delimiter::Brace,
1591         }
1592     }
1593
1594     pub fn from_token(delim: Delimiter) -> Option<MacDelimiter> {
1595         match delim {
1596             Delimiter::Parenthesis => Some(MacDelimiter::Parenthesis),
1597             Delimiter::Bracket => Some(MacDelimiter::Bracket),
1598             Delimiter::Brace => Some(MacDelimiter::Brace),
1599             Delimiter::Invisible => None,
1600         }
1601     }
1602 }
1603
1604 /// Represents a macro definition.
1605 #[derive(Clone, Encodable, Decodable, Debug, HashStable_Generic)]
1606 pub struct MacroDef {
1607     pub body: P<MacArgs>,
1608     /// `true` if macro was defined with `macro_rules`.
1609     pub macro_rules: bool,
1610 }
1611
1612 #[derive(Clone, Encodable, Decodable, Debug, Copy, Hash, Eq, PartialEq)]
1613 #[derive(HashStable_Generic)]
1614 pub enum StrStyle {
1615     /// A regular string, like `"foo"`.
1616     Cooked,
1617     /// A raw string, like `r##"foo"##`.
1618     ///
1619     /// The value is the number of `#` symbols used.
1620     Raw(u8),
1621 }
1622
1623 /// An AST literal.
1624 #[derive(Clone, Encodable, Decodable, Debug, HashStable_Generic)]
1625 pub struct Lit {
1626     /// The original literal token as written in source code.
1627     pub token: token::Lit,
1628     /// The "semantic" representation of the literal lowered from the original tokens.
1629     /// Strings are unescaped, hexadecimal forms are eliminated, etc.
1630     /// FIXME: Remove this and only create the semantic representation during lowering to HIR.
1631     pub kind: LitKind,
1632     pub span: Span,
1633 }
1634
1635 /// Same as `Lit`, but restricted to string literals.
1636 #[derive(Clone, Copy, Encodable, Decodable, Debug)]
1637 pub struct StrLit {
1638     /// The original literal token as written in source code.
1639     pub style: StrStyle,
1640     pub symbol: Symbol,
1641     pub suffix: Option<Symbol>,
1642     pub span: Span,
1643     /// The unescaped "semantic" representation of the literal lowered from the original token.
1644     /// FIXME: Remove this and only create the semantic representation during lowering to HIR.
1645     pub symbol_unescaped: Symbol,
1646 }
1647
1648 impl StrLit {
1649     pub fn as_lit(&self) -> Lit {
1650         let token_kind = match self.style {
1651             StrStyle::Cooked => token::Str,
1652             StrStyle::Raw(n) => token::StrRaw(n),
1653         };
1654         Lit {
1655             token: token::Lit::new(token_kind, self.symbol, self.suffix),
1656             span: self.span,
1657             kind: LitKind::Str(self.symbol_unescaped, self.style),
1658         }
1659     }
1660 }
1661
1662 /// Type of the integer literal based on provided suffix.
1663 #[derive(Clone, Copy, Encodable, Decodable, Debug, Hash, Eq, PartialEq)]
1664 #[derive(HashStable_Generic)]
1665 pub enum LitIntType {
1666     /// e.g. `42_i32`.
1667     Signed(IntTy),
1668     /// e.g. `42_u32`.
1669     Unsigned(UintTy),
1670     /// e.g. `42`.
1671     Unsuffixed,
1672 }
1673
1674 /// Type of the float literal based on provided suffix.
1675 #[derive(Clone, Copy, Encodable, Decodable, Debug, Hash, Eq, PartialEq)]
1676 #[derive(HashStable_Generic)]
1677 pub enum LitFloatType {
1678     /// A float literal with a suffix (`1f32` or `1E10f32`).
1679     Suffixed(FloatTy),
1680     /// A float literal without a suffix (`1.0 or 1.0E10`).
1681     Unsuffixed,
1682 }
1683
1684 /// Literal kind.
1685 ///
1686 /// E.g., `"foo"`, `42`, `12.34`, or `bool`.
1687 #[derive(Clone, Encodable, Decodable, Debug, Hash, Eq, PartialEq, HashStable_Generic)]
1688 pub enum LitKind {
1689     /// A string literal (`"foo"`).
1690     Str(Symbol, StrStyle),
1691     /// A byte string (`b"foo"`).
1692     ByteStr(Lrc<[u8]>),
1693     /// A byte char (`b'f'`).
1694     Byte(u8),
1695     /// A character literal (`'a'`).
1696     Char(char),
1697     /// An integer literal (`1`).
1698     Int(u128, LitIntType),
1699     /// A float literal (`1f64` or `1E10f64`).
1700     Float(Symbol, LitFloatType),
1701     /// A boolean literal.
1702     Bool(bool),
1703     /// Placeholder for a literal that wasn't well-formed in some way.
1704     Err(Symbol),
1705 }
1706
1707 impl LitKind {
1708     /// Returns `true` if this literal is a string.
1709     pub fn is_str(&self) -> bool {
1710         matches!(self, LitKind::Str(..))
1711     }
1712
1713     /// Returns `true` if this literal is byte literal string.
1714     pub fn is_bytestr(&self) -> bool {
1715         matches!(self, LitKind::ByteStr(_))
1716     }
1717
1718     /// Returns `true` if this is a numeric literal.
1719     pub fn is_numeric(&self) -> bool {
1720         matches!(self, LitKind::Int(..) | LitKind::Float(..))
1721     }
1722
1723     /// Returns `true` if this literal has no suffix.
1724     /// Note: this will return true for literals with prefixes such as raw strings and byte strings.
1725     pub fn is_unsuffixed(&self) -> bool {
1726         !self.is_suffixed()
1727     }
1728
1729     /// Returns `true` if this literal has a suffix.
1730     pub fn is_suffixed(&self) -> bool {
1731         match *self {
1732             // suffixed variants
1733             LitKind::Int(_, LitIntType::Signed(..) | LitIntType::Unsigned(..))
1734             | LitKind::Float(_, LitFloatType::Suffixed(..)) => true,
1735             // unsuffixed variants
1736             LitKind::Str(..)
1737             | LitKind::ByteStr(..)
1738             | LitKind::Byte(..)
1739             | LitKind::Char(..)
1740             | LitKind::Int(_, LitIntType::Unsuffixed)
1741             | LitKind::Float(_, LitFloatType::Unsuffixed)
1742             | LitKind::Bool(..)
1743             | LitKind::Err(..) => false,
1744         }
1745     }
1746 }
1747
1748 // N.B., If you change this, you'll probably want to change the corresponding
1749 // type structure in `middle/ty.rs` as well.
1750 #[derive(Clone, Encodable, Decodable, Debug)]
1751 pub struct MutTy {
1752     pub ty: P<Ty>,
1753     pub mutbl: Mutability,
1754 }
1755
1756 /// Represents a function's signature in a trait declaration,
1757 /// trait implementation, or free function.
1758 #[derive(Clone, Encodable, Decodable, Debug)]
1759 pub struct FnSig {
1760     pub header: FnHeader,
1761     pub decl: P<FnDecl>,
1762     pub span: Span,
1763 }
1764
1765 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
1766 #[derive(Encodable, Decodable, HashStable_Generic)]
1767 pub enum FloatTy {
1768     F32,
1769     F64,
1770 }
1771
1772 impl FloatTy {
1773     pub fn name_str(self) -> &'static str {
1774         match self {
1775             FloatTy::F32 => "f32",
1776             FloatTy::F64 => "f64",
1777         }
1778     }
1779
1780     pub fn name(self) -> Symbol {
1781         match self {
1782             FloatTy::F32 => sym::f32,
1783             FloatTy::F64 => sym::f64,
1784         }
1785     }
1786 }
1787
1788 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
1789 #[derive(Encodable, Decodable, HashStable_Generic)]
1790 pub enum IntTy {
1791     Isize,
1792     I8,
1793     I16,
1794     I32,
1795     I64,
1796     I128,
1797 }
1798
1799 impl IntTy {
1800     pub fn name_str(&self) -> &'static str {
1801         match *self {
1802             IntTy::Isize => "isize",
1803             IntTy::I8 => "i8",
1804             IntTy::I16 => "i16",
1805             IntTy::I32 => "i32",
1806             IntTy::I64 => "i64",
1807             IntTy::I128 => "i128",
1808         }
1809     }
1810
1811     pub fn name(&self) -> Symbol {
1812         match *self {
1813             IntTy::Isize => sym::isize,
1814             IntTy::I8 => sym::i8,
1815             IntTy::I16 => sym::i16,
1816             IntTy::I32 => sym::i32,
1817             IntTy::I64 => sym::i64,
1818             IntTy::I128 => sym::i128,
1819         }
1820     }
1821 }
1822
1823 #[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Copy, Debug)]
1824 #[derive(Encodable, Decodable, HashStable_Generic)]
1825 pub enum UintTy {
1826     Usize,
1827     U8,
1828     U16,
1829     U32,
1830     U64,
1831     U128,
1832 }
1833
1834 impl UintTy {
1835     pub fn name_str(&self) -> &'static str {
1836         match *self {
1837             UintTy::Usize => "usize",
1838             UintTy::U8 => "u8",
1839             UintTy::U16 => "u16",
1840             UintTy::U32 => "u32",
1841             UintTy::U64 => "u64",
1842             UintTy::U128 => "u128",
1843         }
1844     }
1845
1846     pub fn name(&self) -> Symbol {
1847         match *self {
1848             UintTy::Usize => sym::usize,
1849             UintTy::U8 => sym::u8,
1850             UintTy::U16 => sym::u16,
1851             UintTy::U32 => sym::u32,
1852             UintTy::U64 => sym::u64,
1853             UintTy::U128 => sym::u128,
1854         }
1855     }
1856 }
1857
1858 /// A constraint on an associated type (e.g., `A = Bar` in `Foo<A = Bar>` or
1859 /// `A: TraitA + TraitB` in `Foo<A: TraitA + TraitB>`).
1860 #[derive(Clone, Encodable, Decodable, Debug)]
1861 pub struct AssocConstraint {
1862     pub id: NodeId,
1863     pub ident: Ident,
1864     pub gen_args: Option<GenericArgs>,
1865     pub kind: AssocConstraintKind,
1866     pub span: Span,
1867 }
1868
1869 /// The kinds of an `AssocConstraint`.
1870 #[derive(Clone, Encodable, Decodable, Debug)]
1871 pub enum Term {
1872     Ty(P<Ty>),
1873     Const(AnonConst),
1874 }
1875
1876 impl From<P<Ty>> for Term {
1877     fn from(v: P<Ty>) -> Self {
1878         Term::Ty(v)
1879     }
1880 }
1881
1882 impl From<AnonConst> for Term {
1883     fn from(v: AnonConst) -> Self {
1884         Term::Const(v)
1885     }
1886 }
1887
1888 /// The kinds of an `AssocConstraint`.
1889 #[derive(Clone, Encodable, Decodable, Debug)]
1890 pub enum AssocConstraintKind {
1891     /// E.g., `A = Bar`, `A = 3` in `Foo<A = Bar>` where A is an associated type.
1892     Equality { term: Term },
1893     /// E.g. `A: TraitA + TraitB` in `Foo<A: TraitA + TraitB>`.
1894     Bound { bounds: GenericBounds },
1895 }
1896
1897 #[derive(Encodable, Decodable, Debug)]
1898 pub struct Ty {
1899     pub id: NodeId,
1900     pub kind: TyKind,
1901     pub span: Span,
1902     pub tokens: Option<LazyTokenStream>,
1903 }
1904
1905 impl Clone for Ty {
1906     fn clone(&self) -> Self {
1907         ensure_sufficient_stack(|| Self {
1908             id: self.id,
1909             kind: self.kind.clone(),
1910             span: self.span,
1911             tokens: self.tokens.clone(),
1912         })
1913     }
1914 }
1915
1916 impl Ty {
1917     pub fn peel_refs(&self) -> &Self {
1918         let mut final_ty = self;
1919         while let TyKind::Rptr(_, MutTy { ty, .. }) = &final_ty.kind {
1920             final_ty = &ty;
1921         }
1922         final_ty
1923     }
1924 }
1925
1926 #[derive(Clone, Encodable, Decodable, Debug)]
1927 pub struct BareFnTy {
1928     pub unsafety: Unsafe,
1929     pub ext: Extern,
1930     pub generic_params: Vec<GenericParam>,
1931     pub decl: P<FnDecl>,
1932 }
1933
1934 /// The various kinds of type recognized by the compiler.
1935 #[derive(Clone, Encodable, Decodable, Debug)]
1936 pub enum TyKind {
1937     /// A variable-length slice (`[T]`).
1938     Slice(P<Ty>),
1939     /// A fixed length array (`[T; n]`).
1940     Array(P<Ty>, AnonConst),
1941     /// A raw pointer (`*const T` or `*mut T`).
1942     Ptr(MutTy),
1943     /// A reference (`&'a T` or `&'a mut T`).
1944     Rptr(Option<Lifetime>, MutTy),
1945     /// A bare function (e.g., `fn(usize) -> bool`).
1946     BareFn(P<BareFnTy>),
1947     /// The never type (`!`).
1948     Never,
1949     /// A tuple (`(A, B, C, D,...)`).
1950     Tup(Vec<P<Ty>>),
1951     /// A path (`module::module::...::Type`), optionally
1952     /// "qualified", e.g., `<Vec<T> as SomeTrait>::SomeType`.
1953     ///
1954     /// Type parameters are stored in the `Path` itself.
1955     Path(Option<QSelf>, Path),
1956     /// A trait object type `Bound1 + Bound2 + Bound3`
1957     /// where `Bound` is a trait or a lifetime.
1958     TraitObject(GenericBounds, TraitObjectSyntax),
1959     /// An `impl Bound1 + Bound2 + Bound3` type
1960     /// where `Bound` is a trait or a lifetime.
1961     ///
1962     /// The `NodeId` exists to prevent lowering from having to
1963     /// generate `NodeId`s on the fly, which would complicate
1964     /// the generation of opaque `type Foo = impl Trait` items significantly.
1965     ImplTrait(NodeId, GenericBounds),
1966     /// No-op; kept solely so that we can pretty-print faithfully.
1967     Paren(P<Ty>),
1968     /// Unused for now.
1969     Typeof(AnonConst),
1970     /// This means the type should be inferred instead of it having been
1971     /// specified. This can appear anywhere in a type.
1972     Infer,
1973     /// Inferred type of a `self` or `&self` argument in a method.
1974     ImplicitSelf,
1975     /// A macro in the type position.
1976     MacCall(MacCall),
1977     /// Placeholder for a kind that has failed to be defined.
1978     Err,
1979     /// Placeholder for a `va_list`.
1980     CVarArgs,
1981 }
1982
1983 impl TyKind {
1984     pub fn is_implicit_self(&self) -> bool {
1985         matches!(self, TyKind::ImplicitSelf)
1986     }
1987
1988     pub fn is_unit(&self) -> bool {
1989         matches!(self, TyKind::Tup(tys) if tys.is_empty())
1990     }
1991 }
1992
1993 /// Syntax used to declare a trait object.
1994 #[derive(Clone, Copy, PartialEq, Encodable, Decodable, Debug, HashStable_Generic)]
1995 pub enum TraitObjectSyntax {
1996     Dyn,
1997     None,
1998 }
1999
2000 /// Inline assembly operand explicit register or register class.
2001 ///
2002 /// E.g., `"eax"` as in `asm!("mov eax, 2", out("eax") result)`.
2003 #[derive(Clone, Copy, Encodable, Decodable, Debug)]
2004 pub enum InlineAsmRegOrRegClass {
2005     Reg(Symbol),
2006     RegClass(Symbol),
2007 }
2008
2009 bitflags::bitflags! {
2010     #[derive(Encodable, Decodable, HashStable_Generic)]
2011     pub struct InlineAsmOptions: u16 {
2012         const PURE = 1 << 0;
2013         const NOMEM = 1 << 1;
2014         const READONLY = 1 << 2;
2015         const PRESERVES_FLAGS = 1 << 3;
2016         const NORETURN = 1 << 4;
2017         const NOSTACK = 1 << 5;
2018         const ATT_SYNTAX = 1 << 6;
2019         const RAW = 1 << 7;
2020         const MAY_UNWIND = 1 << 8;
2021     }
2022 }
2023
2024 #[derive(Clone, PartialEq, Encodable, Decodable, Debug, Hash, HashStable_Generic)]
2025 pub enum InlineAsmTemplatePiece {
2026     String(String),
2027     Placeholder { operand_idx: usize, modifier: Option<char>, span: Span },
2028 }
2029
2030 impl fmt::Display for InlineAsmTemplatePiece {
2031     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2032         match self {
2033             Self::String(s) => {
2034                 for c in s.chars() {
2035                     match c {
2036                         '{' => f.write_str("{{")?,
2037                         '}' => f.write_str("}}")?,
2038                         _ => c.fmt(f)?,
2039                     }
2040                 }
2041                 Ok(())
2042             }
2043             Self::Placeholder { operand_idx, modifier: Some(modifier), .. } => {
2044                 write!(f, "{{{}:{}}}", operand_idx, modifier)
2045             }
2046             Self::Placeholder { operand_idx, modifier: None, .. } => {
2047                 write!(f, "{{{}}}", operand_idx)
2048             }
2049         }
2050     }
2051 }
2052
2053 impl InlineAsmTemplatePiece {
2054     /// Rebuilds the asm template string from its pieces.
2055     pub fn to_string(s: &[Self]) -> String {
2056         use fmt::Write;
2057         let mut out = String::new();
2058         for p in s.iter() {
2059             let _ = write!(out, "{}", p);
2060         }
2061         out
2062     }
2063 }
2064
2065 /// Inline assembly symbol operands get their own AST node that is somewhat
2066 /// similar to `AnonConst`.
2067 ///
2068 /// The main difference is that we specifically don't assign it `DefId` in
2069 /// `DefCollector`. Instead this is deferred until AST lowering where we
2070 /// lower it to an `AnonConst` (for functions) or a `Path` (for statics)
2071 /// depending on what the path resolves to.
2072 #[derive(Clone, Encodable, Decodable, Debug)]
2073 pub struct InlineAsmSym {
2074     pub id: NodeId,
2075     pub qself: Option<QSelf>,
2076     pub path: Path,
2077 }
2078
2079 /// Inline assembly operand.
2080 ///
2081 /// E.g., `out("eax") result` as in `asm!("mov eax, 2", out("eax") result)`.
2082 #[derive(Clone, Encodable, Decodable, Debug)]
2083 pub enum InlineAsmOperand {
2084     In {
2085         reg: InlineAsmRegOrRegClass,
2086         expr: P<Expr>,
2087     },
2088     Out {
2089         reg: InlineAsmRegOrRegClass,
2090         late: bool,
2091         expr: Option<P<Expr>>,
2092     },
2093     InOut {
2094         reg: InlineAsmRegOrRegClass,
2095         late: bool,
2096         expr: P<Expr>,
2097     },
2098     SplitInOut {
2099         reg: InlineAsmRegOrRegClass,
2100         late: bool,
2101         in_expr: P<Expr>,
2102         out_expr: Option<P<Expr>>,
2103     },
2104     Const {
2105         anon_const: AnonConst,
2106     },
2107     Sym {
2108         sym: InlineAsmSym,
2109     },
2110 }
2111
2112 /// Inline assembly.
2113 ///
2114 /// E.g., `asm!("NOP");`.
2115 #[derive(Clone, Encodable, Decodable, Debug)]
2116 pub struct InlineAsm {
2117     pub template: Vec<InlineAsmTemplatePiece>,
2118     pub template_strs: Box<[(Symbol, Option<Symbol>, Span)]>,
2119     pub operands: Vec<(InlineAsmOperand, Span)>,
2120     pub clobber_abis: Vec<(Symbol, Span)>,
2121     pub options: InlineAsmOptions,
2122     pub line_spans: Vec<Span>,
2123 }
2124
2125 /// A parameter in a function header.
2126 ///
2127 /// E.g., `bar: usize` as in `fn foo(bar: usize)`.
2128 #[derive(Clone, Encodable, Decodable, Debug)]
2129 pub struct Param {
2130     pub attrs: AttrVec,
2131     pub ty: P<Ty>,
2132     pub pat: P<Pat>,
2133     pub id: NodeId,
2134     pub span: Span,
2135     pub is_placeholder: bool,
2136 }
2137
2138 /// Alternative representation for `Arg`s describing `self` parameter of methods.
2139 ///
2140 /// E.g., `&mut self` as in `fn foo(&mut self)`.
2141 #[derive(Clone, Encodable, Decodable, Debug)]
2142 pub enum SelfKind {
2143     /// `self`, `mut self`
2144     Value(Mutability),
2145     /// `&'lt self`, `&'lt mut self`
2146     Region(Option<Lifetime>, Mutability),
2147     /// `self: TYPE`, `mut self: TYPE`
2148     Explicit(P<Ty>, Mutability),
2149 }
2150
2151 pub type ExplicitSelf = Spanned<SelfKind>;
2152
2153 impl Param {
2154     /// Attempts to cast parameter to `ExplicitSelf`.
2155     pub fn to_self(&self) -> Option<ExplicitSelf> {
2156         if let PatKind::Ident(BindingMode::ByValue(mutbl), ident, _) = self.pat.kind {
2157             if ident.name == kw::SelfLower {
2158                 return match self.ty.kind {
2159                     TyKind::ImplicitSelf => Some(respan(self.pat.span, SelfKind::Value(mutbl))),
2160                     TyKind::Rptr(lt, MutTy { ref ty, mutbl }) if ty.kind.is_implicit_self() => {
2161                         Some(respan(self.pat.span, SelfKind::Region(lt, mutbl)))
2162                     }
2163                     _ => Some(respan(
2164                         self.pat.span.to(self.ty.span),
2165                         SelfKind::Explicit(self.ty.clone(), mutbl),
2166                     )),
2167                 };
2168             }
2169         }
2170         None
2171     }
2172
2173     /// Returns `true` if parameter is `self`.
2174     pub fn is_self(&self) -> bool {
2175         if let PatKind::Ident(_, ident, _) = self.pat.kind {
2176             ident.name == kw::SelfLower
2177         } else {
2178             false
2179         }
2180     }
2181
2182     /// Builds a `Param` object from `ExplicitSelf`.
2183     pub fn from_self(attrs: AttrVec, eself: ExplicitSelf, eself_ident: Ident) -> Param {
2184         let span = eself.span.to(eself_ident.span);
2185         let infer_ty = P(Ty { id: DUMMY_NODE_ID, kind: TyKind::ImplicitSelf, span, tokens: None });
2186         let param = |mutbl, ty| Param {
2187             attrs,
2188             pat: P(Pat {
2189                 id: DUMMY_NODE_ID,
2190                 kind: PatKind::Ident(BindingMode::ByValue(mutbl), eself_ident, None),
2191                 span,
2192                 tokens: None,
2193             }),
2194             span,
2195             ty,
2196             id: DUMMY_NODE_ID,
2197             is_placeholder: false,
2198         };
2199         match eself.node {
2200             SelfKind::Explicit(ty, mutbl) => param(mutbl, ty),
2201             SelfKind::Value(mutbl) => param(mutbl, infer_ty),
2202             SelfKind::Region(lt, mutbl) => param(
2203                 Mutability::Not,
2204                 P(Ty {
2205                     id: DUMMY_NODE_ID,
2206                     kind: TyKind::Rptr(lt, MutTy { ty: infer_ty, mutbl }),
2207                     span,
2208                     tokens: None,
2209                 }),
2210             ),
2211         }
2212     }
2213 }
2214
2215 /// A signature (not the body) of a function declaration.
2216 ///
2217 /// E.g., `fn foo(bar: baz)`.
2218 ///
2219 /// Please note that it's different from `FnHeader` structure
2220 /// which contains metadata about function safety, asyncness, constness and ABI.
2221 #[derive(Clone, Encodable, Decodable, Debug)]
2222 pub struct FnDecl {
2223     pub inputs: Vec<Param>,
2224     pub output: FnRetTy,
2225 }
2226
2227 impl FnDecl {
2228     pub fn has_self(&self) -> bool {
2229         self.inputs.get(0).map_or(false, Param::is_self)
2230     }
2231     pub fn c_variadic(&self) -> bool {
2232         self.inputs.last().map_or(false, |arg| matches!(arg.ty.kind, TyKind::CVarArgs))
2233     }
2234 }
2235
2236 /// Is the trait definition an auto trait?
2237 #[derive(Copy, Clone, PartialEq, Encodable, Decodable, Debug, HashStable_Generic)]
2238 pub enum IsAuto {
2239     Yes,
2240     No,
2241 }
2242
2243 #[derive(Copy, Clone, PartialEq, Eq, Hash, Encodable, Decodable, Debug)]
2244 #[derive(HashStable_Generic)]
2245 pub enum Unsafe {
2246     Yes(Span),
2247     No,
2248 }
2249
2250 #[derive(Copy, Clone, Encodable, Decodable, Debug)]
2251 pub enum Async {
2252     Yes { span: Span, closure_id: NodeId, return_impl_trait_id: NodeId },
2253     No,
2254 }
2255
2256 impl Async {
2257     pub fn is_async(self) -> bool {
2258         matches!(self, Async::Yes { .. })
2259     }
2260
2261     /// In this case this is an `async` return, the `NodeId` for the generated `impl Trait` item.
2262     pub fn opt_return_id(self) -> Option<NodeId> {
2263         match self {
2264             Async::Yes { return_impl_trait_id, .. } => Some(return_impl_trait_id),
2265             Async::No => None,
2266         }
2267     }
2268 }
2269
2270 #[derive(Copy, Clone, PartialEq, Eq, Hash, Encodable, Decodable, Debug)]
2271 #[derive(HashStable_Generic)]
2272 pub enum Const {
2273     Yes(Span),
2274     No,
2275 }
2276
2277 /// Item defaultness.
2278 /// For details see the [RFC #2532](https://github.com/rust-lang/rfcs/pull/2532).
2279 #[derive(Copy, Clone, PartialEq, Encodable, Decodable, Debug, HashStable_Generic)]
2280 pub enum Defaultness {
2281     Default(Span),
2282     Final,
2283 }
2284
2285 #[derive(Copy, Clone, PartialEq, Encodable, Decodable, HashStable_Generic)]
2286 pub enum ImplPolarity {
2287     /// `impl Trait for Type`
2288     Positive,
2289     /// `impl !Trait for Type`
2290     Negative(Span),
2291 }
2292
2293 impl fmt::Debug for ImplPolarity {
2294     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2295         match *self {
2296             ImplPolarity::Positive => "positive".fmt(f),
2297             ImplPolarity::Negative(_) => "negative".fmt(f),
2298         }
2299     }
2300 }
2301
2302 #[derive(Clone, Encodable, Decodable, Debug)]
2303 pub enum FnRetTy {
2304     /// Returns type is not specified.
2305     ///
2306     /// Functions default to `()` and closures default to inference.
2307     /// Span points to where return type would be inserted.
2308     Default(Span),
2309     /// Everything else.
2310     Ty(P<Ty>),
2311 }
2312
2313 impl FnRetTy {
2314     pub fn span(&self) -> Span {
2315         match *self {
2316             FnRetTy::Default(span) => span,
2317             FnRetTy::Ty(ref ty) => ty.span,
2318         }
2319     }
2320 }
2321
2322 #[derive(Clone, Copy, PartialEq, Encodable, Decodable, Debug)]
2323 pub enum Inline {
2324     Yes,
2325     No,
2326 }
2327
2328 /// Module item kind.
2329 #[derive(Clone, Encodable, Decodable, Debug)]
2330 pub enum ModKind {
2331     /// Module with inlined definition `mod foo { ... }`,
2332     /// or with definition outlined to a separate file `mod foo;` and already loaded from it.
2333     /// The inner span is from the first token past `{` to the last token until `}`,
2334     /// or from the first to the last token in the loaded file.
2335     Loaded(Vec<P<Item>>, Inline, ModSpans),
2336     /// Module with definition outlined to a separate file `mod foo;` but not yet loaded from it.
2337     Unloaded,
2338 }
2339
2340 #[derive(Copy, Clone, Encodable, Decodable, Debug)]
2341 pub struct ModSpans {
2342     /// `inner_span` covers the body of the module; for a file module, its the whole file.
2343     /// For an inline module, its the span inside the `{ ... }`, not including the curly braces.
2344     pub inner_span: Span,
2345     pub inject_use_span: Span,
2346 }
2347
2348 impl Default for ModSpans {
2349     fn default() -> ModSpans {
2350         ModSpans { inner_span: Default::default(), inject_use_span: Default::default() }
2351     }
2352 }
2353
2354 /// Foreign module declaration.
2355 ///
2356 /// E.g., `extern { .. }` or `extern "C" { .. }`.
2357 #[derive(Clone, Encodable, Decodable, Debug)]
2358 pub struct ForeignMod {
2359     /// `unsafe` keyword accepted syntactically for macro DSLs, but not
2360     /// semantically by Rust.
2361     pub unsafety: Unsafe,
2362     pub abi: Option<StrLit>,
2363     pub items: Vec<P<ForeignItem>>,
2364 }
2365
2366 #[derive(Clone, Encodable, Decodable, Debug)]
2367 pub struct EnumDef {
2368     pub variants: Vec<Variant>,
2369 }
2370 /// Enum variant.
2371 #[derive(Clone, Encodable, Decodable, Debug)]
2372 pub struct Variant {
2373     /// Attributes of the variant.
2374     pub attrs: AttrVec,
2375     /// Id of the variant (not the constructor, see `VariantData::ctor_id()`).
2376     pub id: NodeId,
2377     /// Span
2378     pub span: Span,
2379     /// The visibility of the variant. Syntactically accepted but not semantically.
2380     pub vis: Visibility,
2381     /// Name of the variant.
2382     pub ident: Ident,
2383
2384     /// Fields and constructor id of the variant.
2385     pub data: VariantData,
2386     /// Explicit discriminant, e.g., `Foo = 1`.
2387     pub disr_expr: Option<AnonConst>,
2388     /// Is a macro placeholder
2389     pub is_placeholder: bool,
2390 }
2391
2392 /// Part of `use` item to the right of its prefix.
2393 #[derive(Clone, Encodable, Decodable, Debug)]
2394 pub enum UseTreeKind {
2395     /// `use prefix` or `use prefix as rename`
2396     ///
2397     /// The extra `NodeId`s are for HIR lowering, when additional statements are created for each
2398     /// namespace.
2399     Simple(Option<Ident>, NodeId, NodeId),
2400     /// `use prefix::{...}`
2401     Nested(Vec<(UseTree, NodeId)>),
2402     /// `use prefix::*`
2403     Glob,
2404 }
2405
2406 /// A tree of paths sharing common prefixes.
2407 /// Used in `use` items both at top-level and inside of braces in import groups.
2408 #[derive(Clone, Encodable, Decodable, Debug)]
2409 pub struct UseTree {
2410     pub prefix: Path,
2411     pub kind: UseTreeKind,
2412     pub span: Span,
2413 }
2414
2415 impl UseTree {
2416     pub fn ident(&self) -> Ident {
2417         match self.kind {
2418             UseTreeKind::Simple(Some(rename), ..) => rename,
2419             UseTreeKind::Simple(None, ..) => {
2420                 self.prefix.segments.last().expect("empty prefix in a simple import").ident
2421             }
2422             _ => panic!("`UseTree::ident` can only be used on a simple import"),
2423         }
2424     }
2425 }
2426
2427 /// Distinguishes between `Attribute`s that decorate items and Attributes that
2428 /// are contained as statements within items. These two cases need to be
2429 /// distinguished for pretty-printing.
2430 #[derive(Clone, PartialEq, Encodable, Decodable, Debug, Copy, HashStable_Generic)]
2431 pub enum AttrStyle {
2432     Outer,
2433     Inner,
2434 }
2435
2436 rustc_index::newtype_index! {
2437     pub struct AttrId {
2438         ENCODABLE = custom
2439         DEBUG_FORMAT = "AttrId({})"
2440     }
2441 }
2442
2443 impl<S: Encoder> rustc_serialize::Encodable<S> for AttrId {
2444     fn encode(&self, s: &mut S) -> Result<(), S::Error> {
2445         s.emit_unit()
2446     }
2447 }
2448
2449 impl<D: Decoder> rustc_serialize::Decodable<D> for AttrId {
2450     fn decode(_: &mut D) -> AttrId {
2451         crate::attr::mk_attr_id()
2452     }
2453 }
2454
2455 #[derive(Clone, Encodable, Decodable, Debug, HashStable_Generic)]
2456 pub struct AttrItem {
2457     pub path: Path,
2458     pub args: MacArgs,
2459     pub tokens: Option<LazyTokenStream>,
2460 }
2461
2462 /// A list of attributes.
2463 pub type AttrVec = ThinVec<Attribute>;
2464
2465 /// Metadata associated with an item.
2466 #[derive(Clone, Encodable, Decodable, Debug)]
2467 pub struct Attribute {
2468     pub kind: AttrKind,
2469     pub id: AttrId,
2470     /// Denotes if the attribute decorates the following construct (outer)
2471     /// or the construct this attribute is contained within (inner).
2472     pub style: AttrStyle,
2473     pub span: Span,
2474 }
2475
2476 #[derive(Clone, Encodable, Decodable, Debug)]
2477 pub enum AttrKind {
2478     /// A normal attribute.
2479     Normal(AttrItem, Option<LazyTokenStream>),
2480
2481     /// A doc comment (e.g. `/// ...`, `//! ...`, `/** ... */`, `/*! ... */`).
2482     /// Doc attributes (e.g. `#[doc="..."]`) are represented with the `Normal`
2483     /// variant (which is much less compact and thus more expensive).
2484     DocComment(CommentKind, Symbol),
2485 }
2486
2487 /// `TraitRef`s appear in impls.
2488 ///
2489 /// Resolution maps each `TraitRef`'s `ref_id` to its defining trait; that's all
2490 /// that the `ref_id` is for. The `impl_id` maps to the "self type" of this impl.
2491 /// If this impl is an `ItemKind::Impl`, the `impl_id` is redundant (it could be the
2492 /// same as the impl's `NodeId`).
2493 #[derive(Clone, Encodable, Decodable, Debug)]
2494 pub struct TraitRef {
2495     pub path: Path,
2496     pub ref_id: NodeId,
2497 }
2498
2499 #[derive(Clone, Encodable, Decodable, Debug)]
2500 pub struct PolyTraitRef {
2501     /// The `'a` in `for<'a> Foo<&'a T>`.
2502     pub bound_generic_params: Vec<GenericParam>,
2503
2504     /// The `Foo<&'a T>` in `<'a> Foo<&'a T>`.
2505     pub trait_ref: TraitRef,
2506
2507     pub span: Span,
2508 }
2509
2510 impl PolyTraitRef {
2511     pub fn new(generic_params: Vec<GenericParam>, path: Path, span: Span) -> Self {
2512         PolyTraitRef {
2513             bound_generic_params: generic_params,
2514             trait_ref: TraitRef { path, ref_id: DUMMY_NODE_ID },
2515             span,
2516         }
2517     }
2518 }
2519
2520 #[derive(Copy, Clone, Encodable, Decodable, Debug, HashStable_Generic)]
2521 pub enum CrateSugar {
2522     /// Source is `pub(crate)`.
2523     PubCrate,
2524
2525     /// Source is (just) `crate`.
2526     JustCrate,
2527 }
2528
2529 #[derive(Clone, Encodable, Decodable, Debug)]
2530 pub struct Visibility {
2531     pub kind: VisibilityKind,
2532     pub span: Span,
2533     pub tokens: Option<LazyTokenStream>,
2534 }
2535
2536 #[derive(Clone, Encodable, Decodable, Debug)]
2537 pub enum VisibilityKind {
2538     Public,
2539     Crate(CrateSugar),
2540     Restricted { path: P<Path>, id: NodeId },
2541     Inherited,
2542 }
2543
2544 impl VisibilityKind {
2545     pub fn is_pub(&self) -> bool {
2546         matches!(self, VisibilityKind::Public)
2547     }
2548 }
2549
2550 /// Field definition in a struct, variant or union.
2551 ///
2552 /// E.g., `bar: usize` as in `struct Foo { bar: usize }`.
2553 #[derive(Clone, Encodable, Decodable, Debug)]
2554 pub struct FieldDef {
2555     pub attrs: AttrVec,
2556     pub id: NodeId,
2557     pub span: Span,
2558     pub vis: Visibility,
2559     pub ident: Option<Ident>,
2560
2561     pub ty: P<Ty>,
2562     pub is_placeholder: bool,
2563 }
2564
2565 /// Fields and constructor ids of enum variants and structs.
2566 #[derive(Clone, Encodable, Decodable, Debug)]
2567 pub enum VariantData {
2568     /// Struct variant.
2569     ///
2570     /// E.g., `Bar { .. }` as in `enum Foo { Bar { .. } }`.
2571     Struct(Vec<FieldDef>, bool),
2572     /// Tuple variant.
2573     ///
2574     /// E.g., `Bar(..)` as in `enum Foo { Bar(..) }`.
2575     Tuple(Vec<FieldDef>, NodeId),
2576     /// Unit variant.
2577     ///
2578     /// E.g., `Bar = ..` as in `enum Foo { Bar = .. }`.
2579     Unit(NodeId),
2580 }
2581
2582 impl VariantData {
2583     /// Return the fields of this variant.
2584     pub fn fields(&self) -> &[FieldDef] {
2585         match *self {
2586             VariantData::Struct(ref fields, ..) | VariantData::Tuple(ref fields, _) => fields,
2587             _ => &[],
2588         }
2589     }
2590
2591     /// Return the `NodeId` of this variant's constructor, if it has one.
2592     pub fn ctor_id(&self) -> Option<NodeId> {
2593         match *self {
2594             VariantData::Struct(..) => None,
2595             VariantData::Tuple(_, id) | VariantData::Unit(id) => Some(id),
2596         }
2597     }
2598 }
2599
2600 /// An item definition.
2601 #[derive(Clone, Encodable, Decodable, Debug)]
2602 pub struct Item<K = ItemKind> {
2603     pub attrs: Vec<Attribute>,
2604     pub id: NodeId,
2605     pub span: Span,
2606     pub vis: Visibility,
2607     /// The name of the item.
2608     /// It might be a dummy name in case of anonymous items.
2609     pub ident: Ident,
2610
2611     pub kind: K,
2612
2613     /// Original tokens this item was parsed from. This isn't necessarily
2614     /// available for all items, although over time more and more items should
2615     /// have this be `Some`. Right now this is primarily used for procedural
2616     /// macros, notably custom attributes.
2617     ///
2618     /// Note that the tokens here do not include the outer attributes, but will
2619     /// include inner attributes.
2620     pub tokens: Option<LazyTokenStream>,
2621 }
2622
2623 impl Item {
2624     /// Return the span that encompasses the attributes.
2625     pub fn span_with_attributes(&self) -> Span {
2626         self.attrs.iter().fold(self.span, |acc, attr| acc.to(attr.span))
2627     }
2628 }
2629
2630 impl<K: Into<ItemKind>> Item<K> {
2631     pub fn into_item(self) -> Item {
2632         let Item { attrs, id, span, vis, ident, kind, tokens } = self;
2633         Item { attrs, id, span, vis, ident, kind: kind.into(), tokens }
2634     }
2635 }
2636
2637 /// `extern` qualifier on a function item or function type.
2638 #[derive(Clone, Copy, Encodable, Decodable, Debug)]
2639 pub enum Extern {
2640     None,
2641     Implicit,
2642     Explicit(StrLit),
2643 }
2644
2645 impl Extern {
2646     pub fn from_abi(abi: Option<StrLit>) -> Extern {
2647         abi.map_or(Extern::Implicit, Extern::Explicit)
2648     }
2649 }
2650
2651 /// A function header.
2652 ///
2653 /// All the information between the visibility and the name of the function is
2654 /// included in this struct (e.g., `async unsafe fn` or `const extern "C" fn`).
2655 #[derive(Clone, Copy, Encodable, Decodable, Debug)]
2656 pub struct FnHeader {
2657     pub unsafety: Unsafe,
2658     pub asyncness: Async,
2659     pub constness: Const,
2660     pub ext: Extern,
2661 }
2662
2663 impl FnHeader {
2664     /// Does this function header have any qualifiers or is it empty?
2665     pub fn has_qualifiers(&self) -> bool {
2666         let Self { unsafety, asyncness, constness, ext } = self;
2667         matches!(unsafety, Unsafe::Yes(_))
2668             || asyncness.is_async()
2669             || matches!(constness, Const::Yes(_))
2670             || !matches!(ext, Extern::None)
2671     }
2672 }
2673
2674 impl Default for FnHeader {
2675     fn default() -> FnHeader {
2676         FnHeader {
2677             unsafety: Unsafe::No,
2678             asyncness: Async::No,
2679             constness: Const::No,
2680             ext: Extern::None,
2681         }
2682     }
2683 }
2684
2685 #[derive(Clone, Encodable, Decodable, Debug)]
2686 pub struct Trait {
2687     pub unsafety: Unsafe,
2688     pub is_auto: IsAuto,
2689     pub generics: Generics,
2690     pub bounds: GenericBounds,
2691     pub items: Vec<P<AssocItem>>,
2692 }
2693
2694 /// The location of a where clause on a `TyAlias` (`Span`) and whether there was
2695 /// a `where` keyword (`bool`). This is split out from `WhereClause`, since there
2696 /// are two locations for where clause on type aliases, but their predicates
2697 /// are concatenated together.
2698 ///
2699 /// Take this example:
2700 /// ```ignore (only-for-syntax-highlight)
2701 /// trait Foo {
2702 ///   type Assoc<'a, 'b> where Self: 'a, Self: 'b;
2703 /// }
2704 /// impl Foo for () {
2705 ///   type Assoc<'a, 'b> where Self: 'a = () where Self: 'b;
2706 ///   //                 ^^^^^^^^^^^^^^ first where clause
2707 ///   //                                     ^^^^^^^^^^^^^^ second where clause
2708 /// }
2709 /// ```
2710 ///
2711 /// If there is no where clause, then this is `false` with `DUMMY_SP`.
2712 #[derive(Copy, Clone, Encodable, Decodable, Debug, Default)]
2713 pub struct TyAliasWhereClause(pub bool, pub Span);
2714
2715 #[derive(Clone, Encodable, Decodable, Debug)]
2716 pub struct TyAlias {
2717     pub defaultness: Defaultness,
2718     pub generics: Generics,
2719     /// The span information for the two where clauses (before equals, after equals)
2720     pub where_clauses: (TyAliasWhereClause, TyAliasWhereClause),
2721     /// The index in `generics.where_clause.predicates` that would split into
2722     /// predicates from the where clause before the equals and the predicates
2723     /// from the where clause after the equals
2724     pub where_predicates_split: usize,
2725     pub bounds: GenericBounds,
2726     pub ty: Option<P<Ty>>,
2727 }
2728
2729 #[derive(Clone, Encodable, Decodable, Debug)]
2730 pub struct Impl {
2731     pub defaultness: Defaultness,
2732     pub unsafety: Unsafe,
2733     pub generics: Generics,
2734     pub constness: Const,
2735     pub polarity: ImplPolarity,
2736     /// The trait being implemented, if any.
2737     pub of_trait: Option<TraitRef>,
2738     pub self_ty: P<Ty>,
2739     pub items: Vec<P<AssocItem>>,
2740 }
2741
2742 #[derive(Clone, Encodable, Decodable, Debug)]
2743 pub struct Fn {
2744     pub defaultness: Defaultness,
2745     pub generics: Generics,
2746     pub sig: FnSig,
2747     pub body: Option<P<Block>>,
2748 }
2749
2750 #[derive(Clone, Encodable, Decodable, Debug)]
2751 pub enum ItemKind {
2752     /// An `extern crate` item, with the optional *original* crate name if the crate was renamed.
2753     ///
2754     /// E.g., `extern crate foo` or `extern crate foo_bar as foo`.
2755     ExternCrate(Option<Symbol>),
2756     /// A use declaration item (`use`).
2757     ///
2758     /// E.g., `use foo;`, `use foo::bar;` or `use foo::bar as FooBar;`.
2759     Use(UseTree),
2760     /// A static item (`static`).
2761     ///
2762     /// E.g., `static FOO: i32 = 42;` or `static FOO: &'static str = "bar";`.
2763     Static(P<Ty>, Mutability, Option<P<Expr>>),
2764     /// A constant item (`const`).
2765     ///
2766     /// E.g., `const FOO: i32 = 42;`.
2767     Const(Defaultness, P<Ty>, Option<P<Expr>>),
2768     /// A function declaration (`fn`).
2769     ///
2770     /// E.g., `fn foo(bar: usize) -> usize { .. }`.
2771     Fn(Box<Fn>),
2772     /// A module declaration (`mod`).
2773     ///
2774     /// E.g., `mod foo;` or `mod foo { .. }`.
2775     /// `unsafe` keyword on modules is accepted syntactically for macro DSLs, but not
2776     /// semantically by Rust.
2777     Mod(Unsafe, ModKind),
2778     /// An external module (`extern`).
2779     ///
2780     /// E.g., `extern {}` or `extern "C" {}`.
2781     ForeignMod(ForeignMod),
2782     /// Module-level inline assembly (from `global_asm!()`).
2783     GlobalAsm(Box<InlineAsm>),
2784     /// A type alias (`type`).
2785     ///
2786     /// E.g., `type Foo = Bar<u8>;`.
2787     TyAlias(Box<TyAlias>),
2788     /// An enum definition (`enum`).
2789     ///
2790     /// E.g., `enum Foo<A, B> { C<A>, D<B> }`.
2791     Enum(EnumDef, Generics),
2792     /// A struct definition (`struct`).
2793     ///
2794     /// E.g., `struct Foo<A> { x: A }`.
2795     Struct(VariantData, Generics),
2796     /// A union definition (`union`).
2797     ///
2798     /// E.g., `union Foo<A, B> { x: A, y: B }`.
2799     Union(VariantData, Generics),
2800     /// A trait declaration (`trait`).
2801     ///
2802     /// E.g., `trait Foo { .. }`, `trait Foo<T> { .. }` or `auto trait Foo {}`.
2803     Trait(Box<Trait>),
2804     /// Trait alias
2805     ///
2806     /// E.g., `trait Foo = Bar + Quux;`.
2807     TraitAlias(Generics, GenericBounds),
2808     /// An implementation.
2809     ///
2810     /// E.g., `impl<A> Foo<A> { .. }` or `impl<A> Trait for Foo<A> { .. }`.
2811     Impl(Box<Impl>),
2812     /// A macro invocation.
2813     ///
2814     /// E.g., `foo!(..)`.
2815     MacCall(MacCall),
2816
2817     /// A macro definition.
2818     MacroDef(MacroDef),
2819 }
2820
2821 #[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
2822 rustc_data_structures::static_assert_size!(ItemKind, 112);
2823
2824 impl ItemKind {
2825     pub fn article(&self) -> &str {
2826         use ItemKind::*;
2827         match self {
2828             Use(..) | Static(..) | Const(..) | Fn(..) | Mod(..) | GlobalAsm(..) | TyAlias(..)
2829             | Struct(..) | Union(..) | Trait(..) | TraitAlias(..) | MacroDef(..) => "a",
2830             ExternCrate(..) | ForeignMod(..) | MacCall(..) | Enum(..) | Impl { .. } => "an",
2831         }
2832     }
2833
2834     pub fn descr(&self) -> &str {
2835         match self {
2836             ItemKind::ExternCrate(..) => "extern crate",
2837             ItemKind::Use(..) => "`use` import",
2838             ItemKind::Static(..) => "static item",
2839             ItemKind::Const(..) => "constant item",
2840             ItemKind::Fn(..) => "function",
2841             ItemKind::Mod(..) => "module",
2842             ItemKind::ForeignMod(..) => "extern block",
2843             ItemKind::GlobalAsm(..) => "global asm item",
2844             ItemKind::TyAlias(..) => "type alias",
2845             ItemKind::Enum(..) => "enum",
2846             ItemKind::Struct(..) => "struct",
2847             ItemKind::Union(..) => "union",
2848             ItemKind::Trait(..) => "trait",
2849             ItemKind::TraitAlias(..) => "trait alias",
2850             ItemKind::MacCall(..) => "item macro invocation",
2851             ItemKind::MacroDef(..) => "macro definition",
2852             ItemKind::Impl { .. } => "implementation",
2853         }
2854     }
2855
2856     pub fn generics(&self) -> Option<&Generics> {
2857         match self {
2858             Self::Fn(box Fn { generics, .. })
2859             | Self::TyAlias(box TyAlias { generics, .. })
2860             | Self::Enum(_, generics)
2861             | Self::Struct(_, generics)
2862             | Self::Union(_, generics)
2863             | Self::Trait(box Trait { generics, .. })
2864             | Self::TraitAlias(generics, _)
2865             | Self::Impl(box Impl { generics, .. }) => Some(generics),
2866             _ => None,
2867         }
2868     }
2869 }
2870
2871 /// Represents associated items.
2872 /// These include items in `impl` and `trait` definitions.
2873 pub type AssocItem = Item<AssocItemKind>;
2874
2875 /// Represents associated item kinds.
2876 ///
2877 /// The term "provided" in the variants below refers to the item having a default
2878 /// definition / body. Meanwhile, a "required" item lacks a definition / body.
2879 /// In an implementation, all items must be provided.
2880 /// The `Option`s below denote the bodies, where `Some(_)`
2881 /// means "provided" and conversely `None` means "required".
2882 #[derive(Clone, Encodable, Decodable, Debug)]
2883 pub enum AssocItemKind {
2884     /// An associated constant, `const $ident: $ty $def?;` where `def ::= "=" $expr? ;`.
2885     /// If `def` is parsed, then the constant is provided, and otherwise required.
2886     Const(Defaultness, P<Ty>, Option<P<Expr>>),
2887     /// An associated function.
2888     Fn(Box<Fn>),
2889     /// An associated type.
2890     TyAlias(Box<TyAlias>),
2891     /// A macro expanding to associated items.
2892     MacCall(MacCall),
2893 }
2894
2895 #[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
2896 rustc_data_structures::static_assert_size!(AssocItemKind, 72);
2897
2898 impl AssocItemKind {
2899     pub fn defaultness(&self) -> Defaultness {
2900         match *self {
2901             Self::Const(defaultness, ..)
2902             | Self::Fn(box Fn { defaultness, .. })
2903             | Self::TyAlias(box TyAlias { defaultness, .. }) => defaultness,
2904             Self::MacCall(..) => Defaultness::Final,
2905         }
2906     }
2907 }
2908
2909 impl From<AssocItemKind> for ItemKind {
2910     fn from(assoc_item_kind: AssocItemKind) -> ItemKind {
2911         match assoc_item_kind {
2912             AssocItemKind::Const(a, b, c) => ItemKind::Const(a, b, c),
2913             AssocItemKind::Fn(fn_kind) => ItemKind::Fn(fn_kind),
2914             AssocItemKind::TyAlias(ty_alias_kind) => ItemKind::TyAlias(ty_alias_kind),
2915             AssocItemKind::MacCall(a) => ItemKind::MacCall(a),
2916         }
2917     }
2918 }
2919
2920 impl TryFrom<ItemKind> for AssocItemKind {
2921     type Error = ItemKind;
2922
2923     fn try_from(item_kind: ItemKind) -> Result<AssocItemKind, ItemKind> {
2924         Ok(match item_kind {
2925             ItemKind::Const(a, b, c) => AssocItemKind::Const(a, b, c),
2926             ItemKind::Fn(fn_kind) => AssocItemKind::Fn(fn_kind),
2927             ItemKind::TyAlias(ty_alias_kind) => AssocItemKind::TyAlias(ty_alias_kind),
2928             ItemKind::MacCall(a) => AssocItemKind::MacCall(a),
2929             _ => return Err(item_kind),
2930         })
2931     }
2932 }
2933
2934 /// An item in `extern` block.
2935 #[derive(Clone, Encodable, Decodable, Debug)]
2936 pub enum ForeignItemKind {
2937     /// A foreign static item (`static FOO: u8`).
2938     Static(P<Ty>, Mutability, Option<P<Expr>>),
2939     /// An foreign function.
2940     Fn(Box<Fn>),
2941     /// An foreign type.
2942     TyAlias(Box<TyAlias>),
2943     /// A macro expanding to foreign items.
2944     MacCall(MacCall),
2945 }
2946
2947 #[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
2948 rustc_data_structures::static_assert_size!(ForeignItemKind, 72);
2949
2950 impl From<ForeignItemKind> for ItemKind {
2951     fn from(foreign_item_kind: ForeignItemKind) -> ItemKind {
2952         match foreign_item_kind {
2953             ForeignItemKind::Static(a, b, c) => ItemKind::Static(a, b, c),
2954             ForeignItemKind::Fn(fn_kind) => ItemKind::Fn(fn_kind),
2955             ForeignItemKind::TyAlias(ty_alias_kind) => ItemKind::TyAlias(ty_alias_kind),
2956             ForeignItemKind::MacCall(a) => ItemKind::MacCall(a),
2957         }
2958     }
2959 }
2960
2961 impl TryFrom<ItemKind> for ForeignItemKind {
2962     type Error = ItemKind;
2963
2964     fn try_from(item_kind: ItemKind) -> Result<ForeignItemKind, ItemKind> {
2965         Ok(match item_kind {
2966             ItemKind::Static(a, b, c) => ForeignItemKind::Static(a, b, c),
2967             ItemKind::Fn(fn_kind) => ForeignItemKind::Fn(fn_kind),
2968             ItemKind::TyAlias(ty_alias_kind) => ForeignItemKind::TyAlias(ty_alias_kind),
2969             ItemKind::MacCall(a) => ForeignItemKind::MacCall(a),
2970             _ => return Err(item_kind),
2971         })
2972     }
2973 }
2974
2975 pub type ForeignItem = Item<ForeignItemKind>;