#![doc = include_str!("../ABOUT.md")]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/boa-dev/boa/main/assets/logo_black.svg",
html_favicon_url = "https://raw.githubusercontent.com/boa-dev/boa/main/assets/logo_black.svg"
)]
#![cfg_attr(test, allow(clippy::needless_raw_string_hashes))] #![cfg_attr(not(test), forbid(clippy::unwrap_used))]
#![allow(
clippy::module_name_repetitions,
clippy::too_many_lines,
clippy::cognitive_complexity,
clippy::let_unit_value,
clippy::redundant_pub_crate,
clippy::struct_field_names
)]
pub mod error;
pub mod lexer;
pub mod parser;
pub mod source;
pub use error::Error;
pub use lexer::Lexer;
pub use parser::Parser;
pub use source::Source;