Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Jan 17, 2025
1 parent 46d6840 commit dd44926
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/oxc_mangler/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::ops::Deref;
use std::iter;
use std::ops::Deref;

use compact_str::CompactString;
use fixedbitset::FixedBitSet;
Expand Down
3 changes: 2 additions & 1 deletion crates/oxc_traverse/src/context/scoping.rs
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,8 @@ impl TraverseScoping {
symbol_id: SymbolId,
flags: ReferenceFlags,
) -> ReferenceId {
let reference = Reference::new_with_symbol_id(NodeId::DUMMY, self.current_scope_id, symbol_id, flags);
let reference =
Reference::new_with_symbol_id(NodeId::DUMMY, self.current_scope_id, symbol_id, flags);
let reference_id = self.symbols.create_reference(reference);
self.symbols.add_resolved_reference(symbol_id, reference_id);
reference_id
Expand Down

0 comments on commit dd44926

Please sign in to comment.