9 references to LiftedBoolAnd
Microsoft.CodeAnalysis.CSharp (9)
Compilation\BuiltInOperators.cs (1)
617
(int)BinaryOperatorKind.
LiftedBoolAnd
,
Lowering\LocalRewriter\LocalRewriter_BinaryOperator.cs (8)
551
operatorKind != BinaryOperatorKind.LiftedBoolOr && operatorKind != BinaryOperatorKind.
LiftedBoolAnd
&&
1526
if (kind == BinaryOperatorKind.
LiftedBoolAnd
|| kind == BinaryOperatorKind.LiftedBoolOr)
1705
rewrittenConsequence: kind == BinaryOperatorKind.
LiftedBoolAnd
? nullBool : newNullBool,
1706
rewrittenAlternative: kind == BinaryOperatorKind.
LiftedBoolAnd
? newNullBool : nullBool,
1727
BoundExpression consequence = kind == BinaryOperatorKind.
LiftedBoolAnd
? nullBool : boundTemp;
1728
BoundExpression alternative = kind == BinaryOperatorKind.
LiftedBoolAnd
? boundTemp : nullBool;
1875
BoundExpression consequence = kind == BinaryOperatorKind.
LiftedBoolAnd
? boundTempY : boundTempX;
1876
BoundExpression alternative = kind == BinaryOperatorKind.
LiftedBoolAnd
? boundTempX : boundTempY;