aboutsummaryrefslogtreecommitdiff
path: root/src/tree/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tree/mod.rs')
-rw-r--r--src/tree/mod.rs8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/tree/mod.rs b/src/tree/mod.rs
index ebf26777b..f7b16d7b5 100644
--- a/src/tree/mod.rs
+++ b/src/tree/mod.rs
@@ -1,9 +1,7 @@
1use text::{TextRange, TextUnit};
2
3use std::fmt;
4use std::cmp;
5
6mod file_builder; 1mod file_builder;
2
3use ::{TextRange, TextUnit};
4use std::{fmt, cmp};
7pub(crate) use self::file_builder::{ErrorMsg, FileBuilder, Sink}; 5pub(crate) use self::file_builder::{ErrorMsg, FileBuilder, Sink};
8 6
9pub use syntax_kinds::SyntaxKind; 7pub use syntax_kinds::SyntaxKind;