1#![doc = include_str!("readme.md")]
2#![feature(new_range_api)]
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 builder;
8pub mod highlighter;
9mod kind;
10mod language;
11mod lexer;
12pub mod lsp;
13pub mod mcp;
14mod parser;
15
16pub use crate::{ast::HlslRoot, builder::HlslBuilder, highlighter::HlslHighlighter, language::HlslLanguage, lexer::HlslLexer, lsp::HlslLanguageService, parser::HlslParser};