1 implementation of OperatorKind
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
9523public BinaryOperatorKind OperatorKind { get; }
7 references to OperatorKind
Microsoft.CodeAnalysis (1)
Operations\ControlFlowGraphBuilder.cs (1)
7331operatorKind: operation.OperatorKind,
Microsoft.CodeAnalysis.CodeStyle (2)
PopulateSwitchExpressionHelpers.cs (2)
67if (binaryPattern?.OperatorKind == BinaryOperatorKind.Or) 96IBinaryPatternOperation binaryPattern => binaryPattern.OperatorKind switch
Microsoft.CodeAnalysis.Features (2)
PopulateSwitchExpressionHelpers.cs (2)
67if (binaryPattern?.OperatorKind == BinaryOperatorKind.Or) 96IBinaryPatternOperation binaryPattern => binaryPattern.OperatorKind switch
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\OperationTreeVerifier.cs (1)
1943LogString($" ({nameof(BinaryOperatorKind)}.{operation.OperatorKind})");
Compilation\TestOperationVisitor.cs (1)
1371Assert.True(operation.OperatorKind switch { Operations.BinaryOperatorKind.Or => true, Operations.BinaryOperatorKind.And => true, _ => false });