6 references to Unary
Microsoft.CodeAnalysis (4)
Generated\OperationKind.Generated.cs (1)
81/// <summary>Indicates an <see cref="IUnaryOperation"/>. Use <see cref="Unary"/> instead.</summary>
Generated\Operations.Generated.cs (2)
1046/// <item><description><see cref="OperationKind.Unary"/></description></item> 5676public override OperationKind Kind => OperationKind.Unary;
Operations\ControlFlowGraphBuilder.cs (1)
2864case OperationKind.Unary:
Microsoft.CodeAnalysis.NetAnalyzers (2)
Microsoft.NetCore.Analyzers\Runtime\DetectPreviewFeatureAnalyzer.cs (1)
268OperationKind.Unary,
Microsoft.NetCore.Analyzers\Tasks\UseValueTasksCorrectly.cs (1)
544case OperationKind.Unary when op is IUnaryOperation { OperatorKind: UnaryOperatorKind.Not } unary && IsCompletedReference(unary.Operand as IPropertyReferenceOperation):