mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 04:08:41 +00:00
perf(syntax): use FxDashMap for exported bindings (#7525)
Same as #7521. Use `FxDashMap` instead of plain `DashMap` for hash map storing exported bindings.
This commit is contained in:
parent
f847d0f161
commit
4a98230f07
1 changed files with 1 additions and 1 deletions
|
|
@ -78,7 +78,7 @@ pub struct ModuleRecord {
|
|||
|
||||
/// Reexported bindings from `export * from 'specifier'`
|
||||
/// Keyed by resolved path
|
||||
pub exported_bindings_from_star_export: DashMap<PathBuf, Vec<CompactStr>>,
|
||||
pub exported_bindings_from_star_export: FxDashMap<PathBuf, Vec<CompactStr>>,
|
||||
|
||||
/// `export default name`
|
||||
/// ^^^^^^^ span
|
||||
|
|
|
|||
Loading…
Reference in a new issue