diff --git a/crates/oxc_ast_macros/src/lib.rs b/crates/oxc_ast_macros/src/lib.rs index f58151719..d35379d8e 100644 --- a/crates/oxc_ast_macros/src/lib.rs +++ b/crates/oxc_ast_macros/src/lib.rs @@ -25,7 +25,7 @@ pub fn ast(_args: TokenStream, input: TokenStream) -> TokenStream { /// /// Does not generate any code. /// Only purpose is to allow using `#[scope]`, `#[visit]`, and other attrs in the AST node type defs. -#[proc_macro_derive(Ast, attributes(span, scope, visit, visit_as, visit_args, serde, tsify))] +#[proc_macro_derive(Ast, attributes(scope, visit, span, serde, tsify))] pub fn ast_derive(_item: TokenStream) -> TokenStream { TokenStream::new() }