Examples of newLocal()


Examples of org.objectweb.asm.commons.GeneratorAdapter.newLocal()

    ga.visitTryCatchBlock(beginTry, endTry, endTry2, type.getInternalName());
    ga.visitLabel(endTry);
    l5 = new Label();
    ga.visitJumpInsn(GOTO, l5);
    ga.visitLabel(endTry2);
    int lThrow = ga.newLocal(type);
    ga.storeLocal(lThrow);
    //mv.visitVarInsn(ASTORE, 1);
    l6 = new Label();
    ga.visitLabel(l6);
    return lThrow;
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.