Exemplo n.º 1
0
 public StatementGenerator(Random random)
 {
     _random     = random;
     _expression = new ExpressionGenerator(random);
     _variable   = new VariableNameGenerator(random);
     _statements = new StatementListGenerator(random, 5);
 }
Exemplo n.º 2
0
 public LineGenerator(Random random)
 {
     _statements = new StatementListGenerator(random, 10);
 }