2017-12-29 23:33:04 +03:00
|
|
|
extern crate unicode_xid;
|
|
|
|
|
2017-12-29 00:56:36 +03:00
|
|
|
mod text;
|
|
|
|
mod tree;
|
|
|
|
mod lexer;
|
|
|
|
|
|
|
|
pub mod syntax_kinds;
|
2017-12-31 17:54:33 +03:00
|
|
|
pub use text::{TextUnit, TextRange};
|
2017-12-31 23:27:36 +03:00
|
|
|
pub use tree::{SyntaxKind, Token, FileBuilder, File, Node};
|
2017-12-31 17:54:33 +03:00
|
|
|
pub use lexer::{next_token, tokenize};
|