From 1380b7b7e9799ed2852357c609fa525b3c3441d7 Mon Sep 17 00:00:00 2001 From: overlookmotel <557937+overlookmotel@users.noreply.github.com> Date: Sat, 14 Dec 2024 03:21:58 +0000 Subject: [PATCH] refactor(transformer/class-properties): reduce visibility of method (#7858) Follow-on after #7831. `transform_super_call_expression_arguments` is only used within this file, so does not need to be `pub(super)`. --- crates/oxc_transformer/src/es2022/class_properties/supers.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/oxc_transformer/src/es2022/class_properties/supers.rs b/crates/oxc_transformer/src/es2022/class_properties/supers.rs index 40e8168cd..95be2a1ec 100644 --- a/crates/oxc_transformer/src/es2022/class_properties/supers.rs +++ b/crates/oxc_transformer/src/es2022/class_properties/supers.rs @@ -94,7 +94,7 @@ impl<'a, 'ctx> ClassProperties<'a, 'ctx> { } /// [A, B, C] -> [[A, B, C]] - pub(super) fn transform_super_call_expression_arguments( + fn transform_super_call_expression_arguments( arguments: &mut ArenaVec<'a, Argument<'a>>, ctx: &mut TraverseCtx<'a>, ) {