7 references to Delegate
Microsoft.CodeAnalysis.CSharp (7)
Binder\Semantics\Operators\BinaryOperatorOverloadResolution.cs (2)
312
operators.Add(new BinaryOperatorSignature(kind | BinaryOperatorKind.
Delegate
, delegateType, delegateType, Compilation.GetSpecialType(SpecialType.System_Boolean)));
318
operators.Add(new BinaryOperatorSignature(kind | BinaryOperatorKind.
Delegate
, delegateType, delegateType, delegateType));
Binder\Semantics\Operators\OperatorKind.cs (4)
456
DelegateCombination =
Delegate
| Addition,
486
DelegateRemoval =
Delegate
| Subtraction,
568
DelegateEqual =
Delegate
| Equal,
599
DelegateNotEqual =
Delegate
| NotEqual,
Lowering\LocalRewriter\LocalRewriter_BinaryOperator.cs (1)
2019
operatorKind = (operatorKind & (~BinaryOperatorKind.
Delegate
)) | BinaryOperatorKind.Object;