10 references to RightOperand
Microsoft.CodeAnalysis.CSharp (7)
_generated\0\Syntax.xml.Main.Generated.cs (1)
1602
=> node.Update((ExpressionSyntax?)Visit(node.LeftOperand), VisitToken(node.OperatorToken), (ExpressionSyntax?)Visit(node.
RightOperand
));
_generated\2\Syntax.xml.Syntax.Generated.cs (3)
1610
if (leftOperand != this.LeftOperand || operatorToken != this.OperatorToken || rightOperand != this.
RightOperand
)
1620
public RangeExpressionSyntax WithLeftOperand(ExpressionSyntax? leftOperand) => Update(leftOperand, this.OperatorToken, this.
RightOperand
);
1621
public RangeExpressionSyntax WithOperatorToken(SyntaxToken operatorToken) => Update(this.LeftOperand, operatorToken, this.
RightOperand
);
Binder\Binder_Expressions.cs (3)
2734
if (node.LeftOperand is null && node.
RightOperand
is null)
2742
else if (node.
RightOperand
is null)
2766
BoundExpression right = BindRangeExpressionOperand(node.
RightOperand
, diagnostics);
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Formatting\Rules\SpacingFormattingRule.cs (1)
547
var hasRightOperand = rangeExpression.
RightOperand
!= null;
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Formatting\Rules\SpacingFormattingRule.cs (1)
547
var hasRightOperand = rangeExpression.
RightOperand
!= null;
Roslyn.Diagnostics.CSharp.Analyzers (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Formatting\Rules\SpacingFormattingRule.cs (1)
547
var hasRightOperand = rangeExpression.
RightOperand
!= null;