1 write to Operand
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1522this.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)
676var temp = EmitAddress(expression.Operand, AddressKind.Writeable); 680EmitSymbolToken(expression.Operand.Type, expression.Operand.Syntax);
CodeGen\Optimizer.cs (1)
1312var rewrittenOperand = VisitExpression(node.Operand, ExprContext.Address);
FlowAnalysis\AbstractFlowPass.cs (1)
1264VisitRvalue(node.Operand, isKnownToBeAnLvalue: true);
Generated\BoundNodes.xml.Generated.cs (5)
1533if (operand != this.Operand || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 9924this.Visit(node.Operand); 11030BoundExpression operand = (BoundExpression)this.Visit(node.Operand); 12713BoundExpression operand = (BoundExpression)this.Visit(node.Operand); 15293new TreeDumperNode("operand", null, new TreeDumperNode[] { Visit(node.Operand, null) }),
Lowering\SpillSequenceSpiller.cs (1)
1229var operand = VisitExpression(ref builder, node.Operand);