Пример #1
0
 public static Program CloneProgram(Program program)
 {
     var cloner = new Cloner();
     var moduleDecl = new LiteralModuleDecl(cloner.CloneModuleDefinition(program.DefaultModuleDef, program.Name), null);
     return new Program(program.FullName, moduleDecl, program.BuiltIns, new InvisibleErrorReporter());
 }