Skip to content

Commit 65ed432

Browse files
committed
refactor(transformer/arrow-functions): reduce repeated code (#8323)
Follow-on after #8024. Pure refactor. Make `self.visit_statement(stmt)` only get called in one place, rather than 2.
1 parent a718c25 commit 65ed432

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

crates/oxc_transformer/src/common/arrow_function_converter.rs

+2-6
Original file line numberDiff line numberDiff line change
@@ -1141,12 +1141,8 @@ impl<'a> VisitMut<'a> for ConstructorBodyThisAfterSuperInserter<'a, '_> {
11411141
let mut new_stmts = vec![];
11421142

11431143
for (index, stmt) in statements.iter_mut().enumerate() {
1144-
let Statement::ExpressionStatement(expr_stmt) = stmt else {
1145-
self.visit_statement(stmt);
1146-
continue;
1147-
};
1148-
1149-
if expr_stmt.expression.is_super_call_expression() {
1144+
if matches!(stmt, Statement::ExpressionStatement(expr_stmt) if expr_stmt.expression.is_super_call_expression())
1145+
{
11501146
let assignment = self.create_assignment_to_this_temp_var();
11511147
let new_stmt = self.ctx.ast.statement_expression(SPAN, assignment);
11521148
new_stmts.push((index, new_stmt));

0 commit comments

Comments
 (0)