1 write to Operand
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1232
this.
Operand
= operand;
17 references to Operand
Microsoft.CodeAnalysis.CSharp (17)
Binder\Binder.ValueChecks.cs (2)
4408
return GetValEscape(((BoundIncrementOperator)expr).
Operand
, scopeOfTheContainingExpression);
5189
return CheckValEscape(node, increment.
Operand
, escapeFrom, escapeTo, checkingReceiver: false, diagnostics: diagnostics);
Compilation\CSharpSemanticModel.cs (1)
3832
TypeSymbol opType = increment.
Operand
.Type.StrippedType();
FlowAnalysis\AbstractFlowPass.cs (3)
2801
if (RegularPropertyAccess(node.
Operand
))
2803
var left = (BoundPropertyAccess)node.
Operand
;
2817
VisitRvalue(node.
Operand
);
FlowAnalysis\DefiniteAssignment.cs (1)
2506
Assign(node.
Operand
, value: node);
FlowAnalysis\NullableWalker.cs (3)
10419
var operandType = VisitRvalueWithState(node.
Operand
);
10456
node.
Operand
,
10503
TrackNullableStateForAssignment(node, targetType: operandLvalue, targetSlot: MakeSlot(node.
Operand
), valueType: resultOfIncrementType);
Generated\BoundNodes.xml.Generated.cs (5)
1260
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))
9849
this.Visit(node.
Operand
);
10938
BoundExpression operand = (BoundExpression)this.Visit(node.
Operand
);
12532
BoundExpression operand = (BoundExpression)this.Visit(node.
Operand
);
15174
new TreeDumperNode("operand", null, new TreeDumperNode[] { Visit(node.
Operand
, null) }),
Lowering\LocalRewriter\LocalRewriter_UnaryOperator.cs (1)
438
BoundExpression transformedLHS = TransformCompoundAssignmentLHS(node.
Operand
, isRegularCompoundAssignment: true, tempInitializers, tempSymbols, isDynamic);
Operations\CSharpOperationFactory.cs (1)
1391
IOperation target = Create(boundIncrementOperator.
Operand
);