()
| 174 | } |
| 175 | |
| 176 | func (s *Server) recomputeDiagnostics() { |
| 177 | for _, uri := range s.docs.Keys() { |
| 178 | doc := s.docs.Get(context.Background(), uri) |
| 179 | if doc != nil { |
| 180 | s.computeDiagnostics(context.Background(), string(uri)) |
| 181 | } |
| 182 | } |
| 183 | } |
| 184 | |
| 185 | func (s *Server) StartBackgrondProcesses(ctx context.Context) { |
| 186 | s.publishTelemetry(ctx) |
no test coverage detected