Returns all diagnostics from all files this LSP server has reported on.
(&self)
| 385 | |
| 386 | /// Returns all diagnostics from all files this LSP server has reported on. |
| 387 | pub async fn get_all_diagnostics(&self) -> HashMap<PathBuf, Vec<Diagnostic>> { |
| 388 | self.diagnostics.read().await.clone() |
| 389 | } |
| 390 | |
| 391 | pub fn subscribe(&self) -> broadcast::Receiver<LspEvent> { |
| 392 | self.event_tx.subscribe() |
no test coverage detected