oxc_regular_expression 0.125.0

A collection of JavaScript tools written in Rust.
Documentation
#![expect(clippy::missing_errors_doc)]

mod ast_impl;
mod diagnostics;
mod options;
mod parser;
mod surrogate_pair;

mod generated {
    #[cfg(debug_assertions)]
    mod assert_layouts;
    mod derive_clone_in;
    mod derive_content_eq;
}

pub mod ast;
pub use crate::{
    ast_impl::support::{RegexUnsupportedPatterns, has_unsupported_regular_expression_pattern},
    ast_impl::visit,
    options::Options,
    parser::{ConstructorParser, LiteralParser},
};