2using System.Threading.Tasks;
43 if (!(ColIndex.
AssociatedObjectValue is
double x) || x < 0 || x >
int.MaxValue || x != Math.Truncate(x) ||
51 M.SetElement((
int)x, (
int)y, Value);
73 if (!(ColIndex.
AssociatedObjectValue is
double x) || x < 0 || x >
int.MaxValue || x != Math.Truncate(x) ||
81 M.SetElement((
int)x, (
int)y, Value);
Script runtime exception.
Class managing a script expression.
ScriptNode RightOperand
Right operand.
ScriptNode LeftOperand
Left operand.
ScriptNode right
Right operand.
ScriptNode left
Left operand.
bool isAsync
If subtree is asynchroneous.
Base class for all quaternary operators.
ScriptNode middle2
Second Middle operand.
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.
abstract IElement Evaluate(Variables Variables)
Evaluates the node, using the variables provided in the Variables collection. This method should be ...
virtual Task< IElement > EvaluateAsync(Variables Variables)
Evaluates the node, using the variables provided in the Variables collection. This method should be ...
ScriptNode middle
Middle operand.
ScriptNode MiddleOperand
Middle operand.
Matrix Index Assignment operator.
override IElement Evaluate(Variables Variables)
Evaluates the node, using the variables provided in the Variables collection.
MatrixIndexAssignment(MatrixIndex MatrixIndex, ScriptNode Operand, int Start, int Length, Expression Expression)
Matrix Index Assignment operator.
override async Task< IElement > EvaluateAsync(Variables Variables)
Evaluates the node, using the variables provided in the Variables collection.
Basic interface for all types of elements.
object AssociatedObjectValue
Associated object value.
Basic interface for matrices.