oak_cpp/
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;
7pub mod kind;
8pub mod language;
9pub mod lexer;
10
11pub use crate::{
12    ast::CppRoot,
13    kind::CppSyntaxKind,
14    language::CppLanguage,
15    lexer::{CLexer, CppLexer},
16};