diff --git a/crates/oxc_semantic/src/binder.rs b/crates/oxc_semantic/src/binder.rs index fcd661500f680..28612911cff41 100644 --- a/crates/oxc_semantic/src/binder.rs +++ b/crates/oxc_semantic/src/binder.rs @@ -13,7 +13,8 @@ use oxc_span::SourceType; use crate::{scope::ScopeFlags, symbol::SymbolFlags, SemanticBuilder}; pub trait Binder { - fn bind(&self, _builder: &mut SemanticBuilder) {} + #[allow(unused_variables)] + fn bind(&self, builder: &mut SemanticBuilder) {} } impl<'a> Binder for VariableDeclarator<'a> {