5 references to Unparenthesize
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
Simplification\Reducers\CSharpParenthesizedExpressionReducer.cs (1)
44var resultNode = CSharpSyntaxFacts.Instance.Unparenthesize(node);
Simplification\Reducers\CSharpParenthesizedPatternReducer.cs (1)
41var resultNode = CSharpSyntaxFacts.Instance.Unparenthesize(node);
Microsoft.CodeAnalysis.Features (2)
AbstractRemoveUnnecessaryParenthesesCodeFixProvider.cs (1)
46(_, currentRoot, current) => currentRoot.ReplaceNode(current, syntaxFacts.Unparenthesize(current)),
AbstractUseCompoundAssignmentCodeFixProvider.cs (1)
73rightOfAssign = syntaxFacts.Unparenthesize(rightOfAssign);
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
Simplification\Reducers\AbstractVisualBasicReducer.vb (1)
36Dim resultNode = VisualBasicSyntaxFacts.Instance.Unparenthesize(node)