1 write to Operand
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1190this.Operand = operand;
35 references to Operand
Microsoft.CodeAnalysis.CSharp (35)
Binder\Binder.ValueChecks.cs (4)
4335argsOpt: [unaryOperator.Operand], 4342return GetValEscape(unaryOperator.Operand, scopeOfTheContainingExpression); 5099argsOpt: [unary.Operand], 5109return 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)
11233Visit(node.Operand); 11241Visit(node.Operand); 11247Visit(node.Operand); 11258var (operand, conversion) = RemoveConversion(node.Operand, includeExplicitConversions: false); 11268node.Operand as BoundConversion, 11283VisitRvalue(node.Operand);
Generated\BoundNodes.xml.Generated.cs (5)
1212if (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)) 9844this.Visit(node.Operand); 10931BoundExpression operand = (BoundExpression)this.Visit(node.Operand); 12512BoundExpression operand = (BoundExpression)this.Visit(node.Operand); 15160new 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);