5using System.Threading.Tasks;
Static interface for database persistence. In order to work, a database provider has to be assigned t...
static async Task InsertLazy(object Object)
Inserts an object into the database, if unlocked. If locked, object will be inserted at next opportun...
Class managing a script expression.
Base class for funcions of one scalar variable.
ScriptNode Argument
Function argument.
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.
Saves an object to the object database.
override IElement EvaluateScalar(IElement Argument, Variables Variables)
Evaluates the function on a scalar argument.
override bool IsAsynchronous
If the node (or its decendants) include asynchronous evaluation. Asynchronous nodes should be evaluat...
override async Task< IElement > EvaluateScalarAsync(IElement Argument, Variables Variables)
Evaluates the function on a scalar argument.
override string[] DefaultArgumentNames
Default Argument names
override string FunctionName
Name of the function
SaveNewObject(ScriptNode Argument, int Start, int Length, Expression Expression)
Saves an object to the object database.
Basic interface for all types of elements.