oxc/crates/oxc_syntax/src/lib.rs
DonIsaac 335b7f22c5 docs(syntax): enable lint warnings on missing docs, and add a lot of documentation (#6611)
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
2024-10-15 22:50:45 +00:00

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;
}