aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 3b9dbc8f746db5c31b277bed068efae8a25773df (plain)
1
2
3
4
5
6
7
8
9
10
extern crate unicode_xid;

mod text;
mod tree;
mod lexer;

pub mod syntax_kinds;
pub use text::TextUnit;
pub use tree::{SyntaxKind, Token};
pub use lexer::next_token;