(ctx context.Context, ls *ls.LanguageService, params *lsproto.TypeDefinitionParams)
| 1563 | } |
| 1564 | |
| 1565 | func (s *Server) handleTypeDefinition(ctx context.Context, ls *ls.LanguageService, params *lsproto.TypeDefinitionParams) (lsproto.TypeDefinitionResponse, error) { |
| 1566 | return ls.ProvideTypeDefinition(ctx, params.TextDocument.Uri, params.Position) |
| 1567 | } |
| 1568 | |
| 1569 | func (s *Server) handleCompletion(ctx context.Context, languageService *ls.LanguageService, params *lsproto.CompletionParams) (lsproto.CompletionResponse, error) { |
| 1570 | return languageService.ProvideCompletion( |
nothing calls this directly
no test coverage detected