diff --git a/crates/oxc_ast/src/ast_impl/js.rs b/crates/oxc_ast/src/ast_impl/js.rs index d56ac43e76f26a..cfe8a373c56ea5 100644 --- a/crates/oxc_ast/src/ast_impl/js.rs +++ b/crates/oxc_ast/src/ast_impl/js.rs @@ -244,7 +244,6 @@ impl<'a> Expression<'a> { matches!(self, Expression::CallExpression(_)) } - #[allow(missing_docs)] pub fn is_super_call_expression(&self) -> bool { matches!(self, Expression::CallExpression(expr) if matches!(&expr.callee, Expression::Super(_)))