oxc_syntax 0.125.0

A collection of JavaScript tools written in Rust.
Documentation
//! Common code for JavaScript Syntax

use std::num::NonZeroU32;

use oxc_ast_macros::ast;

pub mod class;
pub mod comment_node;
pub mod constant_value;
pub mod es_target;
pub mod identifier;
pub mod keyword;
pub mod line_terminator;
pub mod module_record;
pub mod node;
pub mod number;
pub mod operator;
pub mod precedence;
pub mod reference;
pub mod scope;
#[cfg(feature = "serialize")]
mod serialize;
pub mod symbol;
pub mod xml_entities;

mod generated {
    #[cfg(debug_assertions)]
    mod assert_layouts;
    mod derive_clone_in;
    mod derive_content_eq;
    mod derive_dummy;
    #[cfg(feature = "serialize")]
    mod derive_estree;
}

/// Dummy type to communicate the content of `nonmax::NonMaxU32` to `oxc_ast_tools`.
#[ast(foreign = NonMaxU32)]
#[expect(dead_code)]
struct NonMaxU32Alias(NonZeroU32);