1#![doc = include_str!("readme.md")]
2#![feature(new_range_api)]
3#![warn(missing_docs)]
4#![doc(html_logo_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]
5#![doc(html_favicon_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]
6pub mod ast;
10pub mod builder;
12pub mod language;
15pub mod lexer;
17#[cfg(any(feature = "lsp", feature = "oak-highlight", feature = "oak-pretty-print"))]
18pub mod lsp;
19pub mod parser;
21
22pub use crate::{
23 ast::BashRoot,
24 builder::BashBuilder,
25 language::BashLanguage,
26 lexer::token_type::BashTokenType,
27 parser::{BashParser, element_type::BashElementType},
28};