8 references to TypeMask
Microsoft.CodeAnalysis.CSharp (8)
Binder\Binder_Operators.cs (2)
589resultOperatorKind &= ~BinaryOperatorKind.TypeMask; 4446switch (operatorKind & BinaryOperatorKind.TypeMask)
Binder\Semantics\Operators\OperatorKindExtensions.cs (6)
149Debug.Assert(kind == (kind & ~BinaryOperatorKind.TypeMask)); 185Debug.Assert(kind == (kind & ~BinaryOperatorKind.TypeMask)); 186Debug.Assert(type == (type & BinaryOperatorKind.TypeMask)); 322return kind & BinaryOperatorKind.TypeMask; 327return (kind & BinaryOperatorKind.TypeMask) == BinaryOperatorKind.UserDefined; 410var type = kind & BinaryOperatorKind.TypeMask;