public class org.objectweb.asm.tree.LookupSwitchInsnNode extends org.objectweb.asm.tree.AbstractInsnNode
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.objectweb.asm.tree.LookupSwitchInsnNode
  super_class: org.objectweb.asm.tree.AbstractInsnNode
{
  public org.objectweb.asm.tree.LabelNode dflt;
    descriptor: Lorg/objectweb/asm/tree/LabelNode;
    flags: (0x0001) ACC_PUBLIC

  public java.util.List<java.lang.Integer> keys;
    descriptor: Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Signature: Ljava/util/List<Ljava/lang/Integer;>;

  public java.util.List<org.objectweb.asm.tree.LabelNode> labels;
    descriptor: Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Signature: Ljava/util/List<Lorg/objectweb/asm/tree/LabelNode;>;

  public void <init>(org.objectweb.asm.tree.LabelNode, int[], org.objectweb.asm.tree.LabelNode[]);
    descriptor: (Lorg/objectweb/asm/tree/LabelNode;[I[Lorg/objectweb/asm/tree/LabelNode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.objectweb.asm.tree.LookupSwitchInsnNode this
        start local 1 // org.objectweb.asm.tree.LabelNode dflt
        start local 2 // int[] keys
        start local 3 // org.objectweb.asm.tree.LabelNode[] labels
         0: .line 61
            aload 0 /* this */
            sipush 171
            invokespecial org.objectweb.asm.tree.AbstractInsnNode.<init>:(I)V
         1: .line 62
            aload 0 /* this */
            aload 1 /* dflt */
            putfield org.objectweb.asm.tree.LookupSwitchInsnNode.dflt:Lorg/objectweb/asm/tree/LabelNode;
         2: .line 63
            aload 0 /* this */
            aload 2 /* keys */
            invokestatic org.objectweb.asm.tree.Util.asArrayList:([I)Ljava/util/List;
            putfield org.objectweb.asm.tree.LookupSwitchInsnNode.keys:Ljava/util/List;
         3: .line 64
            aload 0 /* this */
            aload 3 /* labels */
            invokestatic org.objectweb.asm.tree.Util.asArrayList:([Ljava/lang/Object;)Ljava/util/List;
            putfield org.objectweb.asm.tree.LookupSwitchInsnNode.labels:Ljava/util/List;
         4: .line 65
            return
        end local 3 // org.objectweb.asm.tree.LabelNode[] labels
        end local 2 // int[] keys
        end local 1 // org.objectweb.asm.tree.LabelNode dflt
        end local 0 // org.objectweb.asm.tree.LookupSwitchInsnNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/objectweb/asm/tree/LookupSwitchInsnNode;
            0    5     1    dflt  Lorg/objectweb/asm/tree/LabelNode;
            0    5     2    keys  [I
            0    5     3  labels  [Lorg/objectweb/asm/tree/LabelNode;
    MethodParameters:
        Name  Flags
      dflt    final
      keys    final
      labels  final

  public int getType();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.objectweb.asm.tree.LookupSwitchInsnNode this
         0: .line 69
            bipush 12
            ireturn
        end local 0 // org.objectweb.asm.tree.LookupSwitchInsnNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/tree/LookupSwitchInsnNode;

  public void accept(org.objectweb.asm.MethodVisitor);
    descriptor: (Lorg/objectweb/asm/MethodVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // org.objectweb.asm.tree.LookupSwitchInsnNode this
        start local 1 // org.objectweb.asm.MethodVisitor methodVisitor
         0: .line 74
            aload 0 /* this */
            getfield org.objectweb.asm.tree.LookupSwitchInsnNode.keys:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            newarray 10
            astore 2 /* keysArray */
        start local 2 // int[] keysArray
         1: .line 75
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: aload 2 /* keysArray */
            arraylength
            istore 4 /* n */
        start local 4 // int n
         3: goto 6
         4: .line 76
      StackMap locals: int[] int int
      StackMap stack:
            aload 2 /* keysArray */
            iload 3 /* i */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.LookupSwitchInsnNode.keys:Ljava/util/List;
            iload 3 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            iastore
         5: .line 75
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            iload 4 /* n */
            if_icmplt 4
        end local 4 // int n
        end local 3 // int i
         7: .line 78
            aload 0 /* this */
            getfield org.objectweb.asm.tree.LookupSwitchInsnNode.labels:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            anewarray org.objectweb.asm.Label
            astore 3 /* labelsArray */
        start local 3 // org.objectweb.asm.Label[] labelsArray
         8: .line 79
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         9: aload 3 /* labelsArray */
            arraylength
            istore 5 /* n */
        start local 5 // int n
        10: goto 13
        11: .line 80
      StackMap locals: org.objectweb.asm.tree.LookupSwitchInsnNode org.objectweb.asm.MethodVisitor int[] org.objectweb.asm.Label[] int int
      StackMap stack:
            aload 3 /* labelsArray */
            iload 4 /* i */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.LookupSwitchInsnNode.labels:Ljava/util/List;
            iload 4 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.objectweb.asm.tree.LabelNode
            invokevirtual org.objectweb.asm.tree.LabelNode.getLabel:()Lorg/objectweb/asm/Label;
            aastore
        12: .line 79
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 4 /* i */
            iload 5 /* n */
            if_icmplt 11
        end local 5 // int n
        end local 4 // int i
        14: .line 82
            aload 1 /* methodVisitor */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.LookupSwitchInsnNode.dflt:Lorg/objectweb/asm/tree/LabelNode;
            invokevirtual org.objectweb.asm.tree.LabelNode.getLabel:()Lorg/objectweb/asm/Label;
            aload 2 /* keysArray */
            aload 3 /* labelsArray */
            invokevirtual org.objectweb.asm.MethodVisitor.visitLookupSwitchInsn:(Lorg/objectweb/asm/Label;[I[Lorg/objectweb/asm/Label;)V
        15: .line 83
            aload 0 /* this */
            aload 1 /* methodVisitor */
            invokevirtual org.objectweb.asm.tree.LookupSwitchInsnNode.acceptAnnotations:(Lorg/objectweb/asm/MethodVisitor;)V
        16: .line 84
            return
        end local 3 // org.objectweb.asm.Label[] labelsArray
        end local 2 // int[] keysArray
        end local 1 // org.objectweb.asm.MethodVisitor methodVisitor
        end local 0 // org.objectweb.asm.tree.LookupSwitchInsnNode this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   17     0           this  Lorg/objectweb/asm/tree/LookupSwitchInsnNode;
            0   17     1  methodVisitor  Lorg/objectweb/asm/MethodVisitor;
            1   17     2      keysArray  [I
            2    7     3              i  I
            3    7     4              n  I
            8   17     3    labelsArray  [Lorg/objectweb/asm/Label;
            9   14     4              i  I
           10   14     5              n  I
    MethodParameters:
               Name  Flags
      methodVisitor  final

  public org.objectweb.asm.tree.AbstractInsnNode clone(java.util.Map<org.objectweb.asm.tree.LabelNode, org.objectweb.asm.tree.LabelNode>);
    descriptor: (Ljava/util/Map;)Lorg/objectweb/asm/tree/AbstractInsnNode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.objectweb.asm.tree.LookupSwitchInsnNode this
        start local 1 // java.util.Map clonedLabels
         0: .line 89
            new org.objectweb.asm.tree.LookupSwitchInsnNode
            dup
            aload 0 /* this */
            getfield org.objectweb.asm.tree.LookupSwitchInsnNode.dflt:Lorg/objectweb/asm/tree/LabelNode;
            aload 1 /* clonedLabels */
            invokestatic org.objectweb.asm.tree.LookupSwitchInsnNode.clone:(Lorg/objectweb/asm/tree/LabelNode;Ljava/util/Map;)Lorg/objectweb/asm/tree/LabelNode;
            aconst_null
            aload 0 /* this */
            getfield org.objectweb.asm.tree.LookupSwitchInsnNode.labels:Ljava/util/List;
            aload 1 /* clonedLabels */
            invokestatic org.objectweb.asm.tree.LookupSwitchInsnNode.clone:(Ljava/util/List;Ljava/util/Map;)[Lorg/objectweb/asm/tree/LabelNode;
            invokespecial org.objectweb.asm.tree.LookupSwitchInsnNode.<init>:(Lorg/objectweb/asm/tree/LabelNode;[I[Lorg/objectweb/asm/tree/LabelNode;)V
         1: .line 88
            astore 2 /* clone */
        start local 2 // org.objectweb.asm.tree.LookupSwitchInsnNode clone
         2: .line 90
            aload 2 /* clone */
            getfield org.objectweb.asm.tree.LookupSwitchInsnNode.keys:Ljava/util/List;
            aload 0 /* this */
            getfield org.objectweb.asm.tree.LookupSwitchInsnNode.keys:Ljava/util/List;
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            pop
         3: .line 91
            aload 2 /* clone */
            aload 0 /* this */
            invokevirtual org.objectweb.asm.tree.LookupSwitchInsnNode.cloneAnnotations:(Lorg/objectweb/asm/tree/AbstractInsnNode;)Lorg/objectweb/asm/tree/AbstractInsnNode;
            areturn
        end local 2 // org.objectweb.asm.tree.LookupSwitchInsnNode clone
        end local 1 // java.util.Map clonedLabels
        end local 0 // org.objectweb.asm.tree.LookupSwitchInsnNode this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    4     0          this  Lorg/objectweb/asm/tree/LookupSwitchInsnNode;
            0    4     1  clonedLabels  Ljava/util/Map<Lorg/objectweb/asm/tree/LabelNode;Lorg/objectweb/asm/tree/LabelNode;>;
            2    4     2         clone  Lorg/objectweb/asm/tree/LookupSwitchInsnNode;
    Signature: (Ljava/util/Map<Lorg/objectweb/asm/tree/LabelNode;Lorg/objectweb/asm/tree/LabelNode;>;)Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
              Name  Flags
      clonedLabels  final
}
SourceFile: "LookupSwitchInsnNode.java"