1using System.Threading.Tasks;
72 return Task.FromResult(this.
Evaluate(Variables));
Base class for all types of elements.
An interative evaluator of a leaf script node.
LeafIterativeEvaluator(ScriptLeafNode Node)
An interative evaluator of a leaf script node.
abstract IElement Evaluate(Variables Variables)
Evaluates the evaluator, using the variables provided in the Variables collection and an object inst...
virtual Task< IElement > EvaluateAsync(Variables Variables)
Evaluates the evaluator, using the variables provided in the Variables collection and an object inst...
virtual bool UsesElement
If the evaluator uses the current element in its aggregate evaluation.
abstract IElement GetAggregatedResult()
Gets the aggregated result.
virtual bool IsAsynchronous
If the evaluator include asynchronous evaluation. Asynchronous evaluators should be evaluated using E...
abstract void AggregateElement(IElement Element)
Aggregates one new element.
abstract void RestartEvaluator()
Restarts the evaluator.
ScriptLeafNode Node
Node being evaluated.
Base class for leaf nodes in a parsed script tree.
Basic interface for all types of elements.
An interative evaluator of a function supporting the IIterativeEvaluation interface.