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