oak_bash/
lib.rs

1#![feature(new_range_api)]
2#![doc = include_str!("readme.md")]
3#![doc(html_logo_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]
4#![doc(html_favicon_url = "https://raw.githubusercontent.com/ygg-lang/oaks/refs/heads/dev/documents/logo.svg")]
5
6pub mod ast;
7pub mod language;
8pub mod lexer;
9pub mod parser;
10
11pub use crate::{
12    ast::BashRoot,
13    language::BashLanguage,
14    lexer::{BashLexer, BashTokenType},
15    parser::{BashElementType, BashParser},
16};