rust/src/lib.rs

9 lines
140 B
Rust
Raw Normal View History

2017-12-28 22:56:36 +01:00
mod text;
mod tree;
mod lexer;
pub mod syntax_kinds;
pub use text::TextUnit;
pub use tree::{SyntaxKind, Token};
pub use lexer::next_token;