(ctx context.Context, ls *ls.LanguageService, params *lsproto.CodeActionParams)
| 1650 | } |
| 1651 | |
| 1652 | func (s *Server) handleCodeAction(ctx context.Context, ls *ls.LanguageService, params *lsproto.CodeActionParams) (lsproto.CodeActionResponse, error) { |
| 1653 | return ls.ProvideCodeActions(ctx, params) |
| 1654 | } |
| 1655 | |
| 1656 | func (s *Server) handleInlayHint( |
| 1657 | ctx context.Context, |
nothing calls this directly
no test coverage detected