mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-03 15:15:24 +00:00
minor: bump lsp-server version
This commit is contained in:
parent
b8ed4a388c
commit
2d445de170
4 changed files with 13 additions and 5 deletions
|
@ -256,7 +256,11 @@ impl GlobalState {
|
|||
self.send(request.into());
|
||||
}
|
||||
pub(crate) fn complete_request(&mut self, response: lsp_server::Response) {
|
||||
let handler = self.req_queue.outgoing.complete(response.id.clone());
|
||||
let handler = self
|
||||
.req_queue
|
||||
.outgoing
|
||||
.complete(response.id.clone())
|
||||
.expect("received response for unknown request");
|
||||
handler(self, response)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue