#![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 builder;
pub mod language;
pub mod lexer;
pub mod parser;
pub use ast::*;
pub use builder::VueBuilder;
pub use language::VueLanguage;
pub use lexer::{VueLexer, token_type::VueTokenType};
pub use parser::{VueParser, element_type::VueElementType};