7 instantiations of UnaryOperation
Microsoft.CodeAnalysis (7)
Generated\Operations.Generated.cs (1)
10944return 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)
2256return new UnaryOperation(operation.OperatorKind, VisitRequired(operation.Operand), operation.IsLifted, operation.IsChecked, 2400return new UnaryOperation(UnaryOperatorKind.Not, operand, isLifted: true, isChecked: false, 2501condition = new UnaryOperation(isAndAlso ? UnaryOperatorKind.False : UnaryOperatorKind.True, 2604condition = new UnaryOperation(isAndAlso ? UnaryOperatorKind.False : UnaryOperatorKind.True, 2738? new UnaryOperation(lastUnary.OperatorKind, condition, lastUnary.IsLifted, lastUnary.IsChecked, 2741: new UnaryOperation(UnaryOperatorKind.Not, condition, isLifted: false, isChecked: false,
2 references to UnaryOperation
Microsoft.CodeAnalysis (2)
Generated\Operations.Generated.cs (2)
10943var internalOperation = (UnaryOperation)operation;