oxc/crates/oxc_regular_expression/src/lib.rs
leaysgur 8032813bf8 fix(regular_expression)!: Migrate to new regexp parser API (#6741)
Follow up #6635

- [x] Remove old APIs
- [x] Update linter usage
- [x] Update parser usage
- [x] Update transformer usage
2024-10-22 05:34:18 +00:00

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},
};