Skip to main content

oak_dart/
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;
8mod formatter;
9pub mod highlighter;
10mod kind;
11mod language;
12mod lexer;
13pub mod parser;
14
15pub use crate::{
16    ast::DartRoot,
17    builder::DartBuilder,
18    formatter::DartFormatter,
19    highlighter::DartHighlighter,
20    kind::{DartSyntaxKind, DartToken},
21    language::DartLanguage,
22    lexer::DartLexer,
23};