1 write to Right
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1788
this.
Right
= right;
27 references to Right
Microsoft.CodeAnalysis.CSharp (27)
Binder\Binder.ValueChecks.cs (5)
4503
argsOpt: [compound.Left, compound.
Right
],
4516
.Intersect(GetValEscape(compound.
Right
, localScopeDepth));
5298
argsOpt: [compound.Left, compound.
Right
],
5314
CheckValEscape(compound.
Right
.Syntax, compound.
Right
, escapeFrom, escapeTo, checkingReceiver: false, diagnostics: diagnostics);
Binder\RefSafetyAnalysis.cs (2)
562
argsOpt: [node.Left, node.
Right
],
576
argsOpt: [node.
Right
],
FlowAnalysis\AbstractFlowPass.cs (1)
2188
VisitRvalue(node.
Right
);
FlowAnalysis\DefiniteAssignment.cs (1)
2525
VisitRvalue(node.
Right
);
FlowAnalysis\NullableWalker.cs (3)
10856
var (rightConversionOperand, rightConversion) = RemoveConversion(node.
Right
, includeExplicitConversions: false);
10871
VisitBinaryOperatorOperandConversionAndPostConditions(node.
Right
, rightConversionOperand, rightConversion, method.Parameters[0], rightTypeWithState, isLifted: false);
10898
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
);
11100
BoundExpression right = (BoundExpression)this.Visit(node.
Right
);
12948
BoundExpression right = (BoundExpression)this.Visit(node.
Right
);
15513
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 (6)
24
Debug.Assert(TypeSymbol.Equals(node.
Right
.Type, node.Operator.RightType, TypeCompareKind.ConsiderEverything2));
44
return BoundCall.Synthesized(syntax, VisitExpression(node.Left), initialBindingReceiverIsSubjectToCloning: ThreeState.False, node.Operator.Method, VisitExpression(node.
Right
));
60
sideEffects: [tempAssignment, BoundCall.Synthesized(syntax, targetOfCompoundOperation, initialBindingReceiverIsSubjectToCloning: ThreeState.False, node.Operator.Method, VisitExpression(node.
Right
))],
65
return MakeInstanceCompoundAssignmentOperatorResult(node.Syntax, node.Left, node.
Right
, node.Operator.Method, node.Operator.Kind.IsChecked());
123
BoundExpression loweredRight = VisitExpression(node.
Right
);
148
rewrittenAssignment = rewriteAssignment(lhsRead, node.
Right
, rightIsVisited: false);
Operations\CSharpOperationFactory.cs (1)
1358
IOperation value = Create(boundCompoundAssignmentOperator.
Right
);