oxc/crates/oxc_syntax/src/lib.rs
ottomated e310e52ca2
feat(parser): Generate Serialize impls in ast_tools (#6404)
Beginning of #6347. Instead of using serde-derive, we generate
`Serialize` impls manually.

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: overlookmotel <theoverlookmotel@gmail.com>
2024-10-19 09:38:44 +01:00

22 lines
462 B
Rust

//! Common code for JavaScript Syntax
#![warn(missing_docs)]
pub mod class;
pub mod identifier;
pub mod keyword;
pub mod module_graph_visitor;
pub mod module_record;
pub mod node;
pub mod number;
pub mod operator;
pub mod precedence;
pub mod reference;
pub mod scope;
pub mod symbol;
pub mod xml_entities;
mod generated {
mod derive_clone_in;
mod derive_content_eq;
mod derive_content_hash;
#[cfg(feature = "serialize")]
mod derive_estree;
}