diff options
Diffstat (limited to 'crates')
-rw-r--r-- | crates/server/src/main_loop/handlers.rs | 19 | ||||
-rw-r--r-- | crates/server/src/main_loop/mod.rs | 4 | ||||
-rw-r--r-- | crates/server/src/req.rs | 10 |
3 files changed, 31 insertions, 2 deletions
diff --git a/crates/server/src/main_loop/handlers.rs b/crates/server/src/main_loop/handlers.rs index 675f69bec..16cc92464 100644 --- a/crates/server/src/main_loop/handlers.rs +++ b/crates/server/src/main_loop/handlers.rs | |||
@@ -3,7 +3,7 @@ use std::collections::HashMap; | |||
3 | use languageserver_types::{ | 3 | use languageserver_types::{ |
4 | Diagnostic, DiagnosticSeverity, Url, DocumentSymbol, | 4 | Diagnostic, DiagnosticSeverity, Url, DocumentSymbol, |
5 | Command, TextDocumentIdentifier, WorkspaceEdit, | 5 | Command, TextDocumentIdentifier, WorkspaceEdit, |
6 | SymbolInformation, Position, | 6 | SymbolInformation, Position, Location, |
7 | }; | 7 | }; |
8 | use libanalysis::{Query}; | 8 | use libanalysis::{Query}; |
9 | use libeditor::{self, CursorPosition}; | 9 | use libeditor::{self, CursorPosition}; |
@@ -184,6 +184,23 @@ pub fn handle_goto_definition( | |||
184 | Ok(Some(req::GotoDefinitionResponse::Array(res))) | 184 | Ok(Some(req::GotoDefinitionResponse::Array(res))) |
185 | } | 185 | } |
186 | 186 | ||
187 | pub fn handle_parent_module( | ||
188 | world: ServerWorld, | ||
189 | params: TextDocumentIdentifier, | ||
190 | ) -> Result<Vec<Location>> { | ||
191 | let file_id = params.try_conv_with(&world)?; | ||
192 | let mut res = Vec::new(); | ||
193 | for (file_id, symbol) in world.analysis().parent_module(file_id) { | ||
194 | let line_index = world.analysis().file_line_index(file_id)?; | ||
195 | let location = to_location( | ||
196 | file_id, symbol.node_range, | ||
197 | &world, &line_index | ||
198 | )?; | ||
199 | res.push(location); | ||
200 | } | ||
201 | Ok(res) | ||
202 | } | ||
203 | |||
187 | pub fn handle_execute_command( | 204 | pub fn handle_execute_command( |
188 | world: ServerWorld, | 205 | world: ServerWorld, |
189 | mut params: req::ExecuteCommandParams, | 206 | mut params: req::ExecuteCommandParams, |
diff --git a/crates/server/src/main_loop/mod.rs b/crates/server/src/main_loop/mod.rs index 752d6ddb2..9499b826c 100644 --- a/crates/server/src/main_loop/mod.rs +++ b/crates/server/src/main_loop/mod.rs | |||
@@ -26,6 +26,7 @@ use { | |||
26 | handle_workspace_symbol, | 26 | handle_workspace_symbol, |
27 | handle_goto_definition, | 27 | handle_goto_definition, |
28 | handle_find_matching_brace, | 28 | handle_find_matching_brace, |
29 | handle_parent_module, | ||
29 | }, | 30 | }, |
30 | }; | 31 | }; |
31 | 32 | ||
@@ -141,6 +142,9 @@ fn on_request( | |||
141 | handle_request_on_threadpool::<req::GotoDefinition>( | 142 | handle_request_on_threadpool::<req::GotoDefinition>( |
142 | &mut req, pool, world, sender, handle_goto_definition, | 143 | &mut req, pool, world, sender, handle_goto_definition, |
143 | )?; | 144 | )?; |
145 | handle_request_on_threadpool::<req::ParentModule>( | ||
146 | &mut req, pool, world, sender, handle_parent_module, | ||
147 | )?; | ||
144 | dispatch::handle_request::<req::ExecuteCommand, _>(&mut req, |params, resp| { | 148 | dispatch::handle_request::<req::ExecuteCommand, _>(&mut req, |params, resp| { |
145 | io.send(RawMsg::Response(resp.into_response(Ok(None))?)); | 149 | io.send(RawMsg::Response(resp.into_response(Ok(None))?)); |
146 | 150 | ||
diff --git a/crates/server/src/req.rs b/crates/server/src/req.rs index 73e82150c..a8aa24629 100644 --- a/crates/server/src/req.rs +++ b/crates/server/src/req.rs | |||
@@ -1,5 +1,5 @@ | |||
1 | use serde::{ser::Serialize, de::DeserializeOwned}; | 1 | use serde::{ser::Serialize, de::DeserializeOwned}; |
2 | use languageserver_types::{TextDocumentIdentifier, Range, Url, Position}; | 2 | use languageserver_types::{TextDocumentIdentifier, Range, Url, Position, Location}; |
3 | use url_serde; | 3 | use url_serde; |
4 | 4 | ||
5 | pub use languageserver_types::{ | 5 | pub use languageserver_types::{ |
@@ -109,3 +109,11 @@ impl Request for MoveCursor { | |||
109 | type Result = (); | 109 | type Result = (); |
110 | const METHOD: &'static str = "m/moveCursor"; | 110 | const METHOD: &'static str = "m/moveCursor"; |
111 | } | 111 | } |
112 | |||
113 | pub enum ParentModule {} | ||
114 | |||
115 | impl Request for ParentModule { | ||
116 | type Params = TextDocumentIdentifier; | ||
117 | type Result = Vec<Location>; | ||
118 | const METHOD: &'static str = "m/parentModule"; | ||
119 | } | ||