(ctx context.Context, params *lsproto.DidCloseTextDocumentParams)
| 1337 | } |
| 1338 | |
| 1339 | func (s *Server) handleDidClose(ctx context.Context, params *lsproto.DidCloseTextDocumentParams) error { |
| 1340 | s.session.DidCloseFile(ctx, params.TextDocument.Uri) |
| 1341 | return nil |
| 1342 | } |
| 1343 | |
| 1344 | func (s *Server) handleDidChangeWatchedFiles(ctx context.Context, params *lsproto.DidChangeWatchedFilesParams) error { |
| 1345 | s.session.DidChangeWatchedFiles(ctx, params.Changes) |
nothing calls this directly
no test coverage detected