1 write to Right
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1787
this.
Right
= right;
20 references to Right
Microsoft.CodeAnalysis.CSharp (20)
Binder\Binder.ValueChecks.cs (5)
4420
argsOpt: [compound.Left, compound.
Right
],
4428
GetValEscape(compound.
Right
, scopeOfTheContainingExpression));
5202
argsOpt: [compound.Left, compound.
Right
],
5213
CheckValEscape(compound.
Right
.Syntax, compound.
Right
, escapeFrom, escapeTo, checkingReceiver: false, diagnostics: diagnostics);
FlowAnalysis\AbstractFlowPass.cs (1)
2182
VisitRvalue(node.
Right
);
FlowAnalysis\DefiniteAssignment.cs (1)
2513
VisitRvalue(node.
Right
);
FlowAnalysis\NullableWalker.cs (2)
10529
var (rightConversionOperand, rightConversion) = RemoveConversion(node.
Right
, includeExplicitConversions: false);
10544
node.
Right
,
FlowAnalysis\NullableWalker.DebugVerifier.cs (1)
285
Visit(node.
Right
);
Generated\BoundNodes.xml.Generated.cs (5)
1812
if (@operator != this.Operator || left != this.Left || right != this.
Right
|| leftPlaceholder != this.LeftPlaceholder || leftConversion != this.LeftConversion || finalPlaceholder != this.FinalPlaceholder || finalConversion != this.FinalConversion || resultKind != this.ResultKind || originalUserDefinedOperatorsOpt != this.OriginalUserDefinedOperatorsOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
9927
this.Visit(node.
Right
);
11041
BoundExpression right = (BoundExpression)this.Visit(node.
Right
);
12767
BoundExpression right = (BoundExpression)this.Visit(node.
Right
);
15333
new TreeDumperNode("right", null, new TreeDumperNode[] { Visit(node.
Right
, null) }),
Lowering\DiagnosticsPass_Warnings.cs (2)
295
CheckForBitwiseOrSignExtend(node, node.Operator.Kind, left, node.
Right
);
727
if (node.
Right
.NullableNeverHasValue())
Lowering\LocalRewriter\LocalRewriter_CompoundAssignmentOperator.cs (2)
24
Debug.Assert(TypeSymbol.Equals(node.
Right
.Type, node.Operator.RightType, TypeCompareKind.ConsiderEverything2));
25
BoundExpression loweredRight = VisitExpression(node.
Right
);
Operations\CSharpOperationFactory.cs (1)
1358
IOperation value = Create(boundCompoundAssignmentOperator.
Right
);