Binder\Semantics\Operators\OperatorKind.cs (15)
494IntLeftShift = Int | LeftShift,
495UIntLeftShift = UInt | LeftShift,
496LongLeftShift = Long | LeftShift,
497ULongLeftShift = ULong | LeftShift,
498NIntLeftShift = NInt | LeftShift,
499NUIntLeftShift = NUInt | LeftShift,
500UserDefinedLeftShift = UserDefined | LeftShift,
501LiftedIntLeftShift = Lifted | Int | LeftShift,
502LiftedUIntLeftShift = Lifted | UInt | LeftShift,
503LiftedLongLeftShift = Lifted | Long | LeftShift,
504LiftedULongLeftShift = Lifted | ULong | LeftShift,
505LiftedNIntLeftShift = Lifted | NInt | LeftShift,
506LiftedNUIntLeftShift = Lifted | NUInt | LeftShift,
507LiftedUserDefinedLeftShift = Lifted | UserDefined | LeftShift,
508DynamicLeftShift = Dynamic | LeftShift,