2 writes to Label
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\Completion\CompletionResultFactory.cs (2)
334
var lspItem = new LSP.CompletionItem() {
Label
= item.GetEntireDisplayText() };
371
Label
= item.GetEntireDisplayText(),
6 references to Label
Microsoft.CodeAnalysis.LanguageServer.Protocol (6)
Handler\Completion\CompletionResolveHandler.cs (1)
121
return lspCompletionItem.
Label
== completionItem.GetEntireDisplayText()
Handler\Completion\CompletionResultFactory.cs (2)
485
if (!lspItem.
Label
.Equals(completionChangeNewText, StringComparison.Ordinal))
509
Contract.ThrowIfNull(lspItem.
Label
);
Protocol\CompletionItem.cs (1)
241
/// If not provided, the <see cref="
Label
"/> is used.
Protocol\CompletionItemLabelDetails.cs (1)
20
/// <see cref="CompletionItem.
Label
"/>, without any spacing. Should be
Protocol\Internal\Efficiency\OptimizedVSCompletionListJsonConverter.cs (1)
150
var label = completionItem.
Label
;