rust/src/lib.rs

11 lines
167 B
Rust
Raw Normal View History

2017-12-29 14:33:04 -06:00
extern crate unicode_xid;
2017-12-28 15:56:36 -06: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;