Files
rust/src/lib.rs
T
2018-01-01 00:13:56 +03:00

13 lines
258 B
Rust

extern crate unicode_xid;
mod text;
mod tree;
mod lexer;
mod parser;
pub mod syntax_kinds;
pub use text::{TextUnit, TextRange};
pub use tree::{SyntaxKind, Token, FileBuilder, Sink, File, Node};
pub use lexer::{next_token, tokenize};
pub use parser::parse;