1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
//! # The JavaScript Oxidation Compiler
//!
//! <https://github.com/oxc-project/oxc>

pub mod allocator {
    #[doc(inline)]
    pub use oxc_allocator::*;
}

pub mod ast {
    #[doc(inline)]
    pub use oxc_ast::*;
}

pub mod diagnostics {
    #[doc(inline)]
    pub use oxc_diagnostics::*;
}

pub mod index {
    #[doc(inline)]
    pub use oxc_index::*;
}

pub mod parser {
    #[doc(inline)]
    pub use oxc_parser::*;
}

pub mod span {
    #[doc(inline)]
    pub use oxc_span::*;
}

pub mod syntax {
    #[doc(inline)]
    pub use oxc_syntax::*;
}

#[cfg(feature = "semantic")]
pub mod semantic {
    #[doc(inline)]
    pub use oxc_semantic::*;
}

#[cfg(feature = "transformer")]
pub mod transformer {
    #[doc(inline)]
    pub use oxc_transformer::*;
}

#[cfg(feature = "minifier")]
pub mod minifier {
    #[doc(inline)]
    pub use oxc_minifier::*;
}

#[cfg(feature = "codegen")]
pub mod codegen {
    #[doc(inline)]
    pub use oxc_codegen::*;
}

#[cfg(feature = "sourcemap")]
pub mod sourcemap {
    #[doc(inline)]
    pub use oxc_sourcemap::*;
}