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)`.
This commit is contained in:
overlookmotel 2024-12-14 03:21:58 +00:00
parent e766051c2d
commit 1380b7b7e9

View file

@ -94,7 +94,7 @@ impl<'a, 'ctx> ClassProperties<'a, 'ctx> {
} }
/// [A, B, C] -> [[A, B, C]] /// [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>>, arguments: &mut ArenaVec<'a, Argument<'a>>,
ctx: &mut TraverseCtx<'a>, ctx: &mut TraverseCtx<'a>,
) { ) {