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