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