(ctx context.Context, ls *ls.LanguageService, params *lsproto.DocumentOnTypeFormattingParams)
| 1607 | } |
| 1608 | |
| 1609 | func (s *Server) handleDocumentOnTypeFormat(ctx context.Context, ls *ls.LanguageService, params *lsproto.DocumentOnTypeFormattingParams) (lsproto.DocumentOnTypeFormattingResponse, error) { |
| 1610 | return ls.ProvideFormatDocumentOnType( |
| 1611 | ctx, |
| 1612 | params.TextDocument.Uri, |
| 1613 | params.Options, |
| 1614 | params.Position, |
| 1615 | params.Ch, |
| 1616 | ) |
| 1617 | } |
| 1618 | |
| 1619 | func (s *Server) handleWorkspaceSymbol(ctx context.Context, params *lsproto.WorkspaceSymbolParams, reqMsg *lsproto.RequestMessage) (lsproto.WorkspaceSymbolResponse, error) { |
| 1620 | var resp lsproto.WorkspaceSymbolResponse |
nothing calls this directly
no test coverage detected