1 write to Operand
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1220
this.
Operand
= operand;
17 references to Operand
Microsoft.CodeAnalysis.CSharp (17)
Binder\Binder.ValueChecks.cs (2)
3723
return GetValEscape(((BoundIncrementOperator)expr).
Operand
, scopeOfTheContainingExpression);
4200
return CheckValEscape(node, increment.
Operand
, escapeFrom, escapeTo, checkingReceiver: false, diagnostics: diagnostics);
Compilation\CSharpSemanticModel.cs (1)
3821
symbols = ImmutableArray.Create<Symbol>(new SynthesizedIntrinsicOperatorSymbol(increment.
Operand
.Type.StrippedType(),
FlowAnalysis\AbstractFlowPass.cs (3)
2609
if (RegularPropertyAccess(node.
Operand
))
2611
var left = (BoundPropertyAccess)node.
Operand
;
2625
VisitRvalue(node.
Operand
);
FlowAnalysis\DefiniteAssignment.cs (1)
2342
Assign(node.
Operand
, value: node);
FlowAnalysis\NullableWalker.cs (3)
9532
var operandType = VisitRvalueWithState(node.
Operand
);
9569
node.
Operand
,
9616
TrackNullableStateForAssignment(node, targetType: operandLvalue, targetSlot: MakeSlot(node.
Operand
), valueType: resultOfIncrementType);
Generated\BoundNodes.xml.Generated.cs (5)
1248
if (operatorKind != this.OperatorKind || operand != this.
Operand
|| !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(methodOpt, this.MethodOpt) || !TypeSymbol.Equals(constrainedToTypeOpt, this.ConstrainedToTypeOpt, TypeCompareKind.ConsiderEverything) || operandPlaceholder != this.OperandPlaceholder || operandConversion != this.OperandConversion || resultPlaceholder != this.ResultPlaceholder || resultConversion != this.ResultConversion || resultKind != this.ResultKind || originalUserDefinedOperatorsOpt != this.OriginalUserDefinedOperatorsOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
9499
this.Visit(node.
Operand
);
10559
BoundExpression operand = (BoundExpression)this.Visit(node.
Operand
);
12098
BoundExpression operand = (BoundExpression)this.Visit(node.
Operand
);
14637
new TreeDumperNode("operand", null, new TreeDumperNode[] { Visit(node.
Operand
, null) }),
Lowering\LocalRewriter\LocalRewriter_UnaryOperator.cs (1)
433
BoundExpression transformedLHS = TransformCompoundAssignmentLHS(node.
Operand
, isRegularCompoundAssignment: true, tempInitializers, tempSymbols, isDynamic);
Operations\CSharpOperationFactory.cs (1)
1324
IOperation target = Create(boundIncrementOperator.
Operand
);