(id string)
| 1805 | } |
| 1806 | |
| 1807 | func (s *Server) removeAPISession(id string) { |
| 1808 | s.apiSessionsMu.Lock() |
| 1809 | defer s.apiSessionsMu.Unlock() |
| 1810 | delete(s.apiSessions, id) |
| 1811 | } |
| 1812 | |
| 1813 | // !!! temporary; remove when we have `handleDidChangeConfiguration`/implicit project config support |
| 1814 | func (s *Server) SetCompilerOptionsForInferredProjects(ctx context.Context, options *core.CompilerOptions) { |
no test coverage detected