13 references to LeftOperand
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)
1621
public RangeExpressionSyntax WithOperatorToken(SyntaxToken operatorToken) => Update(this.
LeftOperand
, operatorToken, this.RightOperand);
1622
public RangeExpressionSyntax WithRightOperand(ExpressionSyntax? rightOperand) => Update(this.
LeftOperand
, this.OperatorToken, rightOperand);
Binder\Binder_Expressions.cs (3)
2734
if (node.
LeftOperand
is null && node.RightOperand is null)
2738
else if (node.
LeftOperand
is null)
2765
BoundExpression left = BindRangeExpressionOperand(node.
LeftOperand
, diagnostics);
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Formatting\Rules\SpacingFormattingRule.cs (1)
558
var hasLeftOperand = rangeExpression.
LeftOperand
!= null;
Microsoft.CodeAnalysis.CSharp.Features (2)
Completion\CompletionProviders\AwaitCompletionProvider.cs (1)
191
RangeExpressionSyntax range => range.
LeftOperand
,
Completion\CompletionProviders\OperatorsAndIndexer\UnnamedSymbolCompletionProvider.cs (1)
86
: (dotToken.Parent as RangeExpressionSyntax)?.
LeftOperand
;
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
Recommendations\CSharpRecommendationServiceRunner.cs (1)
229
var currentExpression = rangeExpression.
LeftOperand
;
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Formatting\Rules\SpacingFormattingRule.cs (1)
558
var hasLeftOperand = rangeExpression.
LeftOperand
!= null;
Roslyn.Diagnostics.CSharp.Analyzers (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Formatting\Rules\SpacingFormattingRule.cs (1)
558
var hasLeftOperand = rangeExpression.
LeftOperand
!= null;