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