(method string)
| 228 | } |
| 229 | |
| 230 | func (s *Server) handlePanic(method string) bool { |
| 231 | if r := recover(); r != nil { |
| 232 | return s.handleRecovered(method, r) |
| 233 | } |
| 234 | return false |
| 235 | } |
| 236 | |
| 237 | func (s *Server) FetchUnscopedConfiguration() { |
| 238 | section := "docker.lsp" |
no test coverage detected