#![doc = include_str!("readme.md")]
#![feature(new_range_api)]
#![warn(missing_docs)]
#![doc(html_logo_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]
#![doc(html_favicon_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]
pub mod ast;
pub mod language;
pub mod lexer;
pub mod parser;
mod builder;
#[cfg(any(feature = "lsp", feature = "oak-highlight", feature = "oak-pretty-print"))]
pub mod lsp;
#[cfg(feature = "mcp")]
pub mod mcp;
pub use crate::{ast::*, builder::RhombusBuilder, language::RhombusLanguage, lexer::RhombusLexer, parser::RhombusParser};
#[cfg(feature = "lsp")]
pub use crate::lsp::RhombusLanguageService;
#[cfg(all(feature = "lsp", feature = "oak-pretty-print"))]
pub use crate::lsp::formatter::RhombusFormatter;
#[cfg(all(feature = "lsp", feature = "oak-highlight"))]
pub use crate::lsp::highlighter::RhombusHighlighter;
#[cfg(feature = "mcp")]
pub use crate::mcp::serve_rhombus_mcp;
pub use lexer::token_type::RhombusTokenType;
pub use parser::element_type::RhombusElementType;