From b0d979d1515a8128cbaf246f31727a3c8a1a665c Mon Sep 17 00:00:00 2001 From: Boshen <1430279+Boshen@users.noreply.github.com> Date: Sun, 9 Mar 2025 12:25:29 +0000 Subject: [PATCH] fix(semantic)!: make `Scoping::references` private (#9629) --- crates/oxc_semantic/src/scoping.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/oxc_semantic/src/scoping.rs b/crates/oxc_semantic/src/scoping.rs index 050c90ecfa369..2d9ab11b85372 100644 --- a/crates/oxc_semantic/src/scoping.rs +++ b/crates/oxc_semantic/src/scoping.rs @@ -42,7 +42,7 @@ pub struct Scoping { pub(crate) symbol_declarations: IndexVec, symbol_redeclarations: IndexVec>, - pub references: IndexVec, + pub(crate) references: IndexVec, /// Function or Variable Symbol IDs that are marked with `@__NO_SIDE_EFFECTS__`. pub(crate) no_side_effects: FxHashSet,