1 instantiation of VSInternalInlineCompletionList
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\InlineCompletions\InlineCompletionsHandler.cs (1)
115
return new
VSInternalInlineCompletionList
{ Items = [item] };
9 references to VSInternalInlineCompletionList
Microsoft.CodeAnalysis.LanguageServer.Protocol (4)
Handler\InlineCompletions\InlineCompletionsHandler.cs (2)
35
internal sealed partial class InlineCompletionsHandler : ILspServiceDocumentRequestHandler<VSInternalInlineCompletionRequest,
VSInternalInlineCompletionList
?>
104
public async Task<
VSInternalInlineCompletionList
?> HandleRequestAsync(VSInternalInlineCompletionRequest request, RequestContext context, CancellationToken cancellationToken)
Protocol\Internal\VSInternalMethods.cs (2)
56
public static readonly LspRequest<VSInternalInlineCompletionRequest,
VSInternalInlineCompletionList
> TextDocumentInlineCompletion = new LspRequest<VSInternalInlineCompletionRequest,
VSInternalInlineCompletionList
>(TextDocumentInlineCompletionName);
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (5)
InlineCompletions\InlineCompletionsTests.cs (5)
225
var
result = await GetInlineCompletionsAsync(testLspServer, locationTyped, new LSP.FormattingOptions { InsertSpaces = true, TabSize = 4 });
245
var
result = await GetInlineCompletionsAsync(testLspServer, locationTyped, options ?? new LSP.FormattingOptions { InsertSpaces = true, TabSize = 4 });
256
private static async Task<LSP.
VSInternalInlineCompletionList
> GetInlineCompletionsAsync(
273
var
response = await testLspServer.ExecuteRequestAsync<LSP.VSInternalInlineCompletionRequest, LSP.
VSInternalInlineCompletionList
>(