aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 0685e3f2c..13872a3d9 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -3,8 +3,10 @@ extern crate unicode_xid;
3mod text; 3mod text;
4mod tree; 4mod tree;
5mod lexer; 5mod lexer;
6mod parser;
6 7
7pub mod syntax_kinds; 8pub mod syntax_kinds;
8pub use text::{TextUnit, TextRange}; 9pub use text::{TextUnit, TextRange};
9pub use tree::{SyntaxKind, Token, FileBuilder, File, Node}; 10pub use tree::{SyntaxKind, Token, FileBuilder, File, Node};
10pub use lexer::{next_token, tokenize}; 11pub use lexer::{next_token, tokenize};
12pub use parser::parse;