1 write to LeftOperandOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1614
this.
LeftOperandOpt
= leftOperandOpt;
13 references to LeftOperandOpt
Microsoft.CodeAnalysis.CSharp (13)
Binder\Binder.ValueChecks.cs (2)
4453
return Math.Max((range.
LeftOperandOpt
is { } left ? GetValEscape(left, scopeOfTheContainingExpression) : CallingMethodScope),
5247
if (range.
LeftOperandOpt
is { } left && !CheckValEscape(left.Syntax, left, escapeFrom, escapeTo, checkingReceiver: false, diagnostics: diagnostics))
Binder\Binder_Expressions.cs (1)
9164
if (rangeExpr.
LeftOperandOpt
is BoundExpression left)
FlowAnalysis\AbstractFlowPass.cs (2)
2772
if (node.
LeftOperandOpt
!= null)
2774
VisitRvalue(node.
LeftOperandOpt
);
Generated\BoundNodes.xml.Generated.cs (5)
1629
if (leftOperandOpt != this.
LeftOperandOpt
|| rightOperandOpt != this.RightOperandOpt || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(methodOpt, this.MethodOpt) || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
9902
this.Visit(node.
LeftOperandOpt
);
11011
BoundExpression? leftOperandOpt = (BoundExpression?)this.Visit(node.
LeftOperandOpt
);
12729
BoundExpression? leftOperandOpt = (BoundExpression?)this.Visit(node.
LeftOperandOpt
);
15282
new TreeDumperNode("leftOperandOpt", null, new TreeDumperNode[] { Visit(node.
LeftOperandOpt
, null) }),
Lowering\LocalRewriter\LocalRewriter_IndexerAccess.cs (1)
1091
if (rangeExpr.
LeftOperandOpt
is BoundExpression left)
Lowering\LocalRewriter\LocalRewriter_Range.cs (1)
24
var left = node.
LeftOperandOpt
;
Operations\CSharpOperationFactory.cs (1)
2830
IOperation? left = Create(boundRange.
LeftOperandOpt
);