15 references to UnaryOperator
Microsoft.CodeAnalysis.CSharp (14)
Binder\Binder.ValueChecks.cs (4)
3695
case BoundKind.
UnaryOperator
:
4072
case BoundKind.
UnaryOperator
:
4423
case BoundKind.
UnaryOperator
:
5226
case BoundKind.
UnaryOperator
:
BoundTree\BoundExpression.cs (1)
612
return this.Condition.Kind == BoundKind.
UnaryOperator
&& ((BoundUnaryOperator)this.Condition).OperatorKind.IsDynamic();
BoundTree\BoundTreeVisitors.cs (1)
37
case BoundKind.
UnaryOperator
:
CodeGen\EmitExpression.cs (1)
197
case BoundKind.
UnaryOperator
:
CodeGen\EmitStatement.cs (1)
575
case BoundKind.
UnaryOperator
:
Compilation\CSharpSemanticModel.cs (2)
1941
else if (highestBoundExpr.Kind == BoundKind.
UnaryOperator
)
3562
case BoundKind.
UnaryOperator
:
Generated\BoundNodes.xml.Generated.cs (2)
1165
: base(BoundKind.
UnaryOperator
, syntax, type, hasErrors || operand.HasErrors())
8910
case BoundKind.
UnaryOperator
:
Lowering\ClosureConversion\ExpressionLambdaRewriter.cs (1)
236
case BoundKind.
UnaryOperator
:
Operations\CSharpOperationFactory.cs (1)
125
case BoundKind.
UnaryOperator
:
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (1)
Semantics\ConstantTests.cs (1)
641
var actual = ParseAndGetConstantFoldingSteps(source, node => node.Kind == BoundKind.
UnaryOperator
);