minor: Move json deserialization into text_document_hover future

This follows a pattern used in the signature help request for example.
Moving the json deserialization into the return future of
`text_document_hover` makes the types easier for callers to work with.
This commit is contained in:
Michael Davis 2025-03-04 12:01:06 -05:00
parent 486f4297b7
commit fbc0f956b3
No known key found for this signature in database
2 changed files with 4 additions and 7 deletions

View file

@ -1076,11 +1076,7 @@ pub fn hover(cx: &mut Context) {
.text_document_hover(doc.identifier(), pos, None)
.unwrap();
async move {
let json = request.await?;
let response = serde_json::from_value::<Option<lsp::Hover>>(json)?;
anyhow::Ok((server_name, response))
}
async move { anyhow::Ok((server_name, request.await?)) }
})
.collect();