oak_csharp/
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")]
5pub mod language;
6pub mod lexer;
7pub mod parser;
8
9pub use crate::{
10    language::CSharpLanguage,
11    lexer::{CSharpLexer, CSharpTokenType},
12    parser::{CSharpElementType, CSharpParser},
13};