Package fr.insalyon.citi.golo.compiler.ir

Examples of fr.insalyon.citi.golo.compiler.ir.IrTreeDumper


    }
  }

  private static void dumpIRs(List<String> files) {
    GoloCompiler compiler = new GoloCompiler();
    IrTreeDumper dumper = new IrTreeDumper();
    for (String file : files) {
      dumpIR(file, compiler, dumper);
    }
  }
View Full Code Here


      println();
    }
  }

  private void dump(GoloModule module) {
    module.accept(new IrTreeDumper());
  }
View Full Code Here

TOP

Related Classes of fr.insalyon.citi.golo.compiler.ir.IrTreeDumper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.