mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 04:42:10 +00:00
Part of https://github.com/oxc-project/backlog/issues/130 I didn't add doc comments to everything; I'm missing context for module-related data types and I have other things to do :P
20 lines
405 B
Rust
20 lines
405 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;
|
|
}
|