diff options
Diffstat (limited to 'xtask/src/codegen')
-rw-r--r-- | xtask/src/codegen/gen_syntax.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/src/codegen/gen_syntax.rs b/xtask/src/codegen/gen_syntax.rs index 44460effa..eb524d85a 100644 --- a/xtask/src/codegen/gen_syntax.rs +++ b/xtask/src/codegen/gen_syntax.rs | |||
@@ -380,7 +380,7 @@ fn generate_syntax_kinds(grammar: KindsSrc<'_>) -> Result<String> { | |||
380 | macro_rules! T { | 380 | macro_rules! T { |
381 | #([#punctuation_values] => { $crate::SyntaxKind::#punctuation };)* | 381 | #([#punctuation_values] => { $crate::SyntaxKind::#punctuation };)* |
382 | #([#all_keywords_idents] => { $crate::SyntaxKind::#all_keywords };)* | 382 | #([#all_keywords_idents] => { $crate::SyntaxKind::#all_keywords };)* |
383 | [lifetime] => { $crate::SyntaxKind::LIFETIME }; | 383 | [lifetime_ident] => { $crate::SyntaxKind::LIFETIME_IDENT }; |
384 | [ident] => { $crate::SyntaxKind::IDENT }; | 384 | [ident] => { $crate::SyntaxKind::IDENT }; |
385 | [shebang] => { $crate::SyntaxKind::SHEBANG }; | 385 | [shebang] => { $crate::SyntaxKind::SHEBANG }; |
386 | } | 386 | } |