3 overrides of GetPartsOfBinaryLike
Microsoft.CodeAnalysis.CSharp.CodeStyle (2)
CSharpAddRequiredExpressionParenthesesDiagnosticAnalyzer.cs (1)
60protected override (ExpressionSyntax, SyntaxToken, ExpressionSyntax) GetPartsOfBinaryLike(ExpressionSyntax binaryLike)
CSharpAddRequiredPatternParenthesesDiagnosticAnalyzer.cs (1)
38protected override (PatternSyntax, SyntaxToken, PatternSyntax) GetPartsOfBinaryLike(BinaryPatternSyntax binaryPattern)
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (1)
VisualBasicAddRequiredParenthesesDiagnosticAnalyzer.vb (1)
47Protected Overrides Function GetPartsOfBinaryLike(binaryLike As BinaryExpressionSyntax) As (ExpressionSyntax, SyntaxToken, ExpressionSyntax)
1 reference to GetPartsOfBinaryLike
Microsoft.CodeAnalysis.CodeStyle (1)
AbstractAddRequiredParenthesesDiagnosticAnalyzer.cs (1)
142var (left, operatorToken, right) = GetPartsOfBinaryLike(binaryLikeOpt);