aboutsummaryrefslogtreecommitdiff
path: root/xtask/src
diff options
context:
space:
mode:
Diffstat (limited to 'xtask/src')
-rw-r--r--xtask/src/ast_src.rs5
-rw-r--r--xtask/src/codegen/gen_syntax.rs1
2 files changed, 4 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 {
diff --git a/xtask/src/codegen/gen_syntax.rs b/xtask/src/codegen/gen_syntax.rs
index 6657c9fc5..b5594e3a9 100644
--- a/xtask/src/codegen/gen_syntax.rs
+++ b/xtask/src/codegen/gen_syntax.rs
@@ -208,6 +208,7 @@ fn generate_nodes(kinds: KindsSrc<'_>, grammar: AstSrc<'_>) -> Result<String> {
208 FieldSrc::Optional(_) | FieldSrc::Shorthand => { 208 FieldSrc::Optional(_) | FieldSrc::Shorthand => {
209 let is_token = token_kinds.contains(&ty.to_string()); 209 let is_token = token_kinds.contains(&ty.to_string());
210 if is_token { 210 if is_token {
211 let method_name = format_ident!("{}_token", method_name);
211 quote! { 212 quote! {
212 pub fn #method_name(&self) -> Option<#ty> { 213 pub fn #method_name(&self) -> Option<#ty> {
213 support::token(&self.syntax) 214 support::token(&self.syntax)