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 highlighter;
9pub mod kind;
10mod language;
11pub mod lexer;
12pub mod lsp;
13pub mod parser;
14pub mod syntax;
15
16#[cfg(feature = "mcp")]
17pub mod mcp;
18
19pub use crate::{ast::JasmRoot, builder::JasmBuilder, highlighter::JasmHighlighter, language::JasmLanguage, lexer::JasmLexer, lsp::JasmLanguageService, parser::JasmParser};