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