mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-20 00:54:45 +00:00
10 lines
167 B
Rust
10 lines
167 B
Rust
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;
|