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