1 write to Operand
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1191this.Operand = operand;
35 references to Operand
Microsoft.CodeAnalysis.CSharp (35)
Binder\Binder.ValueChecks.cs (4)
4311argsOpt: [unaryOperator.Operand], 4318return GetValEscape(unaryOperator.Operand, scopeOfTheContainingExpression); 5075argsOpt: [unary.Operand], 5085return CheckValEscape(node, unary.Operand, escapeFrom, escapeTo, checkingReceiver: false, diagnostics: diagnostics);
BoundTree\BoundNode_Source.cs (1)
317appendSource(unary.Operand);
CodeGen\EmitOperators.cs (5)
29EmitExpression(expression.Operand, used: false); 35EmitCondExpr(expression.Operand, sense: false); 39EmitExpression(expression.Operand, used: true); 576condition = unOp.Operand; 614EmitExpression(expression.Operand, used: true);
CodeGen\EmitStatement.cs (1)
580condition = unOp.Operand;
CodeGen\Optimizer.cs (2)
1658PushEvalStack(new BoundDefaultExpression(node.Syntax, node.Operand.Type), ExprContext.Value); 1659BoundExpression operand = (BoundExpression)this.Visit(node.Operand);
Compilation\CSharpSemanticModel.cs (1)
3809symbols = OneOrMany.Create<Symbol>(new SynthesizedIntrinsicOperatorSymbol(unaryOperator.Operand.Type.StrippedType(),
FlowAnalysis\AbstractFlowPass.cs (2)
2759VisitCondition(node.Operand); 2765VisitRvalue(node.Operand);
FlowAnalysis\NullableWalker.cs (6)
11230Visit(node.Operand); 11238Visit(node.Operand); 11244Visit(node.Operand); 11255var (operand, conversion) = RemoveConversion(node.Operand, includeExplicitConversions: false); 11265node.Operand as BoundConversion, 11280VisitRvalue(node.Operand);
Generated\BoundNodes.xml.Generated.cs (5)
1213if (operatorKind != this.OperatorKind || operand != this.Operand || constantValueOpt != this.ConstantValueOpt || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(methodOpt, this.MethodOpt) || !TypeSymbol.Equals(constrainedToTypeOpt, this.ConstrainedToTypeOpt, TypeCompareKind.ConsiderEverything) || resultKind != this.ResultKind || originalUserDefinedOperatorsOpt != this.OriginalUserDefinedOperatorsOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 9845this.Visit(node.Operand); 10932BoundExpression operand = (BoundExpression)this.Visit(node.Operand); 12513BoundExpression operand = (BoundExpression)this.Visit(node.Operand); 15161new TreeDumperNode("operand", null, new TreeDumperNode[] { Visit(node.Operand, null) }),
Lowering\ClosureConversion\ExpressionLambdaRewriter.cs (1)
1135var arg = node.Operand;
Lowering\DiagnosticsPass_Warnings.cs (1)
743if (node.Operand.NullableNeverHasValue())
Lowering\LocalRewriter\LocalRewriter_UnaryOperator.cs (3)
45if (node.Operand.Kind == BoundKind.BinaryOperator) 50var binaryOperator = (BoundBinaryOperator)node.Operand; 58BoundExpression loweredOperand = VisitExpression(node.Operand);
Lowering\MethodToClassRewriter.cs (1)
284(BoundExpression)Visit(node.Operand),
Lowering\SpillSequenceSpiller.cs (1)
1507BoundExpression operand = VisitExpression(ref builder, node.Operand);
Operations\CSharpOperationFactory.cs (1)
1434IOperation operand = Create(boundUnaryOperator.Operand);