8 references to Object
Microsoft.CodeAnalysis.CSharp (8)
Binder\Semantics\Operators\BinaryOperatorEasyOut.cs (1)
15private const BinaryOperatorKind OBJ = BinaryOperatorKind.Object;
Binder\Semantics\Operators\BinaryOperatorOverloadResolution.cs (1)
786operators.Add(new BinaryOperatorSignature(kind | BinaryOperatorKind.Object, @object, @object, Compilation.GetSpecialType(SpecialType.System_Boolean)));
Binder\Semantics\Operators\OperatorKind.cs (2)
566ObjectEqual = Object | Equal, 597ObjectNotEqual = Object | NotEqual,
Compilation\BuiltInOperators.cs (3)
759case BinaryOperatorKind.Object: 794case BinaryOperatorKind.Object: 822case BinaryOperatorKind.Object: return _compilation.GetSpecialType(SpecialType.System_Object);
Lowering\LocalRewriter\LocalRewriter_BinaryOperator.cs (1)
2019operatorKind = (operatorKind & (~BinaryOperatorKind.Delegate)) | BinaryOperatorKind.Object;