diff options
author | Aleksey Kladov <[email protected]> | 2019-01-08 17:31:43 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-01-08 18:01:41 +0000 |
commit | 1b82084a5f28506134c668a67d2759ef22be6a80 (patch) | |
tree | a2c7ec6ad3b75481268f8246b1b02b133f37d8d8 /crates/ra_lsp_server/src | |
parent | 1c25bf05d714680c048d250a5d39e8a4c25f0c31 (diff) |
dont depend on ra_editor directly
Diffstat (limited to 'crates/ra_lsp_server/src')
-rw-r--r-- | crates/ra_lsp_server/src/conv.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/conv.rs b/crates/ra_lsp_server/src/conv.rs index e8eb3940f..b3f8c83cc 100644 --- a/crates/ra_lsp_server/src/conv.rs +++ b/crates/ra_lsp_server/src/conv.rs | |||
@@ -7,8 +7,8 @@ use languageserver_types::{ | |||
7 | use ra_analysis::{ | 7 | use ra_analysis::{ |
8 | CompletionItem, CompletionItemKind, FileId, FilePosition, FileRange, FileSystemEdit, | 8 | CompletionItem, CompletionItemKind, FileId, FilePosition, FileRange, FileSystemEdit, |
9 | InsertText, NavigationTarget, SourceChange, SourceFileEdit, | 9 | InsertText, NavigationTarget, SourceChange, SourceFileEdit, |
10 | LineCol, LineIndex, translate_offset_with_edit | ||
10 | }; | 11 | }; |
11 | use ra_editor::{translate_offset_with_edit, LineCol, LineIndex}; | ||
12 | use ra_syntax::{SyntaxKind, TextRange, TextUnit}; | 12 | use ra_syntax::{SyntaxKind, TextRange, TextUnit}; |
13 | use ra_text_edit::{AtomTextEdit, TextEdit}; | 13 | use ra_text_edit::{AtomTextEdit, TextEdit}; |
14 | 14 | ||