12 references to GetParameterText
Microsoft.CodeAnalysis.Features (2)
MetadataAsSource\AbstractMetadataAsSourceService.DocCommentFormatter.cs (1)
61
var rawParameterText = docComment.
GetParameterText
(parameterNames[i]);
Shared\Extensions\ISymbolExtensions_2.cs (1)
188
IParameterSymbol parameter => GetParameterDocumentation(parameter, compilation, cancellationToken)?.
GetParameterText
(parameter.Name),
Microsoft.CodeAnalysis.Workspaces (1)
ExternalAccess\VSTypeScript\Api\VSTypeScriptDocumentationCommentWrapper.cs (1)
26
=> _underlyingObject?.
GetParameterText
(parameterName);
Microsoft.CodeAnalysis.Workspaces.UnitTests (8)
UtilityTest\DocumentationCommentTests.cs (8)
44
Assert.Equal("A goo.", comment.
GetParameterText
("goo"));
70
Assert.Equal(string.Empty, comment.
GetParameterText
("goo"));
156
Assert.Equal("The param named 'a'", comment.
GetParameterText
("a"));
169
Assert.Equal("The param named 'a'", comment.
GetParameterText
("a"));
184
Assert.Equal("The param named 'a'", comment.
GetParameterText
("a"));
196
Assert.Equal("This comment should be retained.", comment.
GetParameterText
("a"));
300
Assert.Equal(expected, comment.
GetParameterText
("goo"));
347
Assert.Equal(expected, comment.
GetParameterText
("goo"));
Microsoft.VisualStudio.LanguageServices (1)
Library\ObjectBrowser\AbstractDescriptionBuilder.cs (1)
354
var parameterText = documentationComment.
GetParameterText
(parameterName);