1 write to Operand
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1509this.Operand = operand;
12 references to Operand
Microsoft.CodeAnalysis.CSharp (12)
BoundTree\Expression.cs (1)
111protected override ImmutableArray<BoundNode?> Children => ImmutableArray.Create<BoundNode?>(this.Operand);
CodeGen\EmitExpression.cs (3)
664var temp = EmitAddress(expression.Operand, AddressKind.Writeable); 668EmitSymbolToken(expression.Operand.Type, expression.Operand.Syntax);
CodeGen\Optimizer.cs (1)
1245var rewrittenOperand = VisitExpression(node.Operand, ExprContext.Address);
FlowAnalysis\AbstractFlowPass.cs (1)
1208VisitRvalue(node.Operand, isKnownToBeAnLvalue: true);
Generated\BoundNodes.xml.Generated.cs (5)
1520if (operand != this.Operand || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 9537this.Visit(node.Operand); 10614BoundExpression operand = (BoundExpression)this.Visit(node.Operand); 12242BoundExpression operand = (BoundExpression)this.Visit(node.Operand); 14719new TreeDumperNode("operand", null, new TreeDumperNode[] { Visit(node.Operand, null) }),
Lowering\SpillSequenceSpiller.cs (1)
1131var operand = VisitExpression(ref builder, node.Operand);