11 instantiations of UnaryOperation
Microsoft.CodeAnalysis (7)
Generated\Operations.Generated.cs (1)
10394
return new
UnaryOperation
(internalOperation.OperatorKind, Visit(internalOperation.Operand), internalOperation.IsLifted, internalOperation.IsChecked, internalOperation.OperatorMethod, internalOperation.ConstrainedToType, internalOperation.OwningSemanticModel, internalOperation.Syntax, internalOperation.Type, internalOperation.OperationConstantValue, internalOperation.IsImplicit);
Operations\ControlFlowGraphBuilder.cs (6)
2239
return new
UnaryOperation
(operation.OperatorKind, VisitRequired(operation.Operand), operation.IsLifted, operation.IsChecked,
2383
return new
UnaryOperation
(UnaryOperatorKind.Not, operand, isLifted: true, isChecked: false,
2484
condition = new
UnaryOperation
(isAndAlso ? UnaryOperatorKind.False : UnaryOperatorKind.True,
2587
condition = new
UnaryOperation
(isAndAlso ? UnaryOperatorKind.False : UnaryOperatorKind.True,
2721
? new
UnaryOperation
(lastUnary.OperatorKind, condition, lastUnary.IsLifted, lastUnary.IsChecked,
2724
: new
UnaryOperation
(UnaryOperatorKind.Not, condition, isLifted: false, isChecked: false,
Microsoft.CodeAnalysis.CSharp (2)
Operations\CSharpOperationFactory.cs (2)
1375
return new
UnaryOperation
(unaryOperatorKind, operand, isLifted, isChecked, operatorMethod,
2669
return new
UnaryOperation
(
Microsoft.CodeAnalysis.VisualBasic (2)
Operations\VisualBasicOperationFactory.vb (2)
508
Return New
UnaryOperation
(operatorKind, operand, isLifted, isChecked, operatorMethod, constrainedToType:=Nothing, _semanticModel, syntax, type, constantValue, isImplicit)
521
Return New
UnaryOperation
(operatorKind, operand, isLifted, isChecked, operatorMethod, constrainedToType:=Nothing, _semanticModel, syntax, type, constantValue, isImplicit)
2 references to UnaryOperation
Microsoft.CodeAnalysis (2)
Generated\Operations.Generated.cs (2)
10393
var
internalOperation = (
UnaryOperation
)operation;