Exemplo n.º 1
0
 /// <summary>
 /// Make yourself equivalent to the passed source.
 /// </summary>
 /// <param name="other"></param>
 internal void Copyfrom(TextSource other)
 {
     ClientRuns  = other.ClientRuns;
     Runs        = other.Runs;
     Interpreter = other.Interpreter;
 }
Exemplo n.º 2
0
 public TextSource(List <IClientRun> runs, OrcInterpreter interpreter)
 {
     ClientRuns  = runs;
     Interpreter = interpreter;
 }