public void Reset() { executingGraphNode = null; nodeIterations = new List<AssociativeGraph.GraphNode>(); functionCallArguments = new List<StackValue>(); functionCallDotCallDimensions = new List<StackValue>(); updateStatus = AssociativeEngine.UpdateStatus.kNormalUpdate; }
public InterpreterProperties(InterpreterProperties rhs) { executingGraphNode = rhs.executingGraphNode; nodeIterations = rhs.nodeIterations; functionCallArguments = rhs.functionCallArguments; functionCallDotCallDimensions = rhs.functionCallDotCallDimensions; updateStatus = rhs.updateStatus; }