6 references to LogicalOr
Microsoft.CSharp (6)
Microsoft\CSharp\RuntimeBinder\Semantics\COperators.cs (1)
40
new OperatorInfo(TokenKind.LogicalOr, PredefinedName.PN_COUNT, ExpressionKind.
LogicalOr
),
Microsoft\CSharp\RuntimeBinder\Semantics\Operators.cs (2)
2159
case ExpressionKind.
LogicalOr
:
2335
Debug.Assert(kind == ExpressionKind.LogicalAnd || kind == ExpressionKind.
LogicalOr
);
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (2)
386
ExpressionKind.
LogicalOr
=> PREDEFMETH.PM_EXPRESSION_ORELSE,
506
case ExpressionKind.
LogicalOr
: pdm = PREDEFMETH.PM_EXPRESSION_ORELSE_USER_DEFINED; break;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExprVisitorBase.cs (1)
62
ExpressionKind.
LogicalOr
=> VisitLOGOR(pExpr as ExprBinOp),