예제 #1
0
 public Production(string name, params StackItemPattern[] pattern)
 {
     Name       = name;
     Pattern    = pattern;
     FirstState = new StateProduction(this, 0);
 }
예제 #2
0
 public StateProduction(Production production, int index = 0)
 {
     Production = production;
     Index      = index;
     _Next      = null;
 }