(
state: &DashboardState,
)
| 246 | } |
| 247 | |
| 248 | async fn diagnostics_snapshot( |
| 249 | state: &DashboardState, |
| 250 | ) -> std::result::Result<DiagnosticsSnapshot, JsonError> { |
| 251 | reconcile_project_language_activity(state).await?; |
| 252 | Ok(state.code_diagnostics.read().await.snapshot()) |
| 253 | } |
| 254 | |
| 255 | async fn refreshable_languages( |
| 256 | state: &DashboardState, |
no test coverage detected