(ctx context.Context, params *lsproto.DidSaveTextDocumentParams)
| 1332 | } |
| 1333 | |
| 1334 | func (s *Server) handleDidSave(ctx context.Context, params *lsproto.DidSaveTextDocumentParams) error { |
| 1335 | s.session.DidSaveFile(ctx, params.TextDocument.Uri) |
| 1336 | return nil |
| 1337 | } |
| 1338 | |
| 1339 | func (s *Server) handleDidClose(ctx context.Context, params *lsproto.DidCloseTextDocumentParams) error { |
| 1340 | s.session.DidCloseFile(ctx, params.TextDocument.Uri) |
nothing calls this directly
no test coverage detected