mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 04:42:10 +00:00
Follow up #6635 - [x] Remove old APIs - [x] Update linter usage - [x] Update parser usage - [x] Update transformer usage
22 lines
397 B
Rust
22 lines
397 B
Rust
#![allow(clippy::missing_errors_doc)]
|
|
|
|
mod ast_impl;
|
|
mod diagnostics;
|
|
mod options;
|
|
mod parser;
|
|
mod surrogate_pair;
|
|
|
|
mod generated {
|
|
mod derive_clone_in;
|
|
mod derive_content_eq;
|
|
mod derive_content_hash;
|
|
#[cfg(feature = "serialize")]
|
|
mod derive_estree;
|
|
}
|
|
|
|
pub mod ast;
|
|
pub use crate::{
|
|
ast_impl::visit,
|
|
options::Options,
|
|
parser::{ConstructorParser, LiteralParser},
|
|
};
|