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