diff options
Diffstat (limited to 'xtask/src/ast_src.rs')
-rw-r--r-- | xtask/src/ast_src.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xtask/src/ast_src.rs b/xtask/src/ast_src.rs index eba66ff4d..74a87e900 100644 --- a/xtask/src/ast_src.rs +++ b/xtask/src/ast_src.rs | |||
@@ -408,7 +408,7 @@ pub(crate) const AST_SRC: AstSrc = AstSrc { | |||
408 | struct TupleType { LParen, fields: [TypeRef], RParen } | 408 | struct TupleType { LParen, fields: [TypeRef], RParen } |
409 | struct NeverType { Excl } | 409 | struct NeverType { Excl } |
410 | struct PathType { Path } | 410 | struct PathType { Path } |
411 | struct PointerType { Star, ConstKw, TypeRef } | 411 | struct PointerType { Star, ConstKw, MutKw, TypeRef } |
412 | struct ArrayType { LBrack, TypeRef, Semi, Expr, RBrack } | 412 | struct ArrayType { LBrack, TypeRef, Semi, Expr, RBrack } |
413 | struct SliceType { LBrack, TypeRef, RBrack } | 413 | struct SliceType { LBrack, TypeRef, RBrack } |
414 | struct ReferenceType { Amp, Lifetime, MutKw, TypeRef } | 414 | struct ReferenceType { Amp, Lifetime, MutKw, TypeRef } |
@@ -485,7 +485,7 @@ pub(crate) const AST_SRC: AstSrc = AstSrc { | |||
485 | struct ParenPat { LParen, Pat, RParen } | 485 | struct ParenPat { LParen, Pat, RParen } |
486 | struct RefPat { Amp, MutKw, Pat } | 486 | struct RefPat { Amp, MutKw, Pat } |
487 | struct BoxPat { BoxKw, Pat } | 487 | struct BoxPat { BoxKw, Pat } |
488 | struct BindPat: AttrsOwner, NameOwner { RefKw, MutKw, Pat } | 488 | struct BindPat: AttrsOwner, NameOwner { RefKw, MutKw, At, Pat } |
489 | struct PlaceholderPat { Underscore } | 489 | struct PlaceholderPat { Underscore } |
490 | struct DotDotPat { Dotdot } | 490 | struct DotDotPat { Dotdot } |
491 | struct PathPat { Path } | 491 | struct PathPat { Path } |
@@ -545,6 +545,7 @@ pub(crate) const AST_SRC: AstSrc = AstSrc { | |||
545 | Pat, | 545 | Pat, |
546 | Eq, | 546 | Eq, |
547 | initializer: Expr, | 547 | initializer: Expr, |
548 | Semi, | ||
548 | } | 549 | } |
549 | struct Condition { LetKw, Pat, Eq, Expr } | 550 | struct Condition { LetKw, Pat, Eq, Expr } |
550 | struct Block: AttrsOwner, ModuleItemOwner { | 551 | struct Block: AttrsOwner, ModuleItemOwner { |