ExecutionSet.cs 400 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. using NTERA.Engine.Compiler;
  3. namespace NTERA.Engine.Runtime
  4. {
  5. public class ExecutionSet
  6. {
  7. public VariableDictionary LocalVariables { get; set; }
  8. public VariableDictionary GlobalVariables { get; set; }
  9. public FunctionDefinition SelfDefinition { get; set; }
  10. public IList<ExecutionNode> Nodes { get; set; }
  11. public int Position { get; set; } = 0;
  12. }
  13. }