2 writes to Items
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\InlineCompletions\InlineCompletionsHandler.cs (1)
115return new VSInternalInlineCompletionList { Items = [item] };
Microsoft.VisualStudio.LanguageServices.Razor (1)
LanguageClient\Cohost\CohostInlineCompletionEndpoint.cs (1)
108return new VSInternalInlineCompletionList { Items = [result] };
5 references to Items
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (4)
InlineCompletions\InlineCompletionsTests.cs (4)
226Assert.Equal(expectedSnippet.ReplaceLineEndings("\r\n"), result.Items.Single().Text.ReplaceLineEndings("\r\n")); 232Assert.Equal(expectedSnippet.ReplaceLineEndings("\r\n"), result.Items.Single().Text.ReplaceLineEndings("\r\n")); 248Assert.Single(result.Items); 250var item = result.Items.Single();
Microsoft.VisualStudio.LanguageServices.Razor.UnitTests (1)
Cohost\CohostInlineCompletionEndpointTest.cs (1)
100var item = Assert.Single(list.Items);