oxc_data_structures/lib.rs
1//! Data structures used across other oxc crates.
2
3#[cfg(feature = "assert_unchecked")]
4mod assert_unchecked;
5
6#[cfg(feature = "box_macros")]
7pub mod box_macros;
8
9#[cfg(feature = "code_buffer")]
10pub mod code_buffer;
11
12#[cfg(feature = "fieldless_enum")]
13pub mod fieldless_enum;
14
15#[cfg(feature = "inline_string")]
16pub mod inline_string;
17
18#[cfg(feature = "rope")]
19pub mod rope;
20
21#[cfg(feature = "slice_iter")]
22pub mod slice_iter;
23
24#[cfg(feature = "stack")]
25pub mod stack;