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