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