mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
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>
22 lines
462 B
Rust
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;
|
|
}
|