public abstract class org.objectweb.asm.tree.AbstractInsnNode
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.objectweb.asm.tree.AbstractInsnNode
  super_class: java.lang.Object
{
  public static final int INSN;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final int INT_INSN;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final int VAR_INSN;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  public static final int TYPE_INSN;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 3

  public static final int FIELD_INSN;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 4

  public static final int METHOD_INSN;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 5

  public static final int INVOKE_DYNAMIC_INSN;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 6

  public static final int JUMP_INSN;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 7

  public static final int LABEL;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 8

  public static final int LDC_INSN;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 9

  public static final int IINC_INSN;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 10

  public static final int TABLESWITCH_INSN;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 11

  public static final int LOOKUPSWITCH_INSN;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 12

  public static final int MULTIANEWARRAY_INSN;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 13

  public static final int FRAME;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 14

  public static final int LINE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 15

  protected int opcode;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

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

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

  org.objectweb.asm.tree.AbstractInsnNode previousInsn;
    descriptor: Lorg/objectweb/asm/tree/AbstractInsnNode;
    flags: (0x0000) 

  org.objectweb.asm.tree.AbstractInsnNode nextInsn;
    descriptor: Lorg/objectweb/asm/tree/AbstractInsnNode;
    flags: (0x0000) 

  int index;
    descriptor: I
    flags: (0x0000) 

  protected void <init>(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.AbstractInsnNode this
        start local 1 // int opcode
         0: .line 126
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 127
            aload 0 /* this */
            iload 1 /* opcode */
            putfield org.objectweb.asm.tree.AbstractInsnNode.opcode:I
         2: .line 128
            aload 0 /* this */
            iconst_m1
            putfield org.objectweb.asm.tree.AbstractInsnNode.index:I
         3: .line 129
            return
        end local 1 // int opcode
        end local 0 // org.objectweb.asm.tree.AbstractInsnNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/objectweb/asm/tree/AbstractInsnNode;
            0    4     1  opcode  I
    MethodParameters:
        Name  Flags
      opcode  final

  public int getOpcode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.objectweb.asm.tree.AbstractInsnNode this
         0: .line 137
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AbstractInsnNode.opcode:I
            ireturn
        end local 0 // org.objectweb.asm.tree.AbstractInsnNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/tree/AbstractInsnNode;

  public abstract int getType();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public org.objectweb.asm.tree.AbstractInsnNode getPrevious();
    descriptor: ()Lorg/objectweb/asm/tree/AbstractInsnNode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.objectweb.asm.tree.AbstractInsnNode this
         0: .line 154
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            areturn
        end local 0 // org.objectweb.asm.tree.AbstractInsnNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/tree/AbstractInsnNode;

  public org.objectweb.asm.tree.AbstractInsnNode getNext();
    descriptor: ()Lorg/objectweb/asm/tree/AbstractInsnNode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.objectweb.asm.tree.AbstractInsnNode this
         0: .line 164
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Lorg/objectweb/asm/tree/AbstractInsnNode;
            areturn
        end local 0 // org.objectweb.asm.tree.AbstractInsnNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/tree/AbstractInsnNode;

  public abstract void accept(org.objectweb.asm.MethodVisitor);
    descriptor: (Lorg/objectweb/asm/MethodVisitor;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
               Name  Flags
      methodVisitor  

  protected final void acceptAnnotations(org.objectweb.asm.MethodVisitor);
    descriptor: (Lorg/objectweb/asm/MethodVisitor;)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // org.objectweb.asm.tree.AbstractInsnNode this
        start local 1 // org.objectweb.asm.MethodVisitor methodVisitor
         0: .line 180
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AbstractInsnNode.visibleTypeAnnotations:Ljava/util/List;
            ifnull 12
         1: .line 181
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: aload 0 /* this */
            getfield org.objectweb.asm.tree.AbstractInsnNode.visibleTypeAnnotations:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            istore 3 /* n */
        start local 3 // int n
         3: goto 11
         4: .line 182
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AbstractInsnNode.visibleTypeAnnotations:Ljava/util/List;
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.objectweb.asm.tree.TypeAnnotationNode
            astore 4 /* typeAnnotation */
        start local 4 // org.objectweb.asm.tree.TypeAnnotationNode typeAnnotation
         5: .line 183
            aload 4 /* typeAnnotation */
         6: .line 184
            aload 1 /* methodVisitor */
         7: .line 185
            aload 4 /* typeAnnotation */
            getfield org.objectweb.asm.tree.TypeAnnotationNode.typeRef:I
            aload 4 /* typeAnnotation */
            getfield org.objectweb.asm.tree.TypeAnnotationNode.typePath:Lorg/objectweb/asm/TypePath;
            aload 4 /* typeAnnotation */
            getfield org.objectweb.asm.tree.TypeAnnotationNode.desc:Ljava/lang/String;
            iconst_1
         8: .line 184
            invokevirtual org.objectweb.asm.MethodVisitor.visitInsnAnnotation:(ILorg/objectweb/asm/TypePath;Ljava/lang/String;Z)Lorg/objectweb/asm/AnnotationVisitor;
         9: .line 183
            invokevirtual org.objectweb.asm.tree.TypeAnnotationNode.accept:(Lorg/objectweb/asm/AnnotationVisitor;)V
        end local 4 // org.objectweb.asm.tree.TypeAnnotationNode typeAnnotation
        10: .line 181
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 2 /* i */
            iload 3 /* n */
            if_icmplt 4
        end local 3 // int n
        end local 2 // int i
        12: .line 188
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AbstractInsnNode.invisibleTypeAnnotations:Ljava/util/List;
            ifnull 24
        13: .line 189
            iconst_0
            istore 2 /* i */
        start local 2 // int i
        14: aload 0 /* this */
            getfield org.objectweb.asm.tree.AbstractInsnNode.invisibleTypeAnnotations:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            istore 3 /* n */
        start local 3 // int n
        15: goto 23
        16: .line 190
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AbstractInsnNode.invisibleTypeAnnotations:Ljava/util/List;
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.objectweb.asm.tree.TypeAnnotationNode
            astore 4 /* typeAnnotation */
        start local 4 // org.objectweb.asm.tree.TypeAnnotationNode typeAnnotation
        17: .line 191
            aload 4 /* typeAnnotation */
        18: .line 192
            aload 1 /* methodVisitor */
        19: .line 193
            aload 4 /* typeAnnotation */
            getfield org.objectweb.asm.tree.TypeAnnotationNode.typeRef:I
            aload 4 /* typeAnnotation */
            getfield org.objectweb.asm.tree.TypeAnnotationNode.typePath:Lorg/objectweb/asm/TypePath;
            aload 4 /* typeAnnotation */
            getfield org.objectweb.asm.tree.TypeAnnotationNode.desc:Ljava/lang/String;
            iconst_0
        20: .line 192
            invokevirtual org.objectweb.asm.MethodVisitor.visitInsnAnnotation:(ILorg/objectweb/asm/TypePath;Ljava/lang/String;Z)Lorg/objectweb/asm/AnnotationVisitor;
        21: .line 191
            invokevirtual org.objectweb.asm.tree.TypeAnnotationNode.accept:(Lorg/objectweb/asm/AnnotationVisitor;)V
        end local 4 // org.objectweb.asm.tree.TypeAnnotationNode typeAnnotation
        22: .line 189
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        23: iload 2 /* i */
            iload 3 /* n */
            if_icmplt 16
        end local 3 // int n
        end local 2 // int i
        24: .line 196
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.objectweb.asm.MethodVisitor methodVisitor
        end local 0 // org.objectweb.asm.tree.AbstractInsnNode this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   25     0            this  Lorg/objectweb/asm/tree/AbstractInsnNode;
            0   25     1   methodVisitor  Lorg/objectweb/asm/MethodVisitor;
            2   12     2               i  I
            3   12     3               n  I
            5   10     4  typeAnnotation  Lorg/objectweb/asm/tree/TypeAnnotationNode;
           14   24     2               i  I
           15   24     3               n  I
           17   22     4  typeAnnotation  Lorg/objectweb/asm/tree/TypeAnnotationNode;
    MethodParameters:
               Name  Flags
      methodVisitor  final

  public abstract 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: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Ljava/util/Map<Lorg/objectweb/asm/tree/LabelNode;Lorg/objectweb/asm/tree/LabelNode;>;)Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
              Name  Flags
      clonedLabels  

  static org.objectweb.asm.tree.LabelNode clone(org.objectweb.asm.tree.LabelNode, java.util.Map<org.objectweb.asm.tree.LabelNode, org.objectweb.asm.tree.LabelNode>);
    descriptor: (Lorg/objectweb/asm/tree/LabelNode;Ljava/util/Map;)Lorg/objectweb/asm/tree/LabelNode;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.LabelNode label
        start local 1 // java.util.Map clonedLabels
         0: .line 215
            aload 1 /* clonedLabels */
            aload 0 /* label */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.objectweb.asm.tree.LabelNode
            areturn
        end local 1 // java.util.Map clonedLabels
        end local 0 // org.objectweb.asm.tree.LabelNode label
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0         label  Lorg/objectweb/asm/tree/LabelNode;
            0    1     1  clonedLabels  Ljava/util/Map<Lorg/objectweb/asm/tree/LabelNode;Lorg/objectweb/asm/tree/LabelNode;>;
    Signature: (Lorg/objectweb/asm/tree/LabelNode;Ljava/util/Map<Lorg/objectweb/asm/tree/LabelNode;Lorg/objectweb/asm/tree/LabelNode;>;)Lorg/objectweb/asm/tree/LabelNode;
    MethodParameters:
              Name  Flags
      label         final
      clonedLabels  final

  static org.objectweb.asm.tree.LabelNode[] clone(java.util.List<org.objectweb.asm.tree.LabelNode>, java.util.Map<org.objectweb.asm.tree.LabelNode, org.objectweb.asm.tree.LabelNode>);
    descriptor: (Ljava/util/List;Ljava/util/Map;)[Lorg/objectweb/asm/tree/LabelNode;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // java.util.List labels
        start local 1 // java.util.Map clonedLabels
         0: .line 227
            aload 0 /* labels */
            invokeinterface java.util.List.size:()I
            anewarray org.objectweb.asm.tree.LabelNode
            astore 2 /* clones */
        start local 2 // org.objectweb.asm.tree.LabelNode[] clones
         1: .line 228
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: aload 2 /* clones */
            arraylength
            istore 4 /* n */
        start local 4 // int n
         3: goto 6
         4: .line 229
      StackMap locals: org.objectweb.asm.tree.LabelNode[] int int
      StackMap stack:
            aload 2 /* clones */
            iload 3 /* i */
            aload 1 /* clonedLabels */
            aload 0 /* labels */
            iload 3 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.objectweb.asm.tree.LabelNode
            aastore
         5: .line 228
            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 231
            aload 2 /* clones */
            areturn
        end local 2 // org.objectweb.asm.tree.LabelNode[] clones
        end local 1 // java.util.Map clonedLabels
        end local 0 // java.util.List labels
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    8     0        labels  Ljava/util/List<Lorg/objectweb/asm/tree/LabelNode;>;
            0    8     1  clonedLabels  Ljava/util/Map<Lorg/objectweb/asm/tree/LabelNode;Lorg/objectweb/asm/tree/LabelNode;>;
            1    8     2        clones  [Lorg/objectweb/asm/tree/LabelNode;
            2    7     3             i  I
            3    7     4             n  I
    Signature: (Ljava/util/List<Lorg/objectweb/asm/tree/LabelNode;>;Ljava/util/Map<Lorg/objectweb/asm/tree/LabelNode;Lorg/objectweb/asm/tree/LabelNode;>;)[Lorg/objectweb/asm/tree/LabelNode;
    MethodParameters:
              Name  Flags
      labels        final
      clonedLabels  final

  protected final org.objectweb.asm.tree.AbstractInsnNode cloneAnnotations(org.objectweb.asm.tree.AbstractInsnNode);
    descriptor: (Lorg/objectweb/asm/tree/AbstractInsnNode;)Lorg/objectweb/asm/tree/AbstractInsnNode;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // org.objectweb.asm.tree.AbstractInsnNode this
        start local 1 // org.objectweb.asm.tree.AbstractInsnNode insnNode
         0: .line 241
            aload 1 /* insnNode */
            getfield org.objectweb.asm.tree.AbstractInsnNode.visibleTypeAnnotations:Ljava/util/List;
            ifnull 14
         1: .line 242
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.objectweb.asm.tree.AbstractInsnNode.visibleTypeAnnotations:Ljava/util/List;
         2: .line 243
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: aload 1 /* insnNode */
            getfield org.objectweb.asm.tree.AbstractInsnNode.visibleTypeAnnotations:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            istore 3 /* n */
        start local 3 // int n
         4: goto 13
         5: .line 244
      StackMap locals: int int
      StackMap stack:
            aload 1 /* insnNode */
            getfield org.objectweb.asm.tree.AbstractInsnNode.visibleTypeAnnotations:Ljava/util/List;
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.objectweb.asm.tree.TypeAnnotationNode
            astore 4 /* sourceAnnotation */
        start local 4 // org.objectweb.asm.tree.TypeAnnotationNode sourceAnnotation
         6: .line 246
            new org.objectweb.asm.tree.TypeAnnotationNode
            dup
         7: .line 247
            aload 4 /* sourceAnnotation */
            getfield org.objectweb.asm.tree.TypeAnnotationNode.typeRef:I
            aload 4 /* sourceAnnotation */
            getfield org.objectweb.asm.tree.TypeAnnotationNode.typePath:Lorg/objectweb/asm/TypePath;
            aload 4 /* sourceAnnotation */
            getfield org.objectweb.asm.tree.TypeAnnotationNode.desc:Ljava/lang/String;
         8: .line 246
            invokespecial org.objectweb.asm.tree.TypeAnnotationNode.<init>:(ILorg/objectweb/asm/TypePath;Ljava/lang/String;)V
         9: .line 245
            astore 5 /* cloneAnnotation */
        start local 5 // org.objectweb.asm.tree.TypeAnnotationNode cloneAnnotation
        10: .line 248
            aload 4 /* sourceAnnotation */
            aload 5 /* cloneAnnotation */
            invokevirtual org.objectweb.asm.tree.TypeAnnotationNode.accept:(Lorg/objectweb/asm/AnnotationVisitor;)V
        11: .line 249
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AbstractInsnNode.visibleTypeAnnotations:Ljava/util/List;
            aload 5 /* cloneAnnotation */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 5 // org.objectweb.asm.tree.TypeAnnotationNode cloneAnnotation
        end local 4 // org.objectweb.asm.tree.TypeAnnotationNode sourceAnnotation
        12: .line 243
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 2 /* i */
            iload 3 /* n */
            if_icmplt 5
        end local 3 // int n
        end local 2 // int i
        14: .line 252
      StackMap locals:
      StackMap stack:
            aload 1 /* insnNode */
            getfield org.objectweb.asm.tree.AbstractInsnNode.invisibleTypeAnnotations:Ljava/util/List;
            ifnull 28
        15: .line 253
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.objectweb.asm.tree.AbstractInsnNode.invisibleTypeAnnotations:Ljava/util/List;
        16: .line 254
            iconst_0
            istore 2 /* i */
        start local 2 // int i
        17: aload 1 /* insnNode */
            getfield org.objectweb.asm.tree.AbstractInsnNode.invisibleTypeAnnotations:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            istore 3 /* n */
        start local 3 // int n
        18: goto 27
        19: .line 255
      StackMap locals: int int
      StackMap stack:
            aload 1 /* insnNode */
            getfield org.objectweb.asm.tree.AbstractInsnNode.invisibleTypeAnnotations:Ljava/util/List;
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.objectweb.asm.tree.TypeAnnotationNode
            astore 4 /* sourceAnnotation */
        start local 4 // org.objectweb.asm.tree.TypeAnnotationNode sourceAnnotation
        20: .line 257
            new org.objectweb.asm.tree.TypeAnnotationNode
            dup
        21: .line 258
            aload 4 /* sourceAnnotation */
            getfield org.objectweb.asm.tree.TypeAnnotationNode.typeRef:I
            aload 4 /* sourceAnnotation */
            getfield org.objectweb.asm.tree.TypeAnnotationNode.typePath:Lorg/objectweb/asm/TypePath;
            aload 4 /* sourceAnnotation */
            getfield org.objectweb.asm.tree.TypeAnnotationNode.desc:Ljava/lang/String;
        22: .line 257
            invokespecial org.objectweb.asm.tree.TypeAnnotationNode.<init>:(ILorg/objectweb/asm/TypePath;Ljava/lang/String;)V
        23: .line 256
            astore 5 /* cloneAnnotation */
        start local 5 // org.objectweb.asm.tree.TypeAnnotationNode cloneAnnotation
        24: .line 259
            aload 4 /* sourceAnnotation */
            aload 5 /* cloneAnnotation */
            invokevirtual org.objectweb.asm.tree.TypeAnnotationNode.accept:(Lorg/objectweb/asm/AnnotationVisitor;)V
        25: .line 260
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AbstractInsnNode.invisibleTypeAnnotations:Ljava/util/List;
            aload 5 /* cloneAnnotation */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 5 // org.objectweb.asm.tree.TypeAnnotationNode cloneAnnotation
        end local 4 // org.objectweb.asm.tree.TypeAnnotationNode sourceAnnotation
        26: .line 254
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        27: iload 2 /* i */
            iload 3 /* n */
            if_icmplt 19
        end local 3 // int n
        end local 2 // int i
        28: .line 263
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // org.objectweb.asm.tree.AbstractInsnNode insnNode
        end local 0 // org.objectweb.asm.tree.AbstractInsnNode this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   29     0              this  Lorg/objectweb/asm/tree/AbstractInsnNode;
            0   29     1          insnNode  Lorg/objectweb/asm/tree/AbstractInsnNode;
            3   14     2                 i  I
            4   14     3                 n  I
            6   12     4  sourceAnnotation  Lorg/objectweb/asm/tree/TypeAnnotationNode;
           10   12     5   cloneAnnotation  Lorg/objectweb/asm/tree/TypeAnnotationNode;
           17   28     2                 i  I
           18   28     3                 n  I
           20   26     4  sourceAnnotation  Lorg/objectweb/asm/tree/TypeAnnotationNode;
           24   26     5   cloneAnnotation  Lorg/objectweb/asm/tree/TypeAnnotationNode;
    MethodParameters:
          Name  Flags
      insnNode  final
}
SourceFile: "AbstractInsnNode.java"