1 implementation of GetPartsOfParenthesizedPattern
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
1429
public void
GetPartsOfParenthesizedPattern
(SyntaxNode node, out SyntaxToken openParen, out SyntaxNode pattern, out SyntaxToken closeParen)
3 references to GetPartsOfParenthesizedPattern
Microsoft.CodeAnalysis.CodeStyle (2)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Services\SyntaxFacts\ISyntaxFactsExtensions.cs (2)
329
syntaxFacts.
GetPartsOfParenthesizedPattern
(node,
397
syntaxFacts.
GetPartsOfParenthesizedPattern
(node, out _, out var pattern, out _);
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\SyntaxGeneratorExtensions_Negate.cs (1)
356
syntaxFacts.
GetPartsOfParenthesizedPattern
(pattern, out _, out var subPattern, out _);