Skip to main content

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;
7mod builder;
8pub mod language;
9pub mod lexer;
10pub mod parser;
11
12pub use crate::{
13    ast::BashRoot,
14    builder::BashBuilder,
15    language::BashLanguage,
16    lexer::{BashLexer, BashTokenType},
17    parser::{BashElementType, BashParser},
18};