public class jdk.internal.org.objectweb.asm.tree.JumpInsnNode extends jdk.internal.org.objectweb.asm.tree.AbstractInsnNode
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: jdk.internal.org.objectweb.asm.tree.JumpInsnNode
  super_class: jdk.internal.org.objectweb.asm.tree.AbstractInsnNode
{
  public jdk.internal.org.objectweb.asm.tree.LabelNode label;
    descriptor: Ljdk/internal/org/objectweb/asm/tree/LabelNode;
    flags: (0x0001) ACC_PUBLIC

  public void <init>(int, jdk.internal.org.objectweb.asm.tree.LabelNode);
    descriptor: (ILjdk/internal/org/objectweb/asm/tree/LabelNode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // jdk.internal.org.objectweb.asm.tree.JumpInsnNode this
        start local 1 // int opcode
        start local 2 // jdk.internal.org.objectweb.asm.tree.LabelNode label
         0: .line 88
            aload 0 /* this */
            iload 1 /* opcode */
            invokespecial jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.<init>:(I)V
         1: .line 89
            aload 0 /* this */
            aload 2 /* label */
            putfield jdk.internal.org.objectweb.asm.tree.JumpInsnNode.label:Ljdk/internal/org/objectweb/asm/tree/LabelNode;
         2: .line 90
            return
        end local 2 // jdk.internal.org.objectweb.asm.tree.LabelNode label
        end local 1 // int opcode
        end local 0 // jdk.internal.org.objectweb.asm.tree.JumpInsnNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Ljdk/internal/org/objectweb/asm/tree/JumpInsnNode;
            0    3     1  opcode  I
            0    3     2   label  Ljdk/internal/org/objectweb/asm/tree/LabelNode;
    MethodParameters:
        Name  Flags
      opcode  final
      label   final

  public void setOpcode(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.internal.org.objectweb.asm.tree.JumpInsnNode this
        start local 1 // int opcode
         0: .line 100
            aload 0 /* this */
            iload 1 /* opcode */
            putfield jdk.internal.org.objectweb.asm.tree.JumpInsnNode.opcode:I
         1: .line 101
            return
        end local 1 // int opcode
        end local 0 // jdk.internal.org.objectweb.asm.tree.JumpInsnNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Ljdk/internal/org/objectweb/asm/tree/JumpInsnNode;
            0    2     1  opcode  I
    MethodParameters:
        Name  Flags
      opcode  final

  public int getType();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.internal.org.objectweb.asm.tree.JumpInsnNode this
         0: .line 105
            bipush 7
            ireturn
        end local 0 // jdk.internal.org.objectweb.asm.tree.JumpInsnNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/org/objectweb/asm/tree/JumpInsnNode;

  public void accept(jdk.internal.org.objectweb.asm.MethodVisitor);
    descriptor: (Ljdk/internal/org/objectweb/asm/MethodVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // jdk.internal.org.objectweb.asm.tree.JumpInsnNode this
        start local 1 // jdk.internal.org.objectweb.asm.MethodVisitor methodVisitor
         0: .line 110
            aload 1 /* methodVisitor */
            aload 0 /* this */
            getfield jdk.internal.org.objectweb.asm.tree.JumpInsnNode.opcode:I
            aload 0 /* this */
            getfield jdk.internal.org.objectweb.asm.tree.JumpInsnNode.label:Ljdk/internal/org/objectweb/asm/tree/LabelNode;
            invokevirtual jdk.internal.org.objectweb.asm.tree.LabelNode.getLabel:()Ljdk/internal/org/objectweb/asm/Label;
            invokevirtual jdk.internal.org.objectweb.asm.MethodVisitor.visitJumpInsn:(ILjdk/internal/org/objectweb/asm/Label;)V
         1: .line 111
            aload 0 /* this */
            aload 1 /* methodVisitor */
            invokevirtual jdk.internal.org.objectweb.asm.tree.JumpInsnNode.acceptAnnotations:(Ljdk/internal/org/objectweb/asm/MethodVisitor;)V
         2: .line 112
            return
        end local 1 // jdk.internal.org.objectweb.asm.MethodVisitor methodVisitor
        end local 0 // jdk.internal.org.objectweb.asm.tree.JumpInsnNode this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Ljdk/internal/org/objectweb/asm/tree/JumpInsnNode;
            0    3     1  methodVisitor  Ljdk/internal/org/objectweb/asm/MethodVisitor;
    MethodParameters:
               Name  Flags
      methodVisitor  final

  public jdk.internal.org.objectweb.asm.tree.AbstractInsnNode clone(java.util.Map<jdk.internal.org.objectweb.asm.tree.LabelNode, jdk.internal.org.objectweb.asm.tree.LabelNode>);
    descriptor: (Ljava/util/Map;)Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // jdk.internal.org.objectweb.asm.tree.JumpInsnNode this
        start local 1 // java.util.Map clonedLabels
         0: .line 116
            new jdk.internal.org.objectweb.asm.tree.JumpInsnNode
            dup
            aload 0 /* this */
            getfield jdk.internal.org.objectweb.asm.tree.JumpInsnNode.opcode:I
            aload 0 /* this */
            getfield jdk.internal.org.objectweb.asm.tree.JumpInsnNode.label:Ljdk/internal/org/objectweb/asm/tree/LabelNode;
            aload 1 /* clonedLabels */
            invokestatic jdk.internal.org.objectweb.asm.tree.JumpInsnNode.clone:(Ljdk/internal/org/objectweb/asm/tree/LabelNode;Ljava/util/Map;)Ljdk/internal/org/objectweb/asm/tree/LabelNode;
            invokespecial jdk.internal.org.objectweb.asm.tree.JumpInsnNode.<init>:(ILjdk/internal/org/objectweb/asm/tree/LabelNode;)V
            aload 0 /* this */
            invokevirtual jdk.internal.org.objectweb.asm.tree.JumpInsnNode.cloneAnnotations:(Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;)Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;
            areturn
        end local 1 // java.util.Map clonedLabels
        end local 0 // jdk.internal.org.objectweb.asm.tree.JumpInsnNode this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Ljdk/internal/org/objectweb/asm/tree/JumpInsnNode;
            0    1     1  clonedLabels  Ljava/util/Map<Ljdk/internal/org/objectweb/asm/tree/LabelNode;Ljdk/internal/org/objectweb/asm/tree/LabelNode;>;
    Signature: (Ljava/util/Map<Ljdk/internal/org/objectweb/asm/tree/LabelNode;Ljdk/internal/org/objectweb/asm/tree/LabelNode;>;)Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
              Name  Flags
      clonedLabels  final
}
SourceFile: "JumpInsnNode.java"