diff options
author | Jeremy Kolb <[email protected]> | 2019-07-07 19:13:13 +0100 |
---|---|---|
committer | Jeremy Kolb <[email protected]> | 2019-07-07 19:13:13 +0100 |
commit | 3f44aaf363be0669e618a8340fd91b47ae6344c4 (patch) | |
tree | 3cbe580bf8cac059a2b87687a1a7b48dcd1779e5 /crates | |
parent | 1b38ca3b8739230af1cc69884b5b11650b5fcb46 (diff) |
use flatten branch of lsp-types
Diffstat (limited to 'crates')
-rw-r--r-- | crates/gen_lsp_server/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/ra_lsp_server/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/ra_lsp_server/src/main_loop/handlers.rs | 35 | ||||
-rw-r--r-- | crates/ra_lsp_server/tests/heavy_tests/main.rs | 6 |
4 files changed, 18 insertions, 27 deletions
diff --git a/crates/gen_lsp_server/Cargo.toml b/crates/gen_lsp_server/Cargo.toml index bf57df81f..46b02a459 100644 --- a/crates/gen_lsp_server/Cargo.toml +++ b/crates/gen_lsp_server/Cargo.toml | |||
@@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" | |||
8 | description = "Generic LSP server scaffold." | 8 | description = "Generic LSP server scaffold." |
9 | 9 | ||
10 | [dependencies] | 10 | [dependencies] |
11 | lsp-types = "0.58.0" | 11 | lsp-types = { git = "https://github.com/kjeremy/languageserver-types", branch = "flatten" } |
12 | log = "0.4.3" | 12 | log = "0.4.3" |
13 | serde_json = "1.0.34" | 13 | serde_json = "1.0.34" |
14 | serde = { version = "1.0.83", features = ["derive"] } | 14 | serde = { version = "1.0.83", features = ["derive"] } |
diff --git a/crates/ra_lsp_server/Cargo.toml b/crates/ra_lsp_server/Cargo.toml index 2c4b3789e..9c9dda01f 100644 --- a/crates/ra_lsp_server/Cargo.toml +++ b/crates/ra_lsp_server/Cargo.toml | |||
@@ -13,7 +13,7 @@ crossbeam-channel = "0.3.5" | |||
13 | flexi_logger = "0.13.0" | 13 | flexi_logger = "0.13.0" |
14 | log = "0.4.3" | 14 | log = "0.4.3" |
15 | url_serde = "0.2.0" | 15 | url_serde = "0.2.0" |
16 | lsp-types = { version = "0.58.0", features = ["proposed"] } | 16 | lsp-types = { git = "https://github.com/kjeremy/languageserver-types", branch = "flatten", features = ["proposed"] } |
17 | rustc-hash = "1.0" | 17 | rustc-hash = "1.0" |
18 | parking_lot = "0.8.0" | 18 | parking_lot = "0.8.0" |
19 | 19 | ||
diff --git a/crates/ra_lsp_server/src/main_loop/handlers.rs b/crates/ra_lsp_server/src/main_loop/handlers.rs index a8d6f7c23..6b407cb0c 100644 --- a/crates/ra_lsp_server/src/main_loop/handlers.rs +++ b/crates/ra_lsp_server/src/main_loop/handlers.rs | |||
@@ -153,14 +153,12 @@ pub fn handle_on_type_formatting( | |||
153 | params: req::DocumentOnTypeFormattingParams, | 153 | params: req::DocumentOnTypeFormattingParams, |
154 | ) -> Result<Option<Vec<TextEdit>>> { | 154 | ) -> Result<Option<Vec<TextEdit>>> { |
155 | let _p = profile("handle_on_type_formatting"); | 155 | let _p = profile("handle_on_type_formatting"); |
156 | let file_id = params.text_document.try_conv_with(&world)?; | 156 | let mut position = params.text_document_position.try_conv_with(&world)?; |
157 | let line_index = world.analysis().file_line_index(file_id); | 157 | let line_index = world.analysis().file_line_index(position.file_id); |
158 | let position = FilePosition { | 158 | |
159 | file_id, | 159 | // in `ra_ide_api`, the `on_type` invariant is that |
160 | /// in `ra_ide_api`, the `on_type` invariant is that | 160 | // `text.char_at(position) == typed_char`. |
161 | /// `text.char_at(position) == typed_char`. | 161 | position.offset = position.offset - TextUnit::of_char('.'); |
162 | offset: params.position.conv_with(&line_index) - TextUnit::of_char('.'), | ||
163 | }; | ||
164 | 162 | ||
165 | let edit = match params.ch.as_str() { | 163 | let edit = match params.ch.as_str() { |
166 | "=" => world.analysis().on_eq_typed(position), | 164 | "=" => world.analysis().on_eq_typed(position), |
@@ -407,12 +405,7 @@ pub fn handle_completion( | |||
407 | params: req::CompletionParams, | 405 | params: req::CompletionParams, |
408 | ) -> Result<Option<req::CompletionResponse>> { | 406 | ) -> Result<Option<req::CompletionResponse>> { |
409 | let _p = profile("handle_completion"); | 407 | let _p = profile("handle_completion"); |
410 | let position = { | 408 | let position = params.text_document_position.try_conv_with(&world)?; |
411 | let file_id = params.text_document.try_conv_with(&world)?; | ||
412 | let line_index = world.analysis().file_line_index(file_id); | ||
413 | let offset = params.position.conv_with(&line_index); | ||
414 | FilePosition { file_id, offset } | ||
415 | }; | ||
416 | let completion_triggered_after_single_colon = { | 409 | let completion_triggered_after_single_colon = { |
417 | let mut res = false; | 410 | let mut res = false; |
418 | if let Some(ctx) = params.context { | 411 | if let Some(ctx) = params.context { |
@@ -543,9 +536,7 @@ pub fn handle_prepare_rename( | |||
543 | } | 536 | } |
544 | 537 | ||
545 | pub fn handle_rename(world: WorldSnapshot, params: RenameParams) -> Result<Option<WorkspaceEdit>> { | 538 | pub fn handle_rename(world: WorldSnapshot, params: RenameParams) -> Result<Option<WorkspaceEdit>> { |
546 | let file_id = params.text_document.try_conv_with(&world)?; | 539 | let position = params.text_document_position.try_conv_with(&world)?; |
547 | let line_index = world.analysis().file_line_index(file_id); | ||
548 | let offset = params.position.conv_with(&line_index); | ||
549 | 540 | ||
550 | if params.new_name.is_empty() { | 541 | if params.new_name.is_empty() { |
551 | return Err(LspError::new( | 542 | return Err(LspError::new( |
@@ -555,8 +546,7 @@ pub fn handle_rename(world: WorldSnapshot, params: RenameParams) -> Result<Optio | |||
555 | .into()); | 546 | .into()); |
556 | } | 547 | } |
557 | 548 | ||
558 | let optional_change = | 549 | let optional_change = world.analysis().rename(position, &*params.new_name)?; |
559 | world.analysis().rename(FilePosition { file_id, offset }, &*params.new_name)?; | ||
560 | let change = match optional_change { | 550 | let change = match optional_change { |
561 | None => return Ok(None), | 551 | None => return Ok(None), |
562 | Some(it) => it, | 552 | Some(it) => it, |
@@ -571,11 +561,10 @@ pub fn handle_references( | |||
571 | world: WorldSnapshot, | 561 | world: WorldSnapshot, |
572 | params: req::ReferenceParams, | 562 | params: req::ReferenceParams, |
573 | ) -> Result<Option<Vec<Location>>> { | 563 | ) -> Result<Option<Vec<Location>>> { |
574 | let file_id = params.text_document.try_conv_with(&world)?; | 564 | let position = params.text_document_position.try_conv_with(&world)?; |
575 | let line_index = world.analysis().file_line_index(file_id); | 565 | let line_index = world.analysis().file_line_index(position.file_id); |
576 | let offset = params.position.conv_with(&line_index); | ||
577 | 566 | ||
578 | let refs = match world.analysis().find_all_refs(FilePosition { file_id, offset })? { | 567 | let refs = match world.analysis().find_all_refs(position)? { |
579 | None => return Ok(None), | 568 | None => return Ok(None), |
580 | Some(refs) => refs, | 569 | Some(refs) => refs, |
581 | }; | 570 | }; |
diff --git a/crates/ra_lsp_server/tests/heavy_tests/main.rs b/crates/ra_lsp_server/tests/heavy_tests/main.rs index d271b02fc..451be32a8 100644 --- a/crates/ra_lsp_server/tests/heavy_tests/main.rs +++ b/crates/ra_lsp_server/tests/heavy_tests/main.rs | |||
@@ -37,9 +37,11 @@ use std::collections::Spam; | |||
37 | eprintln!("loading took {:?}", project_start.elapsed()); | 37 | eprintln!("loading took {:?}", project_start.elapsed()); |
38 | let completion_start = Instant::now(); | 38 | let completion_start = Instant::now(); |
39 | let res = server.send_request::<Completion>(CompletionParams { | 39 | let res = server.send_request::<Completion>(CompletionParams { |
40 | text_document: server.doc_id("src/lib.rs"), | 40 | text_document_position: TextDocumentPositionParams::new( |
41 | server.doc_id("src/lib.rs"), | ||
42 | Position::new(0, 23), | ||
43 | ), | ||
41 | context: None, | 44 | context: None, |
42 | position: Position::new(0, 23), | ||
43 | }); | 45 | }); |
44 | assert!(format!("{}", res).contains("HashMap")); | 46 | assert!(format!("{}", res).contains("HashMap")); |
45 | eprintln!("completion took {:?}", completion_start.elapsed()); | 47 | eprintln!("completion took {:?}", completion_start.elapsed()); |