1 write to Operand
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1279this.Operand = operand;
20 references to Operand
Microsoft.CodeAnalysis.CSharp (20)
Binder\Binder_Statements.cs (2)
1247elementType = ((BoundAddressOfOperator)initializerOpt).Operand.Type; 2373Error(diagnostics, ErrorCode.ERR_InvalidAddrOp, ((BoundAddressOfOperator)operand).Operand.Syntax);
CodeGen\EmitExpression.cs (1)
749var temp = EmitAddress(expression.Operand, AddressKind.ReadOnlyStrict);
CodeGen\Optimizer.cs (1)
1791BoundExpression visitedOperand = this.VisitExpression(node.Operand, ExprContext.Address);
FlowAnalysis\AbstractFlowPass.cs (1)
3383VisitAddressOfOperand(node.Operand, shouldReadOperand: false);
FlowAnalysis\DefiniteAssignment.cs (3)
2480initializer = ((BoundAddressOfOperator)initializer).Operand; 2494BoundExpression operand = node.Operand; 2516VisitAddressOfOperand(node.Operand, shouldReadOperand);
FlowAnalysis\NullableWalker.cs (2)
10425initializer = ((BoundAddressOfOperator)initializer).Operand; 10439Visit(node.Operand);
FlowAnalysis\UnassignedAddressTakenVariablesWalker.cs (1)
64VisitRvalue(node.Operand);
Generated\BoundNodes.xml.Generated.cs (5)
1292if (operand != this.Operand || isManaged != this.IsManaged || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 9852this.Visit(node.Operand); 10947BoundExpression operand = (BoundExpression)this.Visit(node.Operand); 12551BoundExpression operand = (BoundExpression)this.Visit(node.Operand); 15188new TreeDumperNode("operand", null, new TreeDumperNode[] { Visit(node.Operand, null) }),
Lowering\DiagnosticsPass_ExpressionTrees.cs (1)
730BoundExpression operand = node.Operand;
Lowering\LocalRewriter\LocalRewriter_FixedStatement.cs (1)
252initializerExpr = ((BoundAddressOfOperator)initializerExpr).Operand;
Lowering\SpillSequenceSpiller.cs (1)
765var expr = VisitExpression(ref builder, node.Operand);
Operations\CSharpOperationFactory.cs (1)
1689IOperation reference = Create(boundAddressOfOperator.Operand);