Unnamed repository; edit this file 'description' to name the repository.
Auto merge of #16787 - pksunkara:remove-macro-call-check, r=lnicola
Remove unncessary check for macro call Since `macro_rules` is a contextual keyword, it is an `IDENT` token and thus `is_path_start` already identifies it correctly. You can tell the previous check is unnecessary because the relevant tests still pass.
bors 2024-03-08
parent 2b7b44b · parent a838e44 · commit 2397e7a
-rw-r--r--crates/parser/src/grammar/items.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/parser/src/grammar/items.rs b/crates/parser/src/grammar/items.rs
index ee11571307..25c00ccf5f 100644
--- a/crates/parser/src/grammar/items.rs
+++ b/crates/parser/src/grammar/items.rs
@@ -70,8 +70,7 @@ pub(super) fn item_or_macro(p: &mut Parser<'_>, stop_on_r_curly: bool) {
// macro_rules! {};
// macro_rules! ()
// macro_rules! []
- let no_ident = p.at_contextual_kw(T![macro_rules]) && p.nth_at(1, BANG) && !p.nth_at(2, IDENT);
- if paths::is_use_path_start(p) || no_ident {
+ if paths::is_use_path_start(p) {
macro_call(p, m);
return;
}