8 references to LogicalAnd
Microsoft.CSharp (8)
Microsoft\CSharp\RuntimeBinder\Semantics\COperators.cs (1)
41
new OperatorInfo(TokenKind.LogicalAnd, PredefinedName.PN_COUNT, ExpressionKind.
LogicalAnd
),
Microsoft\CSharp\RuntimeBinder\Semantics\Operators.cs (4)
160
ek - ExpressionKind.
LogicalAnd
+ ExpressionKind.BitwiseAnd, info.arg1, info.arg2, true, out pmpwi);
2211
case ExpressionKind.
LogicalAnd
:
2392
Debug.Assert(kind == ExpressionKind.
LogicalAnd
|| kind == ExpressionKind.LogicalOr);
2424
return ExprFactory.CreateUserLogOp(typeRet, kind == ExpressionKind.
LogicalAnd
? pCallF : pCallT, pCall);
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (2)
386
ExpressionKind.
LogicalAnd
=> PREDEFMETH.PM_EXPRESSION_ANDALSO,
508
case ExpressionKind.
LogicalAnd
: pdm = PREDEFMETH.PM_EXPRESSION_ANDALSO_USER_DEFINED; break;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExprVisitorBase.cs (1)
61
ExpressionKind.
LogicalAnd
=> VisitLOGAND(pExpr as ExprBinOp),