7 references to LiftedBoolOr
Microsoft.CodeAnalysis.CSharp (7)
Compilation\BuiltInOperators.cs (1)
651
(int)BinaryOperatorKind.
LiftedBoolOr
,
Lowering\LocalRewriter\LocalRewriter_BinaryOperator.cs (6)
545
operatorKind != BinaryOperatorKind.
LiftedBoolOr
&& operatorKind != BinaryOperatorKind.LiftedBoolAnd &&
1520
if (kind == BinaryOperatorKind.LiftedBoolAnd || kind == BinaryOperatorKind.
LiftedBoolOr
)
1694
BoundExpression newNullBool = MakeNewNullableBoolean(syntax, kind == BinaryOperatorKind.
LiftedBoolOr
);
1782
BoundExpression newNullBool = MakeNewNullableBoolean(syntax, kind == BinaryOperatorKind.
LiftedBoolOr
);
1783
BoundExpression consequence = kind == BinaryOperatorKind.
LiftedBoolOr
? newNullBool : maybeNullTemp;
1784
BoundExpression alternative = kind == BinaryOperatorKind.
LiftedBoolOr
? maybeNullTemp : newNullBool;