1 implementation of GetParameterList
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
193
public SyntaxNode?
GetParameterList
(SyntaxNode node)
3 references to GetParameterList
Microsoft.CodeAnalysis.Features (3)
GenerateConstructors\AbstractGenerateConstructorsCodeRefactoringProvider.cs (1)
302
var parameterList = syntaxFacts.
GetParameterList
(node);
IntroduceParameter\IntroduceParameterDocumentRewriter.cs (1)
137
var parameterList = _syntaxFacts.
GetParameterList
(_containerMethod);
ReplaceMethodWithProperty\AbstractReplaceMethodWithPropertyService.cs (1)
77
var paramList = syntaxFacts.
GetParameterList
(methodDeclaration);