ExecutionSet.cs 284 B

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