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