mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 04:08:41 +00:00
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:
parent
e766051c2d
commit
1380b7b7e9
1 changed files with 1 additions and 1 deletions
|
|
@ -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>,
|
||||
) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue