1 write to Operand
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1371this.Operand = operand;
13 references to Operand
Microsoft.CodeAnalysis.CSharp (13)
Binder\Binder.ValueChecks.cs (2)
423expr = pointerIndirection.Update(pointerIndirection.Operand, refersToLocation: true, pointerIndirection.Type); 4264var operandExpression = ((BoundPointerIndirectionOperator)expr).Operand;
BoundTree\Statement.cs (1)
35protected override ImmutableArray<BoundNode?> Children => ImmutableArray.Create<BoundNode?>(this.Operand);
CodeGen\EmitAddress.cs (1)
103BoundExpression operand = ((BoundPointerIndirectionOperator)expression).Operand;
CodeGen\EmitExpression.cs (2)
754EmitExpression(expression.Operand, used: true); 2690EmitExpression(left.Operand, used: true);
FlowAnalysis\AbstractFlowPass.cs (1)
3301VisitRvalue(node.Operand);
Generated\BoundNodes.xml.Generated.cs (5)
1384if (operand != this.Operand || refersToLocation != this.RefersToLocation || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 9515this.Visit(node.Operand); 10588BoundExpression operand = (BoundExpression)this.Visit(node.Operand); 12171BoundExpression operand = (BoundExpression)this.Visit(node.Operand); 14679new TreeDumperNode("operand", null, new TreeDumperNode[] { Visit(node.Operand, null) }),
Lowering\SpillSequenceSpiller.cs (1)
1352var operand = VisitExpression(ref builder, node.Operand);