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