Exemplo n.º 1
0
 public TranspilerFactory()
 {
     transpilers   = new List <ITranspiler>();
     GetTranspiler = Transpiler;
 }
 public TranspilerFactory(string name)
 {
     Name          = name;
     transpilers   = new List <ITranspiler>();
     GetTranspiler = Transpiler;
 }