rolldown_common 0.1.0

This crate is mostly for sharing code between rolldwon crates.
Documentation
1
2
3
4
5
6
7
8
use oxc::semantic::{ScopeId, SymbolId};
use oxc_index::IndexVec;
use rustc_hash::FxHashMap;

use crate::ModuleIdx;

pub type ModuleScopeSymbolIdMap<'a> =
  FxHashMap<ModuleIdx, IndexVec<ScopeId, Vec<(SymbolId, &'a str)>>>;