From 0063f03e86f4222a5027720142eb20db4adc485d Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Fri, 21 Dec 2018 11:24:16 +0300 Subject: hide atom edits a bit --- crates/ra_lsp_server/src/conv.rs | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'crates/ra_lsp_server/src/conv.rs') diff --git a/crates/ra_lsp_server/src/conv.rs b/crates/ra_lsp_server/src/conv.rs index 198dbfc49..3531b727e 100644 --- a/crates/ra_lsp_server/src/conv.rs +++ b/crates/ra_lsp_server/src/conv.rs @@ -97,21 +97,21 @@ impl ConvWith for TextEdit { type Output = Vec; fn conv_with(self, line_index: &LineIndex) -> Vec { - self.into_atoms() + self.as_atoms() .into_iter() .map_conv_with(line_index) .collect() } } -impl ConvWith for AtomTextEdit { +impl<'a> ConvWith for &'a AtomTextEdit { type Ctx = LineIndex; type Output = languageserver_types::TextEdit; fn conv_with(self, line_index: &LineIndex) -> languageserver_types::TextEdit { languageserver_types::TextEdit { range: self.delete.conv_with(line_index), - new_text: self.insert, + new_text: self.insert.clone(), } } } @@ -199,7 +199,7 @@ impl TryConvWith for SourceChange { .source_file_edits .iter() .find(|it| it.file_id == pos.file_id) - .map(|it| it.edits.as_slice()) + .map(|it| it.edit.as_atoms()) .unwrap_or(&[]); let line_col = translate_offset_with_edit(&*line_index, pos.offset, edits); let position = @@ -265,7 +265,12 @@ impl TryConvWith for SourceFileEdit { version: None, }; let line_index = world.analysis().file_line_index(self.file_id); - let edits = self.edits.into_iter().map_conv_with(&line_index).collect(); + let edits = self + .edit + .as_atoms() + .iter() + .map_conv_with(&line_index) + .collect(); Ok(TextDocumentEdit { text_document, edits, -- cgit v1.2.3