mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 21:05:02 +00:00
fixed macro for brackets
This commit is contained in:
parent
64ab5ab10d
commit
d77175ce28
2 changed files with 3 additions and 3 deletions
|
@ -245,8 +245,8 @@ use self::SyntaxKind::*;
|
|||
macro_rules! T {
|
||||
(;) => { $crate::SyntaxKind::SEMI };
|
||||
(,) => { $crate::SyntaxKind::COMMA };
|
||||
(() => { $crate::SyntaxKind::L_PAREN };
|
||||
()) => { $crate::SyntaxKind::R_PAREN };
|
||||
('(') => { $crate::SyntaxKind::L_PAREN };
|
||||
(')') => { $crate::SyntaxKind::R_PAREN };
|
||||
('{') => { $crate::SyntaxKind::L_CURLY };
|
||||
('}') => { $crate::SyntaxKind::R_CURLY };
|
||||
('[') => { $crate::SyntaxKind::L_BRACK };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue