1 write to Right
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1788
this.
Right
= right;
21 references to Right
Microsoft.CodeAnalysis.CSharp (21)
Binder\Binder.ValueChecks.cs (5)
4396
argsOpt: [compound.Left, compound.
Right
],
4404
.Intersect(GetValEscape(compound.
Right
, localScopeDepth));
5184
argsOpt: [compound.Left, compound.
Right
],
5195
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)
10598
var (rightConversionOperand, rightConversion) = RemoveConversion(node.
Right
, includeExplicitConversions: false);
10613
node.
Right
,
FlowAnalysis\NullableWalker.DebugVerifier.cs (1)
285
Visit(node.
Right
);
Generated\BoundNodes.xml.Generated.cs (5)
1813
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))
9962
this.Visit(node.
Right
);
11076
BoundExpression right = (BoundExpression)this.Visit(node.
Right
);
12802
BoundExpression right = (BoundExpression)this.Visit(node.
Right
);
15367
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 (3)
24
Debug.Assert(TypeSymbol.Equals(node.
Right
.Type, node.Operator.RightType, TypeCompareKind.ConsiderEverything2));
78
BoundExpression loweredRight = VisitExpression(node.
Right
);
103
rewrittenAssignment = rewriteAssignment(lhsRead, node.
Right
, rightIsVisited: false);
Operations\CSharpOperationFactory.cs (1)
1358
IOperation value = Create(boundCompoundAssignmentOperator.
Right
);