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)
151
ek - ExpressionKind.
LogicalAnd
+ ExpressionKind.BitwiseAnd, info.arg1, info.arg2, true, out pmpwi);
2160
case ExpressionKind.
LogicalAnd
:
2335
Debug.Assert(kind == ExpressionKind.
LogicalAnd
|| kind == ExpressionKind.LogicalOr);
2367
return ExprFactory.CreateUserLogOp(typeRet, kind == ExpressionKind.
LogicalAnd
? pCallF : pCallT, pCall);
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (2)
385
ExpressionKind.
LogicalAnd
=> PREDEFMETH.PM_EXPRESSION_ANDALSO,
507
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),