Skip to content

Commit b0d979d

Browse files
committed
fix(semantic)!: make Scoping::references private (#9629)
1 parent 3c6f140 commit b0d979d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/oxc_semantic/src/scoping.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ pub struct Scoping {
4242
pub(crate) symbol_declarations: IndexVec<SymbolId, NodeId>,
4343
symbol_redeclarations: IndexVec<SymbolId, Option<RedeclarationId>>,
4444

45-
pub references: IndexVec<ReferenceId, Reference>,
45+
pub(crate) references: IndexVec<ReferenceId, Reference>,
4646

4747
/// Function or Variable Symbol IDs that are marked with `@__NO_SIDE_EFFECTS__`.
4848
pub(crate) no_side_effects: FxHashSet<SymbolId>,

0 commit comments

Comments
 (0)