5 references to BinaryOperatorSignature
Microsoft.CodeAnalysis.CSharp (4)
Binder\Binder_Operators.cs (1)
184
bestSignature = new
BinaryOperatorSignature
(
Binder\Semantics\Operators\BinaryOperatorOverloadResolution.cs (3)
950
operators.Add(new
BinaryOperatorSignature
(BinaryOperatorKind.UserDefined | kind, leftOperandType, rightOperandType, resultType, op, constrainedToTypeOpt));
967
operators.Add(new
BinaryOperatorSignature
(
973
operators.Add(new
BinaryOperatorSignature
(
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (1)
Semantics\OperatorTests.cs (1)
8829
Assert.Equal(op, new
BinaryOperatorSignature
(op.Kind, op.LeftType, op.RightType, op.ReturnType, op.Method, constrainedToTypeOpt: null));