diff options
author | Aleksey Kladov <[email protected]> | 2018-08-18 10:42:28 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-08-18 10:42:28 +0100 |
commit | 4d8be265849c55912467961e09af657176472dcb (patch) | |
tree | 6d1808a89a57db69211a1dd5d4f25c4650da10d7 /crates/libsyntax2 | |
parent | a5eeef0eeed092cb663afc3b0cda2c0df0c7e793 (diff) |
refactor
Diffstat (limited to 'crates/libsyntax2')
-rw-r--r-- | crates/libsyntax2/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/libsyntax2/src/lib.rs b/crates/libsyntax2/src/lib.rs index e837a8d2d..c078baa3a 100644 --- a/crates/libsyntax2/src/lib.rs +++ b/crates/libsyntax2/src/lib.rs | |||
@@ -41,10 +41,11 @@ mod yellow; | |||
41 | pub mod utils; | 41 | pub mod utils; |
42 | 42 | ||
43 | pub use { | 43 | pub use { |
44 | text_unit::{TextRange, TextUnit}, | ||
45 | smol_str::SmolStr, | ||
44 | ast::{AstNode, ParsedFile}, | 46 | ast::{AstNode, ParsedFile}, |
45 | lexer::{tokenize, Token}, | 47 | lexer::{tokenize, Token}, |
46 | syntax_kinds::SyntaxKind, | 48 | syntax_kinds::SyntaxKind, |
47 | text_unit::{TextRange, TextUnit}, | ||
48 | yellow::{SyntaxNode, SyntaxNodeRef, OwnedRoot, RefRoot, TreeRoot, SyntaxError}, | 49 | yellow::{SyntaxNode, SyntaxNodeRef, OwnedRoot, RefRoot, TreeRoot, SyntaxError}, |
49 | }; | 50 | }; |
50 | 51 | ||