6 instantiations of 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),
2 references to OperatorKind
Microsoft.CodeAnalysis.NetAnalyzers.UnitTests (2)
Microsoft.NetCore.Analyzers\Performance\UseCountProperlyTests.Data.cs (2)
15foreach (OperatorKind @operator in _operators) 63private static readonly List<OperatorKind> _operators = new()