Skip to content

Commit

Permalink
refactor(semantic): fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
overlookmotel committed Aug 21, 2024
1 parent 1bd9365 commit 8a231d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/oxc_semantic/src/post_transform_checker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ current scope {cur_scope_id:?}: {current_bindings:?}
)));
if !current_scopes.has_binding(current_symbols.get_scope_id(symbol_id), name) {
self.errors.push(OxcDiagnostic::error(
format!("Cannot find BindingIdentifier({name}) in the Scope corresponding to the Symbol"),
));
format!("Cannot find BindingIdentifier({name}) in the Scope corresponding to the Symbol"),
));
}
}
}
Expand Down

0 comments on commit 8a231d2

Please sign in to comment.