9 references to LiftedBoolAnd
Microsoft.CodeAnalysis.CSharp (9)
Compilation\BuiltInOperators.cs (1)
617
(int)BinaryOperatorKind.
LiftedBoolAnd
,
Lowering\LocalRewriter\LocalRewriter_BinaryOperator.cs (8)
543
operatorKind != BinaryOperatorKind.LiftedBoolOr && operatorKind != BinaryOperatorKind.
LiftedBoolAnd
&&
1439
if (kind == BinaryOperatorKind.
LiftedBoolAnd
|| kind == BinaryOperatorKind.LiftedBoolOr)
1619
rewrittenConsequence: kind == BinaryOperatorKind.
LiftedBoolAnd
? nullBool : newNullBool,
1620
rewrittenAlternative: kind == BinaryOperatorKind.
LiftedBoolAnd
? newNullBool : nullBool,
1641
BoundExpression consequence = kind == BinaryOperatorKind.
LiftedBoolAnd
? nullBool : boundTemp;
1642
BoundExpression alternative = kind == BinaryOperatorKind.
LiftedBoolAnd
? boundTemp : nullBool;
1789
BoundExpression consequence = kind == BinaryOperatorKind.
LiftedBoolAnd
? boundTempY : boundTempX;
1790
BoundExpression alternative = kind == BinaryOperatorKind.
LiftedBoolAnd
? boundTempX : boundTempY;