Exemplo n.º 1
0
 public Productions(Production pr, Productions tail) : this(pr)
 {
     productions.AddRange(tail.productions);
 }
 public GrammarRule(string name, Productions pr) : base(name, pr)
 {
 }
Exemplo n.º 3
0
 public Rule(string name, Productions pr)
 {
     this.name   = name;
     productions = pr;
 }