diff options
Diffstat (limited to 'crates/server/src/handlers.rs')
-rw-r--r-- | crates/server/src/handlers.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/crates/server/src/handlers.rs b/crates/server/src/handlers.rs index 1f55e8669..de1fd557d 100644 --- a/crates/server/src/handlers.rs +++ b/crates/server/src/handlers.rs | |||
@@ -3,7 +3,10 @@ use languageserver_types::{Range, Position, Diagnostic, DiagnosticSeverity}; | |||
3 | use libanalysis::World; | 3 | use libanalysis::World; |
4 | use libeditor::{self, LineIndex, LineCol, TextRange, TextUnit}; | 4 | use libeditor::{self, LineIndex, LineCol, TextRange, TextUnit}; |
5 | 5 | ||
6 | use {req, Result, FilePath}; | 6 | use ::{ |
7 | req, Result, | ||
8 | util::FilePath, | ||
9 | }; | ||
7 | 10 | ||
8 | pub fn handle_syntax_tree( | 11 | pub fn handle_syntax_tree( |
9 | world: World, | 12 | world: World, |