2 writes to Label
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\Completion\CompletionResultFactory.cs (2)
334var lspItem = new LSP.CompletionItem() { Label = item.GetEntireDisplayText() }; 371Label = item.GetEntireDisplayText(),
6 references to Label
Microsoft.CodeAnalysis.LanguageServer.Protocol (6)
Handler\Completion\CompletionResolveHandler.cs (1)
121return lspCompletionItem.Label == completionItem.GetEntireDisplayText()
Handler\Completion\CompletionResultFactory.cs (2)
485if (!lspItem.Label.Equals(completionChangeNewText, StringComparison.Ordinal)) 509Contract.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)
150var label = completionItem.Label;