First pass on fixes

This commit is contained in:
Piotr Osiewicz 2025-08-19 14:23:59 +02:00
parent 5826d89b97
commit 2f3be75fc7
269 changed files with 1593 additions and 2574 deletions

View file

@ -147,8 +147,8 @@ pub fn lsp_tasks(
},
cx,
)
}) {
if let Some(new_runnables) = runnables_task.await.log_err() {
})
&& let Some(new_runnables) = runnables_task.await.log_err() {
new_lsp_tasks.extend(new_runnables.runnables.into_iter().filter_map(
|(location, runnable)| {
let resolved_task =
@ -157,7 +157,6 @@ pub fn lsp_tasks(
},
));
}
}
lsp_tasks
.entry(source_kind)
.or_insert_with(Vec::new)