1 write to Operand
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1220this.Operand = operand;
17 references to Operand
Microsoft.CodeAnalysis.CSharp (17)
Binder\Binder.ValueChecks.cs (2)
3723return GetValEscape(((BoundIncrementOperator)expr).Operand, scopeOfTheContainingExpression); 4200return CheckValEscape(node, increment.Operand, escapeFrom, escapeTo, checkingReceiver: false, diagnostics: diagnostics);
Compilation\CSharpSemanticModel.cs (1)
3821symbols = ImmutableArray.Create<Symbol>(new SynthesizedIntrinsicOperatorSymbol(increment.Operand.Type.StrippedType(),
FlowAnalysis\AbstractFlowPass.cs (3)
2609if (RegularPropertyAccess(node.Operand)) 2611var left = (BoundPropertyAccess)node.Operand; 2625VisitRvalue(node.Operand);
FlowAnalysis\DefiniteAssignment.cs (1)
2342Assign(node.Operand, value: node);
FlowAnalysis\NullableWalker.cs (3)
9532var operandType = VisitRvalueWithState(node.Operand); 9569node.Operand, 9616TrackNullableStateForAssignment(node, targetType: operandLvalue, targetSlot: MakeSlot(node.Operand), valueType: resultOfIncrementType);
Generated\BoundNodes.xml.Generated.cs (5)
1248if (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)) 9499this.Visit(node.Operand); 10559BoundExpression operand = (BoundExpression)this.Visit(node.Operand); 12098BoundExpression operand = (BoundExpression)this.Visit(node.Operand); 14637new TreeDumperNode("operand", null, new TreeDumperNode[] { Visit(node.Operand, null) }),
Lowering\LocalRewriter\LocalRewriter_UnaryOperator.cs (1)
433BoundExpression transformedLHS = TransformCompoundAssignmentLHS(node.Operand, isRegularCompoundAssignment: true, tempInitializers, tempSymbols, isDynamic);
Operations\CSharpOperationFactory.cs (1)
1324IOperation target = Create(boundIncrementOperator.Operand);