aboutsummaryrefslogtreecommitdiff
path: root/xtask
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-04-09 17:40:43 +0100
committerAleksey Kladov <[email protected]>2020-04-09 17:48:13 +0100
commit2bfb65db93e48d8f9e8ecac0b2ea837c081a4db5 (patch)
tree8a518f7fadab6918dea225122a69c8fd040e0fc1 /xtask
parente6d22187a67e762bb950de244a6ca15f3a0b0731 (diff)
Be consistent about token accesors
Diffstat (limited to 'xtask')
-rw-r--r--xtask/src/ast_src.rs5
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 {