1 write to Operand
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
2779
this.
Operand
= operand;
15 references to Operand
Microsoft.CodeAnalysis.CSharp (15)
CodeGen\EmitExpression.cs (1)
3185
var operand = asOp.
Operand
;
FlowAnalysis\AbstractFlowPass.cs (1)
2705
VisitRvalue(node.
Operand
);
FlowAnalysis\NullableWalker.cs (2)
4892
operand = ((BoundAsOperator)operand).
Operand
;
10621
var argumentType = VisitRvalueWithState(node.
Operand
);
Generated\BoundNodes.xml.Generated.cs (5)
2796
if (operand != this.
Operand
|| targetType != this.TargetType || operandPlaceholder != this.OperandPlaceholder || operandConversion != this.OperandConversion || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
9673
this.Visit(node.
Operand
);
10830
BoundExpression operand = (BoundExpression)this.Visit(node.
Operand
);
12763
BoundExpression operand = (BoundExpression)this.Visit(node.
Operand
);
15045
new TreeDumperNode("operand", null, new TreeDumperNode[] { Visit(node.
Operand
, null) }),
Lowering\ClosureConversion\ExpressionLambdaRewriter.cs (3)
369
if (node.
Operand
.IsLiteralNull() && (object)node.
Operand
.Type == null)
377
return ExprFactory("TypeAs", Visit(node.
Operand
), _bound.Typeof(node.Type));
Lowering\LocalRewriter\LocalRewriter_AsOperator.cs (1)
18
BoundExpression rewrittenOperand = VisitExpression(node.
Operand
);
Lowering\SpillSequenceSpiller.cs (1)
780
var operand = VisitExpression(ref builder, node.
Operand
);
Operations\CSharpOperationFactory.cs (1)
1135
IOperation operand = Create(boundAsOperator.
Operand
);