Package erjang.beam.repr

Examples of erjang.beam.repr.FunctionRepr


      } else if (insn.opcode() == BeamOpcode.int_code_end) {
        newFI = new FunctionInfo(null,null,-1,-1); // Easy way to handle last function
      }
      if (newFI != null && newFI != fi) { // Do switch
        if (fi != null) { // Add previous
          FunctionRepr fun = new FunctionRepr(fi, currentFunctionBody);
          functions.add(fun);
        }
        fi = newFI;
        currentFunctionBody = new ArrayList<Insn>();
      }
View Full Code Here

TOP

Related Classes of erjang.beam.repr.FunctionRepr

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.