8 references to GetTypeParameterText
Microsoft.CodeAnalysis.Features (2)
MetadataAsSource\AbstractMetadataAsSourceService.DocCommentFormatter.cs (1)
88var rawTypeParameterText = docComment.GetTypeParameterText(typeParameterNames[i]);
Shared\Extensions\ISymbolExtensions_2.cs (1)
189ITypeParameterSymbol typeParam => typeParam.ContainingSymbol.GetDocumentationComment(compilation, expandIncludes: true, expandInheritdoc: true, cancellationToken: cancellationToken)?.GetTypeParameterText(typeParam.Name),
Microsoft.CodeAnalysis.Workspaces.UnitTests (5)
UtilityTest\DocumentationCommentTests.cs (5)
46Assert.Equal("A type.", comment.GetTypeParameterText("T")); 72Assert.Equal(string.Empty, comment.GetTypeParameterText("T")); 208Assert.Equal("This comment should be retained.", comment.GetTypeParameterText("a")); 301Assert.Equal(expected, comment.GetTypeParameterText("T")); 348Assert.Equal(expected, comment.GetTypeParameterText("T"));
Microsoft.VisualStudio.LanguageServices (1)
Library\ObjectBrowser\AbstractDescriptionBuilder.cs (1)
328var typeParameterText = documentationComment.GetTypeParameterText(typeParameterName);