rust-analyzer/src/lib.rs

9 lines
140 B
Rust
Raw Normal View History

2017-12-28 21:56:36 +00: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;