7 references to GetTypeParameterText
Microsoft.CodeAnalysis.Features (1)
MetadataAsSource\AbstractMetadataAsSourceService.DocCommentFormatter.cs (1)
87docCommentFormattingService.Format(docComment.GetTypeParameterText(typeParameterNames[i])),
Microsoft.CodeAnalysis.Workspaces.UnitTests (5)
UtilityTest\DocumentationCommentTests.cs (5)
46Assert.Equal("A type.", comment.GetTypeParameterText("T")); 74Assert.Equal(string.Empty, comment.GetTypeParameterText("T")); 228Assert.Equal("This comment should be retained.", comment.GetTypeParameterText("a")); 329Assert.Equal(expected, comment.GetTypeParameterText("T")); 382Assert.Equal(expected, comment.GetTypeParameterText("T"));
Microsoft.VisualStudio.LanguageServices (1)
Library\ObjectBrowser\AbstractDescriptionBuilder.cs (1)
323var typeParameterText = documentationComment.GetTypeParameterText(typeParameterName);