1 write to Operand
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
2890
this.
Operand
= operand;
15 references to Operand
Microsoft.CodeAnalysis.CSharp (15)
CodeGen\EmitExpression.cs (1)
3407
var operand = asOp.
Operand
;
FlowAnalysis\AbstractFlowPass.cs (1)
2897
VisitRvalue(node.
Operand
);
FlowAnalysis\NullableWalker.cs (2)
5338
operand = ((BoundAsOperator)operand).
Operand
;
11540
var argumentType = VisitRvalueWithState(node.
Operand
);
Generated\BoundNodes.xml.Generated.cs (5)
2907
if (operand != this.
Operand
|| targetType != this.TargetType || operandPlaceholder != this.OperandPlaceholder || operandConversion != this.OperandConversion || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
10030
this.Visit(node.
Operand
);
11225
BoundExpression operand = (BoundExpression)this.Visit(node.
Operand
);
13230
BoundExpression operand = (BoundExpression)this.Visit(node.
Operand
);
15605
new TreeDumperNode("operand", null, new TreeDumperNode[] { Visit(node.
Operand
, null) }),
Lowering\ClosureConversion\ExpressionLambdaRewriter.cs (3)
367
if (node.
Operand
.IsLiteralNull() && (object)node.
Operand
.Type == null)
375
return _bound.StaticCall(WellKnownMember.System_Linq_Expressions_Expression__TypeAs, Visit(node.
Operand
), _bound.Typeof(node.Type, _bound.WellKnownType(WellKnownType.System_Type)));
Lowering\LocalRewriter\LocalRewriter_AsOperator.cs (1)
18
BoundExpression rewrittenOperand = VisitExpression(node.
Operand
);
Lowering\SpillSequenceSpiller.cs (1)
851
var operand = VisitExpression(ref builder, node.
Operand
);
Operations\CSharpOperationFactory.cs (1)
1141
IOperation operand = Create(boundAsOperator.
Operand
);