(&self, id: &str)
| 817 | } |
| 818 | |
| 819 | pub async fn get(&self, id: &str) -> Option<Arc<LspClient>> { |
| 820 | self.clients.read().await.get(id).cloned() |
| 821 | } |
| 822 | |
| 823 | pub async fn list(&self) -> Vec<(String, Arc<LspClient>)> { |
| 824 | self.clients |
no test coverage detected