diff options
Diffstat (limited to 'crates/ra_lsp_server/src/main_loop')
-rw-r--r-- | crates/ra_lsp_server/src/main_loop/handlers.rs | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/main_loop/handlers.rs b/crates/ra_lsp_server/src/main_loop/handlers.rs index 68865b755..5bf950a53 100644 --- a/crates/ra_lsp_server/src/main_loop/handlers.rs +++ b/crates/ra_lsp_server/src/main_loop/handlers.rs | |||
@@ -21,7 +21,7 @@ use url_serde::Ser; | |||
21 | use crate::{ | 21 | use crate::{ |
22 | cargo_target_spec::{runnable_args, CargoTargetSpec}, | 22 | cargo_target_spec::{runnable_args, CargoTargetSpec}, |
23 | conv::{to_location, Conv, ConvWith, MapConvWith, TryConvWith, TryConvWithToVec}, | 23 | conv::{to_location, Conv, ConvWith, MapConvWith, TryConvWith, TryConvWithToVec}, |
24 | req::{self, Decoration}, | 24 | req::{self, Decoration, InlayHint, InlayHintsParams, InlayKind}, |
25 | world::WorldSnapshot, | 25 | world::WorldSnapshot, |
26 | LspError, Result, | 26 | LspError, Result, |
27 | }; | 27 | }; |
@@ -874,3 +874,24 @@ fn to_diagnostic_severity(severity: Severity) -> DiagnosticSeverity { | |||
874 | WeakWarning => DiagnosticSeverity::Hint, | 874 | WeakWarning => DiagnosticSeverity::Hint, |
875 | } | 875 | } |
876 | } | 876 | } |
877 | |||
878 | pub fn handle_inlay_hints( | ||
879 | world: WorldSnapshot, | ||
880 | params: InlayHintsParams, | ||
881 | ) -> Result<Vec<InlayHint>> { | ||
882 | let file_id = params.text_document.try_conv_with(&world)?; | ||
883 | let analysis = world.analysis(); | ||
884 | let line_index = analysis.file_line_index(file_id); | ||
885 | Ok(analysis | ||
886 | .inlay_hints(file_id)? | ||
887 | .into_iter() | ||
888 | .map(|api_type| InlayHint { | ||
889 | label: api_type.label.to_string(), | ||
890 | range: api_type.range.conv_with(&line_index), | ||
891 | kind: match api_type.kind { | ||
892 | ra_ide_api::InlayKind::LetBindingType => InlayKind::LetBindingType, | ||
893 | ra_ide_api::InlayKind::ClosureParameterType => InlayKind::ClosureParameterType, | ||
894 | }, | ||
895 | }) | ||
896 | .collect()) | ||
897 | } | ||