Skip to content

Commit

Permalink
refactor(transformer/class-properties): reduce visibility of method (#…
Browse files Browse the repository at this point in the history
…7858)

Follow-on after #7831. `transform_super_call_expression_arguments` is only used within this file, so does not need to be `pub(super)`.
  • Loading branch information
overlookmotel committed Dec 14, 2024
1 parent e766051 commit 1380b7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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>,
) {
Expand Down

0 comments on commit 1380b7b

Please sign in to comment.