|
|
@ -610,18 +610,14 @@ impl Client {
|
|
|
|
|
|
|
|
|
|
|
|
let items = match response {
|
|
|
|
let items = match response {
|
|
|
|
Some(lsp::GotoDefinitionResponse::Scalar(location)) => vec![location],
|
|
|
|
Some(lsp::GotoDefinitionResponse::Scalar(location)) => vec![location],
|
|
|
|
Some(lsp::GotoDefinitionResponse::Array(location_vec)) => location_vec,
|
|
|
|
Some(lsp::GotoDefinitionResponse::Array(locations)) => locations,
|
|
|
|
Some(lsp::GotoDefinitionResponse::Link(location_link_vec)) => {
|
|
|
|
Some(lsp::GotoDefinitionResponse::Link(locations)) => locations
|
|
|
|
let mut location_vec: Vec<lsp::Location> = Vec::new();
|
|
|
|
.into_iter()
|
|
|
|
location_link_vec.into_iter().for_each(|location_link| {
|
|
|
|
.map(|location_link| lsp::Location {
|
|
|
|
let link = lsp::Location {
|
|
|
|
|
|
|
|
uri: location_link.target_uri,
|
|
|
|
uri: location_link.target_uri,
|
|
|
|
range: location_link.target_range,
|
|
|
|
range: location_link.target_range,
|
|
|
|
};
|
|
|
|
})
|
|
|
|
location_vec.push(link)
|
|
|
|
.collect(),
|
|
|
|
});
|
|
|
|
|
|
|
|
location_vec
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
None => Vec::new(),
|
|
|
|
None => Vec::new(),
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|