This commit is contained in:
地平线
2015-08-13 11:36:49 +08:00
parent 130a3b2106
commit ab65a49a0a

View File

@@ -65,7 +65,7 @@ public class DebugMethodVisitor {
if (debug) System.out.println("mv.visitVarInsn(" + opcodes[opcode] + ", " + var + ");");
}
public void visitJumpInsn(int opcode, Label var) {
public void visitJumpInsn(int opcode, Label var) { //调用次方法的 ClassWriter 必须由 COMPUTE_FRAMES 构建
visitor.visitJumpInsn(opcode, var);
if (debug) {
Integer index = labels.get(var);