6 references to OperatorKind
Microsoft.CodeAnalysis.NetAnalyzers.UnitTests (6)
Microsoft.NetCore.Analyzers\Performance\UseCountProperlyTests.Data.cs (6)
65new OperatorKind((a, b) => a == b, 1, 2, BinaryOperatorKind.Equals),
66new OperatorKind((a, b) => a != b, 2, 2, BinaryOperatorKind.NotEquals),
67new OperatorKind((a, b) => a > b, 1, 1, BinaryOperatorKind.GreaterThan),
68new OperatorKind((a, b) => a >= b, 2, 2, BinaryOperatorKind.GreaterThanOrEqual),
69new OperatorKind((a, b) => a < b, 1, 1, BinaryOperatorKind.LessThan),
70new OperatorKind((a, b) => a <= b, 2, 2, BinaryOperatorKind.LessThanOrEqual),