Skip to content

Commit 479babf

Browse files
Reject visibilities on macro_rules!
1 parent c1cb595 commit 479babf

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

crates/syntax/src/validation.rs

+13-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
mod block;
44

55
use crate::{
6-
algo, ast, match_ast, AstNode, SyntaxError,
6+
algo,
7+
ast::{self, VisibilityOwner},
8+
match_ast, AstNode, SyntaxError,
79
SyntaxKind::{CONST, FN, INT_NUMBER, TYPE_ALIAS},
810
SyntaxNode, SyntaxToken, TextSize, T,
911
};
@@ -99,6 +101,7 @@ pub(crate) fn validate(root: &SyntaxNode) -> Vec<SyntaxError> {
99101
ast::RefType(it) => validate_trait_object_ref_ty(it, &mut errors),
100102
ast::PtrType(it) => validate_trait_object_ptr_ty(it, &mut errors),
101103
ast::FnPtrType(it) => validate_trait_object_fn_ptr_ret_ty(it, &mut errors),
104+
ast::MacroRules(it) => validate_macro_rules(it, &mut errors),
102105
_ => (),
103106
}
104107
}
@@ -350,3 +353,12 @@ fn validate_trait_object_ty(ty: ast::DynTraitType) -> Option<SyntaxError> {
350353
}
351354
None
352355
}
356+
357+
fn validate_macro_rules(mac: ast::MacroRules, errors: &mut Vec<SyntaxError>) {
358+
if let Some(vis) = mac.visibility() {
359+
errors.push(SyntaxError::new(
360+
"visibilities are not allowed on `macro_rules!` items",
361+
vis.syntax().text_range(),
362+
));
363+
}
364+
}

0 commit comments

Comments
 (0)