Skip to content

Commit

Permalink
order
Browse files Browse the repository at this point in the history
  • Loading branch information
camc314 committed Sep 15, 2023
1 parent 1a26267 commit 3f17794
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/oxc_ast/src/visit_mut.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,13 @@ pub trait VisitMut<'a, 'b>: Sized {

fn visit_for_statement_init(&mut self, init: &'b mut ForStatementInit<'a>) {
match init {
ForStatementInit::UsingDeclaration(decl) => {
self.visit_using_declaration(decl);
}
ForStatementInit::VariableDeclaration(decl) => {
self.visit_variable_declaration(decl);
}
ForStatementInit::Expression(expr) => self.visit_expression(expr),
ForStatementInit::UsingDeclaration(decl) => {
self.visit_using_declaration(decl);
}
}
}

Expand Down

0 comments on commit 3f17794

Please sign in to comment.