(ctx context.Context, params *lsproto.DidChangeWatchedFilesParams)
| 1342 | } |
| 1343 | |
| 1344 | func (s *Server) handleDidChangeWatchedFiles(ctx context.Context, params *lsproto.DidChangeWatchedFilesParams) error { |
| 1345 | s.session.DidChangeWatchedFiles(ctx, params.Changes) |
| 1346 | return nil |
| 1347 | } |
| 1348 | |
| 1349 | func (s *Server) handleSetTrace(_ context.Context, _ *lsproto.SetTraceParams) error { |
| 1350 | // $/setTrace is sent by vscode-languageclient when trace settings change. |
nothing calls this directly
no test coverage detected