rust/src/lib.rs

11 lines
192 B
Rust
Raw Normal View History

2017-12-29 21:33:04 +01:00
extern crate unicode_xid;
2017-12-28 22:56:36 +01:00
mod text;
mod tree;
mod lexer;
pub mod syntax_kinds;
2017-12-31 15:54:33 +01:00
pub use text::{TextUnit, TextRange};
2017-12-28 22:56:36 +01:00
pub use tree::{SyntaxKind, Token};
2017-12-31 15:54:33 +01:00
pub use lexer::{next_token, tokenize};