Package erjang.beam

Examples of erjang.beam.FunctionVisitor


  public void declare(ModuleVisitor mv) {
    mv.declareFunction(sig.fun, sig.arity, sig.label);
  }
 
  public void accept(ModuleVisitor mv) {
    FunctionVisitor fv =
      mv.visitFunction(sig.fun, sig.arity, sig.label);
    accept(fv);
  }
View Full Code Here

TOP

Related Classes of erjang.beam.FunctionVisitor

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.