public class org.objectweb.asm.tree.TableSwitchInsnNode 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.TableSwitchInsnNode
  super_class: org.objectweb.asm.tree.AbstractInsnNode
{
  public int min;
    descriptor: I
    flags: (0x0001) ACC_PUBLIC

  public int max;
    descriptor: I
    flags: (0x0001) ACC_PUBLIC

  public org.objectweb.asm.tree.LabelNode dflt;
    descriptor: Lorg/objectweb/asm/tree/LabelNode;
    flags: (0x0001) ACC_PUBLIC

  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>(int, int, org.objectweb.asm.tree.LabelNode, org.objectweb.asm.tree.LabelNode[]);
    descriptor: (IILorg/objectweb/asm/tree/LabelNode;[Lorg/objectweb/asm/tree/LabelNode;)V
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // org.objectweb.asm.tree.TableSwitchInsnNode this
        start local 1 // int min
        start local 2 // int max
        start local 3 // org.objectweb.asm.tree.LabelNode dflt
        start local 4 // org.objectweb.asm.tree.LabelNode[] labels
         0: .line 84
            aload 0 /* this */
            sipush 170
            invokespecial org.objectweb.asm.tree.AbstractInsnNode.<init>:(I)V
         1: .line 85
            aload 0 /* this */
            iload 1 /* min */
            putfield org.objectweb.asm.tree.TableSwitchInsnNode.min:I
         2: .line 86
            aload 0 /* this */
            iload 2 /* max */
            putfield org.objectweb.asm.tree.TableSwitchInsnNode.max:I
         3: .line 87
            aload 0 /* this */
            aload 3 /* dflt */
            putfield org.objectweb.asm.tree.TableSwitchInsnNode.dflt:Lorg/objectweb/asm/tree/LabelNode;
         4: .line 88
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.objectweb.asm.tree.TableSwitchInsnNode.labels:Ljava/util/List;
         5: .line 89
            aload 4 /* labels */
            ifnull 7
         6: .line 90
            aload 0 /* this */
            getfield org.objectweb.asm.tree.TableSwitchInsnNode.labels:Ljava/util/List;
            aload 4 /* labels */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            pop
         7: .line 92
      StackMap locals: org.objectweb.asm.tree.TableSwitchInsnNode int int org.objectweb.asm.tree.LabelNode org.objectweb.asm.tree.LabelNode[]
      StackMap stack:
            return
        end local 4 // org.objectweb.asm.tree.LabelNode[] labels
        end local 3 // org.objectweb.asm.tree.LabelNode dflt
        end local 2 // int max
        end local 1 // int min
        end local 0 // org.objectweb.asm.tree.TableSwitchInsnNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/objectweb/asm/tree/TableSwitchInsnNode;
            0    8     1     min  I
            0    8     2     max  I
            0    8     3    dflt  Lorg/objectweb/asm/tree/LabelNode;
            0    8     4  labels  [Lorg/objectweb/asm/tree/LabelNode;
    MethodParameters:
        Name  Flags
      min     final
      max     final
      dflt    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.TableSwitchInsnNode this
         0: .line 96
            bipush 11
            ireturn
        end local 0 // org.objectweb.asm.tree.TableSwitchInsnNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/tree/TableSwitchInsnNode;

  public void accept(org.objectweb.asm.MethodVisitor);
    descriptor: (Lorg/objectweb/asm/MethodVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.objectweb.asm.tree.TableSwitchInsnNode this
        start local 1 // org.objectweb.asm.MethodVisitor mv
         0: .line 101
            aload 0 /* this */
            getfield org.objectweb.asm.tree.TableSwitchInsnNode.labels:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            anewarray org.objectweb.asm.Label
            astore 2 /* labels */
        start local 2 // org.objectweb.asm.Label[] labels
         1: .line 102
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 103
      StackMap locals: org.objectweb.asm.Label[] int
      StackMap stack:
            aload 2 /* labels */
            iload 3 /* i */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.TableSwitchInsnNode.labels:Ljava/util/List;
            iload 3 /* 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
         4: .line 102
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            aload 2 /* labels */
            arraylength
            if_icmplt 3
        end local 3 // int i
         6: .line 105
            aload 1 /* mv */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.TableSwitchInsnNode.min:I
            aload 0 /* this */
            getfield org.objectweb.asm.tree.TableSwitchInsnNode.max:I
            aload 0 /* this */
            getfield org.objectweb.asm.tree.TableSwitchInsnNode.dflt:Lorg/objectweb/asm/tree/LabelNode;
            invokevirtual org.objectweb.asm.tree.LabelNode.getLabel:()Lorg/objectweb/asm/Label;
            aload 2 /* labels */
            invokevirtual org.objectweb.asm.MethodVisitor.visitTableSwitchInsn:(IILorg/objectweb/asm/Label;[Lorg/objectweb/asm/Label;)V
         7: .line 106
            return
        end local 2 // org.objectweb.asm.Label[] labels
        end local 1 // org.objectweb.asm.MethodVisitor mv
        end local 0 // org.objectweb.asm.tree.TableSwitchInsnNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/objectweb/asm/tree/TableSwitchInsnNode;
            0    8     1      mv  Lorg/objectweb/asm/MethodVisitor;
            1    8     2  labels  [Lorg/objectweb/asm/Label;
            2    6     3       i  I
    MethodParameters:
      Name  Flags
      mv    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=7, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.TableSwitchInsnNode this
        start local 1 // java.util.Map labels
         0: .line 110
            new org.objectweb.asm.tree.TableSwitchInsnNode
            dup
            aload 0 /* this */
            getfield org.objectweb.asm.tree.TableSwitchInsnNode.min:I
            aload 0 /* this */
            getfield org.objectweb.asm.tree.TableSwitchInsnNode.max:I
            aload 0 /* this */
            getfield org.objectweb.asm.tree.TableSwitchInsnNode.dflt:Lorg/objectweb/asm/tree/LabelNode;
            aload 1 /* labels */
            invokestatic org.objectweb.asm.tree.TableSwitchInsnNode.clone:(Lorg/objectweb/asm/tree/LabelNode;Ljava/util/Map;)Lorg/objectweb/asm/tree/LabelNode;
         1: .line 111
            aload 0 /* this */
            getfield org.objectweb.asm.tree.TableSwitchInsnNode.labels:Ljava/util/List;
            aload 1 /* labels */
         2: .line 110
            invokestatic org.objectweb.asm.tree.TableSwitchInsnNode.clone:(Ljava/util/List;Ljava/util/Map;)[Lorg/objectweb/asm/tree/LabelNode;
            invokespecial org.objectweb.asm.tree.TableSwitchInsnNode.<init>:(IILorg/objectweb/asm/tree/LabelNode;[Lorg/objectweb/asm/tree/LabelNode;)V
            areturn
        end local 1 // java.util.Map labels
        end local 0 // org.objectweb.asm.tree.TableSwitchInsnNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/objectweb/asm/tree/TableSwitchInsnNode;
            0    3     1  labels  Ljava/util/Map<Lorg/objectweb/asm/tree/LabelNode;Lorg/objectweb/asm/tree/LabelNode;>;
    Signature: (Ljava/util/Map<Lorg/objectweb/asm/tree/LabelNode;Lorg/objectweb/asm/tree/LabelNode;>;)Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
        Name  Flags
      labels  final
}
SourceFile: "TableSwitchInsnNode.java"