2 implementations of ParenthesizedExpression
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CSharpSyntaxKinds.cs (1)
98public int ParenthesizedExpression => (int)SyntaxKind.ParenthesizedExpression;
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
VisualBasicSyntaxKinds.vb (1)
101Public ReadOnly Property ParenthesizedExpression As Integer = SyntaxKind.ParenthesizedExpression Implements ISyntaxKinds.ParenthesizedExpression
2 references to ParenthesizedExpression
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
VisualBasicSyntaxKinds.vb (1)
101Public ReadOnly Property ParenthesizedExpression As Integer = SyntaxKind.ParenthesizedExpression Implements ISyntaxKinds.ParenthesizedExpression
Microsoft.CodeAnalysis.Workspaces (1)
ISyntaxFactsExtensions.cs (1)
825=> node?.RawKind == syntaxFacts.SyntaxKinds.ParenthesizedExpression;