2020-05-10 10:35:33 -05:00
|
|
|
|
//! Utilities for LSP-related boilerplate code.
|
2021-02-12 15:44:28 -06:00
|
|
|
|
use std::{error::Error, ops::Range, sync::Arc};
|
2020-05-10 10:35:33 -05:00
|
|
|
|
|
2021-05-17 12:07:10 -05:00
|
|
|
|
use ide_db::base_db::Cancelled;
|
2020-06-26 09:33:57 -05:00
|
|
|
|
use lsp_server::Notification;
|
2020-06-25 10:50:47 -05:00
|
|
|
|
|
2021-02-12 15:44:28 -06:00
|
|
|
|
use crate::{
|
|
|
|
|
from_proto,
|
|
|
|
|
global_state::GlobalState,
|
2021-02-12 16:28:48 -06:00
|
|
|
|
line_index::{LineEndings, LineIndex, OffsetEncoding},
|
2021-09-04 04:56:34 -05:00
|
|
|
|
LspError,
|
2021-02-12 15:44:28 -06:00
|
|
|
|
};
|
2020-05-09 22:44:02 -05:00
|
|
|
|
|
2021-09-04 04:56:34 -05:00
|
|
|
|
pub(crate) fn invalid_params_error(message: String) -> LspError {
|
|
|
|
|
LspError { code: lsp_server::ErrorCode::InvalidParams as i32, message }
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-17 12:07:10 -05:00
|
|
|
|
pub(crate) fn is_cancelled(e: &(dyn Error + 'static)) -> bool {
|
|
|
|
|
e.downcast_ref::<Cancelled>().is_some()
|
2020-05-09 22:44:02 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub(crate) fn notification_is<N: lsp_types::notification::Notification>(
|
|
|
|
|
notification: &Notification,
|
|
|
|
|
) -> bool {
|
|
|
|
|
notification.method == N::METHOD
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-26 09:33:57 -05:00
|
|
|
|
#[derive(Debug, Eq, PartialEq)]
|
|
|
|
|
pub(crate) enum Progress {
|
|
|
|
|
Begin,
|
|
|
|
|
Report,
|
|
|
|
|
End,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Progress {
|
2020-10-07 05:15:37 -05:00
|
|
|
|
pub(crate) fn fraction(done: usize, total: usize) -> f64 {
|
|
|
|
|
assert!(done <= total);
|
|
|
|
|
done as f64 / total.max(1) as f64
|
2020-06-26 09:33:57 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl GlobalState {
|
|
|
|
|
pub(crate) fn show_message(&mut self, typ: lsp_types::MessageType, message: String) {
|
2021-03-16 19:27:56 -05:00
|
|
|
|
let message = message;
|
2020-06-26 10:07:14 -05:00
|
|
|
|
self.send_notification::<lsp_types::notification::ShowMessage>(
|
|
|
|
|
lsp_types::ShowMessageParams { typ, message },
|
|
|
|
|
)
|
2020-06-26 09:33:57 -05:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-22 09:41:09 -05:00
|
|
|
|
/// rust-analyzer is resilient -- if it fails, this doesn't usually affect
|
|
|
|
|
/// the user experience. Part of that is that we deliberately hide panics
|
|
|
|
|
/// from the user.
|
|
|
|
|
///
|
|
|
|
|
/// We do however want to pester rust-analyzer developers with panics and
|
|
|
|
|
/// other "you really gotta fix that" messages. The current strategy is to
|
|
|
|
|
/// be noisy for "from source" builds or when profiling is enabled.
|
|
|
|
|
///
|
|
|
|
|
/// It's unclear if making from source `cargo xtask install` builds more
|
|
|
|
|
/// panicky is a good idea, let's see if we can keep our awesome bleeding
|
|
|
|
|
/// edge users from being upset!
|
|
|
|
|
pub(crate) fn poke_rust_analyzer_developer(&mut self, message: String) {
|
|
|
|
|
let from_source_build = env!("REV").contains("dev");
|
|
|
|
|
let profiling_enabled = std::env::var("RA_PROFILE").is_ok();
|
|
|
|
|
if from_source_build || profiling_enabled {
|
2021-10-14 01:37:57 -05:00
|
|
|
|
self.show_message(lsp_types::MessageType::ERROR, message)
|
2021-08-22 09:41:09 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-26 09:33:57 -05:00
|
|
|
|
pub(crate) fn report_progress(
|
|
|
|
|
&mut self,
|
|
|
|
|
title: &str,
|
|
|
|
|
state: Progress,
|
|
|
|
|
message: Option<String>,
|
2020-10-07 05:15:37 -05:00
|
|
|
|
fraction: Option<f64>,
|
2020-06-26 09:33:57 -05:00
|
|
|
|
) {
|
2021-01-05 07:57:05 -06:00
|
|
|
|
if !self.config.work_done_progress() {
|
2020-06-26 09:33:57 -05:00
|
|
|
|
return;
|
|
|
|
|
}
|
2020-10-07 05:15:37 -05:00
|
|
|
|
let percentage = fraction.map(|f| {
|
2021-10-16 06:32:55 -05:00
|
|
|
|
assert!((0.0..=1.0).contains(&f));
|
2020-11-16 14:10:13 -06:00
|
|
|
|
(f * 100.0) as u32
|
2020-10-07 05:15:37 -05:00
|
|
|
|
});
|
2020-06-26 09:33:57 -05:00
|
|
|
|
let token = lsp_types::ProgressToken::String(format!("rustAnalyzer/{}", title));
|
|
|
|
|
let work_done_progress = match state {
|
|
|
|
|
Progress::Begin => {
|
2020-06-26 10:07:14 -05:00
|
|
|
|
self.send_request::<lsp_types::request::WorkDoneProgressCreate>(
|
2020-06-26 09:33:57 -05:00
|
|
|
|
lsp_types::WorkDoneProgressCreateParams { token: token.clone() },
|
|
|
|
|
|_, _| (),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
lsp_types::WorkDoneProgress::Begin(lsp_types::WorkDoneProgressBegin {
|
|
|
|
|
title: title.into(),
|
|
|
|
|
cancellable: None,
|
|
|
|
|
message,
|
|
|
|
|
percentage,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
Progress::Report => {
|
|
|
|
|
lsp_types::WorkDoneProgress::Report(lsp_types::WorkDoneProgressReport {
|
|
|
|
|
cancellable: None,
|
|
|
|
|
message,
|
|
|
|
|
percentage,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
Progress::End => {
|
|
|
|
|
lsp_types::WorkDoneProgress::End(lsp_types::WorkDoneProgressEnd { message })
|
|
|
|
|
}
|
|
|
|
|
};
|
2020-06-26 10:07:14 -05:00
|
|
|
|
self.send_notification::<lsp_types::notification::Progress>(lsp_types::ProgressParams {
|
|
|
|
|
token,
|
|
|
|
|
value: lsp_types::ProgressParamsValue::WorkDone(work_done_progress),
|
|
|
|
|
});
|
2020-06-26 09:33:57 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-25 02:51:30 -05:00
|
|
|
|
pub(crate) fn apply_document_changes(
|
|
|
|
|
old_text: &mut String,
|
|
|
|
|
content_changes: Vec<lsp_types::TextDocumentContentChangeEvent>,
|
|
|
|
|
) {
|
2021-02-12 15:44:28 -06:00
|
|
|
|
let mut line_index = LineIndex {
|
|
|
|
|
index: Arc::new(ide::LineIndex::new(old_text)),
|
2021-02-12 15:55:27 -06:00
|
|
|
|
// We don't care about line endings or offset encoding here.
|
2021-02-12 15:44:28 -06:00
|
|
|
|
endings: LineEndings::Unix,
|
2021-02-12 15:55:27 -06:00
|
|
|
|
encoding: OffsetEncoding::Utf16,
|
2021-02-12 15:44:28 -06:00
|
|
|
|
};
|
|
|
|
|
|
2020-06-25 02:51:30 -05:00
|
|
|
|
// The changes we got must be applied sequentially, but can cross lines so we
|
|
|
|
|
// have to keep our line index updated.
|
|
|
|
|
// Some clients (e.g. Code) sort the ranges in reverse. As an optimization, we
|
|
|
|
|
// remember the last valid line in the index and only rebuild it if needed.
|
|
|
|
|
// The VFS will normalize the end of lines to `\n`.
|
|
|
|
|
enum IndexValid {
|
|
|
|
|
All,
|
2020-11-16 14:10:13 -06:00
|
|
|
|
UpToLineExclusive(u32),
|
2020-06-25 02:51:30 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl IndexValid {
|
2020-11-16 14:10:13 -06:00
|
|
|
|
fn covers(&self, line: u32) -> bool {
|
2020-06-25 02:51:30 -05:00
|
|
|
|
match *self {
|
|
|
|
|
IndexValid::UpToLineExclusive(to) => to > line,
|
|
|
|
|
_ => true,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let mut index_valid = IndexValid::All;
|
|
|
|
|
for change in content_changes {
|
|
|
|
|
match change.range {
|
|
|
|
|
Some(range) => {
|
|
|
|
|
if !index_valid.covers(range.end.line) {
|
2021-06-12 22:54:16 -05:00
|
|
|
|
line_index.index = Arc::new(ide::LineIndex::new(old_text));
|
2020-06-25 02:51:30 -05:00
|
|
|
|
}
|
|
|
|
|
index_valid = IndexValid::UpToLineExclusive(range.start.line);
|
|
|
|
|
let range = from_proto::text_range(&line_index, range);
|
|
|
|
|
old_text.replace_range(Range::<usize>::from(range), &change.text);
|
|
|
|
|
}
|
|
|
|
|
None => {
|
|
|
|
|
*old_text = change.text;
|
|
|
|
|
index_valid = IndexValid::UpToLineExclusive(0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-06 15:58:15 -06:00
|
|
|
|
/// Checks that the edits inside the completion and the additional edits do not overlap.
|
2021-01-08 08:46:48 -06:00
|
|
|
|
/// LSP explicitly forbids the additional edits to overlap both with the main edit and themselves.
|
2020-12-04 14:55:36 -06:00
|
|
|
|
pub(crate) fn all_edits_are_disjoint(
|
|
|
|
|
completion: &lsp_types::CompletionItem,
|
|
|
|
|
additional_edits: &[lsp_types::TextEdit],
|
|
|
|
|
) -> bool {
|
|
|
|
|
let mut edit_ranges = Vec::new();
|
|
|
|
|
match completion.text_edit.as_ref() {
|
|
|
|
|
Some(lsp_types::CompletionTextEdit::Edit(edit)) => {
|
|
|
|
|
edit_ranges.push(edit.range);
|
|
|
|
|
}
|
|
|
|
|
Some(lsp_types::CompletionTextEdit::InsertAndReplace(edit)) => {
|
2021-04-08 07:22:54 -05:00
|
|
|
|
let replace = edit.replace;
|
|
|
|
|
let insert = edit.insert;
|
|
|
|
|
if replace.start != insert.start
|
|
|
|
|
|| insert.start > insert.end
|
|
|
|
|
|| insert.end > replace.end
|
|
|
|
|
{
|
|
|
|
|
// insert has to be a prefix of replace but it is not
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
edit_ranges.push(replace);
|
2020-12-04 14:55:36 -06:00
|
|
|
|
}
|
|
|
|
|
None => {}
|
|
|
|
|
}
|
|
|
|
|
if let Some(additional_changes) = completion.additional_text_edits.as_ref() {
|
|
|
|
|
edit_ranges.extend(additional_changes.iter().map(|edit| edit.range));
|
|
|
|
|
};
|
|
|
|
|
edit_ranges.extend(additional_edits.iter().map(|edit| edit.range));
|
|
|
|
|
edit_ranges.sort_by_key(|range| (range.start, range.end));
|
2020-12-06 15:58:15 -06:00
|
|
|
|
edit_ranges
|
|
|
|
|
.iter()
|
|
|
|
|
.zip(edit_ranges.iter().skip(1))
|
|
|
|
|
.all(|(previous, next)| previous.end <= next.start)
|
2020-12-04 14:55:36 -06:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-25 02:51:30 -05:00
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests {
|
2020-12-04 14:55:36 -06:00
|
|
|
|
use lsp_types::{
|
|
|
|
|
CompletionItem, CompletionTextEdit, InsertReplaceEdit, Position, Range,
|
|
|
|
|
TextDocumentContentChangeEvent,
|
|
|
|
|
};
|
2020-06-25 02:51:30 -05:00
|
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_apply_document_changes() {
|
|
|
|
|
macro_rules! c {
|
|
|
|
|
[$($sl:expr, $sc:expr; $el:expr, $ec:expr => $text:expr),+] => {
|
|
|
|
|
vec![$(TextDocumentContentChangeEvent {
|
|
|
|
|
range: Some(Range {
|
|
|
|
|
start: Position { line: $sl, character: $sc },
|
|
|
|
|
end: Position { line: $el, character: $ec },
|
|
|
|
|
}),
|
|
|
|
|
range_length: None,
|
|
|
|
|
text: String::from($text),
|
|
|
|
|
}),+]
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let mut text = String::new();
|
2020-08-03 15:35:32 -05:00
|
|
|
|
apply_document_changes(&mut text, vec![]);
|
2020-06-25 02:51:30 -05:00
|
|
|
|
assert_eq!(text, "");
|
2020-08-03 15:35:32 -05:00
|
|
|
|
apply_document_changes(
|
2020-06-25 02:51:30 -05:00
|
|
|
|
&mut text,
|
|
|
|
|
vec![TextDocumentContentChangeEvent {
|
|
|
|
|
range: None,
|
|
|
|
|
range_length: None,
|
|
|
|
|
text: String::from("the"),
|
|
|
|
|
}],
|
|
|
|
|
);
|
|
|
|
|
assert_eq!(text, "the");
|
2020-08-03 15:35:32 -05:00
|
|
|
|
apply_document_changes(&mut text, c![0, 3; 0, 3 => " quick"]);
|
2020-06-25 02:51:30 -05:00
|
|
|
|
assert_eq!(text, "the quick");
|
2020-08-03 15:35:32 -05:00
|
|
|
|
apply_document_changes(&mut text, c![0, 0; 0, 4 => "", 0, 5; 0, 5 => " foxes"]);
|
2020-06-25 02:51:30 -05:00
|
|
|
|
assert_eq!(text, "quick foxes");
|
2020-08-03 15:35:32 -05:00
|
|
|
|
apply_document_changes(&mut text, c![0, 11; 0, 11 => "\ndream"]);
|
2020-06-25 02:51:30 -05:00
|
|
|
|
assert_eq!(text, "quick foxes\ndream");
|
2020-08-03 15:35:32 -05:00
|
|
|
|
apply_document_changes(&mut text, c![1, 0; 1, 0 => "have "]);
|
2020-06-25 02:51:30 -05:00
|
|
|
|
assert_eq!(text, "quick foxes\nhave dream");
|
2020-08-03 15:35:32 -05:00
|
|
|
|
apply_document_changes(
|
|
|
|
|
&mut text,
|
|
|
|
|
c![0, 0; 0, 0 => "the ", 1, 4; 1, 4 => " quiet", 1, 16; 1, 16 => "s\n"],
|
|
|
|
|
);
|
2020-06-25 02:51:30 -05:00
|
|
|
|
assert_eq!(text, "the quick foxes\nhave quiet dreams\n");
|
2020-08-03 15:35:32 -05:00
|
|
|
|
apply_document_changes(&mut text, c![0, 15; 0, 15 => "\n", 2, 17; 2, 17 => "\n"]);
|
2020-06-25 02:51:30 -05:00
|
|
|
|
assert_eq!(text, "the quick foxes\n\nhave quiet dreams\n\n");
|
2020-08-03 15:35:32 -05:00
|
|
|
|
apply_document_changes(
|
2020-06-25 02:51:30 -05:00
|
|
|
|
&mut text,
|
|
|
|
|
c![1, 0; 1, 0 => "DREAM", 2, 0; 2, 0 => "they ", 3, 0; 3, 0 => "DON'T THEY?"],
|
|
|
|
|
);
|
|
|
|
|
assert_eq!(text, "the quick foxes\nDREAM\nthey have quiet dreams\nDON'T THEY?\n");
|
2020-08-03 15:35:32 -05:00
|
|
|
|
apply_document_changes(&mut text, c![0, 10; 1, 5 => "", 2, 0; 2, 12 => ""]);
|
2020-06-25 02:51:30 -05:00
|
|
|
|
assert_eq!(text, "the quick \nthey have quiet dreams\n");
|
|
|
|
|
|
|
|
|
|
text = String::from("❤️");
|
2020-08-03 15:35:32 -05:00
|
|
|
|
apply_document_changes(&mut text, c![0, 0; 0, 0 => "a"]);
|
2020-06-25 02:51:30 -05:00
|
|
|
|
assert_eq!(text, "a❤️");
|
|
|
|
|
|
|
|
|
|
text = String::from("a\nb");
|
2020-08-03 15:35:32 -05:00
|
|
|
|
apply_document_changes(&mut text, c![0, 1; 1, 0 => "\nțc", 0, 1; 1, 1 => "d"]);
|
2020-06-25 02:51:30 -05:00
|
|
|
|
assert_eq!(text, "adcb");
|
|
|
|
|
|
|
|
|
|
text = String::from("a\nb");
|
2020-08-03 15:35:32 -05:00
|
|
|
|
apply_document_changes(&mut text, c![0, 1; 1, 0 => "ț\nc", 0, 2; 0, 2 => "c"]);
|
2020-06-25 02:51:30 -05:00
|
|
|
|
assert_eq!(text, "ațc\ncb");
|
|
|
|
|
}
|
2020-12-04 14:55:36 -06:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn empty_completion_disjoint_tests() {
|
|
|
|
|
let empty_completion =
|
|
|
|
|
CompletionItem::new_simple("label".to_string(), "detail".to_string());
|
|
|
|
|
|
|
|
|
|
let disjoint_edit_1 = lsp_types::TextEdit::new(
|
|
|
|
|
Range::new(Position::new(2, 2), Position::new(3, 3)),
|
|
|
|
|
"new_text".to_string(),
|
|
|
|
|
);
|
|
|
|
|
let disjoint_edit_2 = lsp_types::TextEdit::new(
|
|
|
|
|
Range::new(Position::new(3, 3), Position::new(4, 4)),
|
|
|
|
|
"new_text".to_string(),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
let joint_edit = lsp_types::TextEdit::new(
|
|
|
|
|
Range::new(Position::new(1, 1), Position::new(5, 5)),
|
|
|
|
|
"new_text".to_string(),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
assert!(
|
|
|
|
|
all_edits_are_disjoint(&empty_completion, &[]),
|
|
|
|
|
"Empty completion has all its edits disjoint"
|
|
|
|
|
);
|
|
|
|
|
assert!(
|
|
|
|
|
all_edits_are_disjoint(
|
|
|
|
|
&empty_completion,
|
|
|
|
|
&[disjoint_edit_1.clone(), disjoint_edit_2.clone()]
|
|
|
|
|
),
|
|
|
|
|
"Empty completion is disjoint to whatever disjoint extra edits added"
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
assert!(
|
|
|
|
|
!all_edits_are_disjoint(
|
|
|
|
|
&empty_completion,
|
|
|
|
|
&[disjoint_edit_1, disjoint_edit_2, joint_edit]
|
|
|
|
|
),
|
|
|
|
|
"Empty completion does not prevent joint extra edits from failing the validation"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn completion_with_joint_edits_disjoint_tests() {
|
|
|
|
|
let disjoint_edit = lsp_types::TextEdit::new(
|
|
|
|
|
Range::new(Position::new(1, 1), Position::new(2, 2)),
|
|
|
|
|
"new_text".to_string(),
|
|
|
|
|
);
|
|
|
|
|
let disjoint_edit_2 = lsp_types::TextEdit::new(
|
|
|
|
|
Range::new(Position::new(2, 2), Position::new(3, 3)),
|
|
|
|
|
"new_text".to_string(),
|
|
|
|
|
);
|
|
|
|
|
let joint_edit = lsp_types::TextEdit::new(
|
|
|
|
|
Range::new(Position::new(1, 1), Position::new(5, 5)),
|
|
|
|
|
"new_text".to_string(),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
let mut completion_with_joint_edits =
|
|
|
|
|
CompletionItem::new_simple("label".to_string(), "detail".to_string());
|
|
|
|
|
completion_with_joint_edits.additional_text_edits =
|
|
|
|
|
Some(vec![disjoint_edit.clone(), joint_edit.clone()]);
|
|
|
|
|
assert!(
|
|
|
|
|
!all_edits_are_disjoint(&completion_with_joint_edits, &[]),
|
2021-01-08 08:41:08 -06:00
|
|
|
|
"Completion with disjoint edits fails the validation even with empty extra edits"
|
2020-12-04 14:55:36 -06:00
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
completion_with_joint_edits.text_edit =
|
|
|
|
|
Some(CompletionTextEdit::Edit(disjoint_edit.clone()));
|
|
|
|
|
completion_with_joint_edits.additional_text_edits = Some(vec![joint_edit.clone()]);
|
|
|
|
|
assert!(
|
|
|
|
|
!all_edits_are_disjoint(&completion_with_joint_edits, &[]),
|
2021-01-08 08:41:08 -06:00
|
|
|
|
"Completion with disjoint edits fails the validation even with empty extra edits"
|
2020-12-04 14:55:36 -06:00
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
completion_with_joint_edits.text_edit =
|
|
|
|
|
Some(CompletionTextEdit::InsertAndReplace(InsertReplaceEdit {
|
|
|
|
|
new_text: "new_text".to_string(),
|
|
|
|
|
insert: disjoint_edit.range,
|
|
|
|
|
replace: disjoint_edit_2.range,
|
|
|
|
|
}));
|
|
|
|
|
completion_with_joint_edits.additional_text_edits = Some(vec![joint_edit]);
|
|
|
|
|
assert!(
|
|
|
|
|
!all_edits_are_disjoint(&completion_with_joint_edits, &[]),
|
2021-01-08 08:41:08 -06:00
|
|
|
|
"Completion with disjoint edits fails the validation even with empty extra edits"
|
2020-12-04 14:55:36 -06:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn completion_with_disjoint_edits_disjoint_tests() {
|
|
|
|
|
let disjoint_edit = lsp_types::TextEdit::new(
|
|
|
|
|
Range::new(Position::new(1, 1), Position::new(2, 2)),
|
|
|
|
|
"new_text".to_string(),
|
|
|
|
|
);
|
|
|
|
|
let disjoint_edit_2 = lsp_types::TextEdit::new(
|
|
|
|
|
Range::new(Position::new(2, 2), Position::new(3, 3)),
|
|
|
|
|
"new_text".to_string(),
|
|
|
|
|
);
|
|
|
|
|
let joint_edit = lsp_types::TextEdit::new(
|
|
|
|
|
Range::new(Position::new(1, 1), Position::new(5, 5)),
|
|
|
|
|
"new_text".to_string(),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
let mut completion_with_disjoint_edits =
|
|
|
|
|
CompletionItem::new_simple("label".to_string(), "detail".to_string());
|
|
|
|
|
completion_with_disjoint_edits.text_edit = Some(CompletionTextEdit::Edit(disjoint_edit));
|
|
|
|
|
let completion_with_disjoint_edits = completion_with_disjoint_edits;
|
|
|
|
|
|
|
|
|
|
assert!(
|
|
|
|
|
all_edits_are_disjoint(&completion_with_disjoint_edits, &[]),
|
|
|
|
|
"Completion with disjoint edits is valid"
|
|
|
|
|
);
|
|
|
|
|
assert!(
|
2021-03-15 04:15:08 -05:00
|
|
|
|
!all_edits_are_disjoint(&completion_with_disjoint_edits, &[joint_edit]),
|
2020-12-04 14:55:36 -06:00
|
|
|
|
"Completion with disjoint edits and joint extra edit is invalid"
|
|
|
|
|
);
|
|
|
|
|
assert!(
|
2021-03-15 04:15:08 -05:00
|
|
|
|
all_edits_are_disjoint(&completion_with_disjoint_edits, &[disjoint_edit_2]),
|
2020-12-04 14:55:36 -06:00
|
|
|
|
"Completion with disjoint edits and joint extra edit is valid"
|
|
|
|
|
);
|
|
|
|
|
}
|
2020-06-25 02:51:30 -05:00
|
|
|
|
}
|