aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server
diff options
context:
space:
mode:
authorkjeremy <[email protected]>2019-02-05 22:05:46 +0000
committerkjeremy <[email protected]>2019-02-05 22:05:46 +0000
commit852b08379473cc3ee06878c5aae809b63d76cbc3 (patch)
tree5634fb37d72d9c627eeea54d6612f6a029349751 /crates/ra_lsp_server
parent569e1e871e737ade80616288241d63e1531dbb8d (diff)
Fill deprecation for LSP
Diffstat (limited to 'crates/ra_lsp_server')
-rw-r--r--crates/ra_lsp_server/src/main_loop/handlers.rs2
1 files changed, 1 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 4720a8843..ab2b81bf0 100644
--- a/crates/ra_lsp_server/src/main_loop/handlers.rs
+++ b/crates/ra_lsp_server/src/main_loop/handlers.rs
@@ -140,7 +140,7 @@ pub fn handle_document_symbol(
140 name: symbol.label, 140 name: symbol.label,
141 detail: symbol.detail, 141 detail: symbol.detail,
142 kind: symbol.kind.conv(), 142 kind: symbol.kind.conv(),
143 deprecated: None, 143 deprecated: Some(symbol.deprecated),
144 range: symbol.node_range.conv_with(&line_index), 144 range: symbol.node_range.conv_with(&line_index),
145 selection_range: symbol.navigation_range.conv_with(&line_index), 145 selection_range: symbol.navigation_range.conv_with(&line_index),
146 children: None, 146 children: None,