5 references to OpKind
Microsoft.CodeAnalysis.CSharp (2)
Binder\Semantics\Operators\BinaryOperatorEasyOut.cs (1)
305
var easyOut = BinopEasyOut.
OpKind
(kind, leftType, rightType);
Compilation\CSharpCompilation.cs (1)
4317
var easyOutBinaryKind = OverloadResolution.BinopEasyOut.
OpKind
(binaryKind, csharpLeftType, csharpRightType);
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (3)
Semantics\OperatorTests.cs (3)
8156
BinaryOperatorKind result = OverloadResolution.BinopEasyOut.
OpKind
(op, leftType, rightType);
8235
(result = OverloadResolution.BinopEasyOut.
OpKind
(op, leftType.EnumUnderlyingTypeOrSelf(), rightType)) != BinaryOperatorKind.Error &&
8242
(result = OverloadResolution.BinopEasyOut.
OpKind
(op, leftType, rightType.EnumUnderlyingTypeOrSelf())) != BinaryOperatorKind.Error &&