Package erjang.beam.repr

Examples of erjang.beam.repr.ModuleRepr.rewrite()


  public ErjangBeamDisLoader() { }

  @Override
  public BeamFileData load(File file) throws IOException {
    ModuleRepr mod = BeamLoader.read(file.getAbsolutePath());
    mod.rewrite(new Rewriter());
    return mod;
  }

  @Override
  public BeamFileData load(byte[] data) throws IOException {
View Full Code Here


  }

  @Override
  public BeamFileData load(byte[] data) throws IOException {
    ModuleRepr mod = BeamLoader.parse(data);
    mod.rewrite(new Rewriter());
    return mod;
  }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.