Package erjang.beam

Examples of erjang.beam.BlockVisitor.visitInsn()


    for (Insn insn : body) {
      if (insn.opcode == BeamOpcode.label) {
        if (bv != null) bv.visitEnd();
        bv = fv.visitLabeledBlock(((Insn.I)insn).i1);
      } else {
        bv.visitInsn(insn);
      }
    }
    if (bv != null) bv.visitEnd();
    fv.visitEnd();
  }
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.