()
| 23 | ) |
| 24 | |
| 25 | func newEmptyCompletionList() *lsp.CompletionList { |
| 26 | return &lsp.CompletionList{ |
| 27 | IsIncomplete: false, |
| 28 | Items: []lsp.CompletionItem{}, |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | func (h *Handler) handleTextDocumentCompletion(ctx context.Context, _ *jsonrpc2.Conn, _ *jsonrpc2.Request, params lsp.CompletionParams) (*lsp.CompletionList, error) { |
| 33 | if !IsURI(params.TextDocument.URI) { |
no outgoing calls
no test coverage detected