aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/src/main_loop/handlers.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_lsp_server/src/main_loop/handlers.rs')
-rw-r--r--crates/ra_lsp_server/src/main_loop/handlers.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_lsp_server/src/main_loop/handlers.rs b/crates/ra_lsp_server/src/main_loop/handlers.rs
index d5a8bbe4d..f2db575ea 100644
--- a/crates/ra_lsp_server/src/main_loop/handlers.rs
+++ b/crates/ra_lsp_server/src/main_loop/handlers.rs
@@ -953,6 +953,7 @@ pub fn handle_inlay_hints(
953 range: api_type.range.conv_with(&line_index), 953 range: api_type.range.conv_with(&line_index),
954 kind: match api_type.kind { 954 kind: match api_type.kind {
955 ra_ide::InlayKind::TypeHint => InlayKind::TypeHint, 955 ra_ide::InlayKind::TypeHint => InlayKind::TypeHint,
956 ra_ide::InlayKind::ParameterHint => InlayKind::ParameterHint,
956 }, 957 },
957 }) 958 })
958 .collect()) 959 .collect())