2using System.Runtime.ExceptionServices;
64 ExceptionDispatchInfo.Capture(Left).Throw();
78 ExceptionDispatchInfo.Capture(Right).Throw();
91 ExceptionDispatchInfo.Capture(Left).Throw();
Class managing a script expression.
Base class for binary boolean operators.
Base class for all nodes in a parsed script tree.
int Length
Length of expression covered by node.
int Start
Start position in script expression.
static readonly BooleanValue False
Constant false value.
static readonly BooleanValue True
Constant true value.
static readonly ObjectValue Null
Null value.
override IElement Evaluate(bool Left, Exception Right)
Evaluates the boolean operator.
override IElement Evaluate(bool Left, bool Right)
Evaluates the boolean operator.
override IElement EvaluateOptimizedResult(bool Left)
Gives the operator a chance to optimize its execution if it knows the value of the left operand....
override IElement Evaluate(Exception Left, bool Right)
Evaluates the boolean operator.
And(ScriptNode Left, ScriptNode Right, int Start, int Length, Expression Expression)
Logical And.
override IElement Evaluate(Exception Left, Exception Right)
Evaluates the boolean operator.
Basic interface for all types of elements.