public final class com.sun.org.apache.bcel.internal.classfile.Code extends com.sun.org.apache.bcel.internal.classfile.Attribute
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.sun.org.apache.bcel.internal.classfile.Code
  super_class: com.sun.org.apache.bcel.internal.classfile.Attribute
{
  private int max_stack;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int max_locals;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private byte[] code;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  private com.sun.org.apache.bcel.internal.classfile.CodeException[] exception_table;
    descriptor: [Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
    flags: (0x0002) ACC_PRIVATE

  private com.sun.org.apache.bcel.internal.classfile.Attribute[] attributes;
    descriptor: [Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(com.sun.org.apache.bcel.internal.classfile.Code);
    descriptor: (Lcom/sun/org/apache/bcel/internal/classfile/Code;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=2, args_size=2
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
        start local 1 // com.sun.org.apache.bcel.internal.classfile.Code c
         0: .line 62
            aload 0 /* this */
            aload 1 /* c */
            invokevirtual com.sun.org.apache.bcel.internal.classfile.Code.getNameIndex:()I
            aload 1 /* c */
            invokevirtual com.sun.org.apache.bcel.internal.classfile.Code.getLength:()I
            aload 1 /* c */
            invokevirtual com.sun.org.apache.bcel.internal.classfile.Code.getMaxStack:()I
            aload 1 /* c */
            invokevirtual com.sun.org.apache.bcel.internal.classfile.Code.getMaxLocals:()I
            aload 1 /* c */
            invokevirtual com.sun.org.apache.bcel.internal.classfile.Code.getCode:()[B
            aload 1 /* c */
         1: .line 63
            invokevirtual com.sun.org.apache.bcel.internal.classfile.Code.getExceptionTable:()[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
            aload 1 /* c */
            invokevirtual com.sun.org.apache.bcel.internal.classfile.Code.getAttributes:()[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            aload 1 /* c */
            invokevirtual com.sun.org.apache.bcel.internal.classfile.Code.getConstantPool:()Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;
            invokespecial com.sun.org.apache.bcel.internal.classfile.Code.<init>:(IIII[B[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
         2: .line 64
            return
        end local 1 // com.sun.org.apache.bcel.internal.classfile.Code c
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/org/apache/bcel/internal/classfile/Code;
            0    3     1     c  Lcom/sun/org/apache/bcel/internal/classfile/Code;
    MethodParameters:
      Name  Flags
      c     final

  void <init>(int, int, java.io.DataInput, com.sun.org.apache.bcel.internal.classfile.ConstantPool);
    descriptor: (IILjava/io/DataInput;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
    flags: (0x0000) 
    Code:
      stack=9, locals=9, args_size=5
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
        start local 1 // int name_index
        start local 2 // int length
        start local 3 // java.io.DataInput file
        start local 4 // com.sun.org.apache.bcel.internal.classfile.ConstantPool constant_pool
         0: .line 76
            aload 0 /* this */
            iload 1 /* name_index */
            iload 2 /* length */
            aload 3 /* file */
            invokeinterface java.io.DataInput.readUnsignedShort:()I
            aload 3 /* file */
            invokeinterface java.io.DataInput.readUnsignedShort:()I
            aconst_null
         1: .line 77
            aconst_null
            aconst_null
            aload 4 /* constant_pool */
            invokespecial com.sun.org.apache.bcel.internal.classfile.Code.<init>:(IIII[B[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
         2: .line 78
            aload 3 /* file */
            invokeinterface java.io.DataInput.readInt:()I
            istore 5 /* code_length */
        start local 5 // int code_length
         3: .line 79
            aload 0 /* this */
            iload 5 /* code_length */
            newarray 8
            putfield com.sun.org.apache.bcel.internal.classfile.Code.code:[B
         4: .line 80
            aload 3 /* file */
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.code:[B
            invokeinterface java.io.DataInput.readFully:([B)V
         5: .line 84
            aload 3 /* file */
            invokeinterface java.io.DataInput.readUnsignedShort:()I
            istore 6 /* exception_table_length */
        start local 6 // int exception_table_length
         6: .line 85
            aload 0 /* this */
            iload 6 /* exception_table_length */
            anewarray com.sun.org.apache.bcel.internal.classfile.CodeException
            putfield com.sun.org.apache.bcel.internal.classfile.Code.exception_table:[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
         7: .line 86
            iconst_0
            istore 7 /* i */
        start local 7 // int i
         8: goto 11
         9: .line 87
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code int int java.io.DataInput com.sun.org.apache.bcel.internal.classfile.ConstantPool int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.exception_table:[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
            iload 7 /* i */
            new com.sun.org.apache.bcel.internal.classfile.CodeException
            dup
            aload 3 /* file */
            invokespecial com.sun.org.apache.bcel.internal.classfile.CodeException.<init>:(Ljava/io/DataInput;)V
            aastore
        10: .line 86
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 7 /* i */
            iload 6 /* exception_table_length */
            if_icmplt 9
        end local 7 // int i
        12: .line 92
            aload 3 /* file */
            invokeinterface java.io.DataInput.readUnsignedShort:()I
            istore 7 /* attributes_count */
        start local 7 // int attributes_count
        13: .line 93
            aload 0 /* this */
            iload 7 /* attributes_count */
            anewarray com.sun.org.apache.bcel.internal.classfile.Attribute
            putfield com.sun.org.apache.bcel.internal.classfile.Code.attributes:[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
        14: .line 94
            iconst_0
            istore 8 /* i */
        start local 8 // int i
        15: goto 18
        16: .line 95
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.attributes:[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            iload 8 /* i */
            aload 3 /* file */
            aload 4 /* constant_pool */
            invokestatic com.sun.org.apache.bcel.internal.classfile.Attribute.readAttribute:(Ljava/io/DataInput;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            aastore
        17: .line 94
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        18: iload 8 /* i */
            iload 7 /* attributes_count */
            if_icmplt 16
        end local 8 // int i
        19: .line 101
            aload 0 /* this */
            iload 2 /* length */
            invokespecial com.sun.org.apache.bcel.internal.classfile.Attribute.setLength:(I)V
        20: .line 102
            return
        end local 7 // int attributes_count
        end local 6 // int exception_table_length
        end local 5 // int code_length
        end local 4 // com.sun.org.apache.bcel.internal.classfile.ConstantPool constant_pool
        end local 3 // java.io.DataInput file
        end local 2 // int length
        end local 1 // int name_index
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0   21     0                    this  Lcom/sun/org/apache/bcel/internal/classfile/Code;
            0   21     1              name_index  I
            0   21     2                  length  I
            0   21     3                    file  Ljava/io/DataInput;
            0   21     4           constant_pool  Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;
            3   21     5             code_length  I
            6   21     6  exception_table_length  I
            8   12     7                       i  I
           13   21     7        attributes_count  I
           15   19     8                       i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      name_index     final
      length         final
      file           final
      constant_pool  final

  public void <init>(int, int, int, int, byte[], com.sun.org.apache.bcel.internal.classfile.CodeException[], com.sun.org.apache.bcel.internal.classfile.Attribute[], com.sun.org.apache.bcel.internal.classfile.ConstantPool);
    descriptor: (IIII[B[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=9, args_size=9
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
        start local 1 // int name_index
        start local 2 // int length
        start local 3 // int max_stack
        start local 4 // int max_locals
        start local 5 // byte[] code
        start local 6 // com.sun.org.apache.bcel.internal.classfile.CodeException[] exception_table
        start local 7 // com.sun.org.apache.bcel.internal.classfile.Attribute[] attributes
        start local 8 // com.sun.org.apache.bcel.internal.classfile.ConstantPool constant_pool
         0: .line 117
            aload 0 /* this */
            iconst_2
            iload 1 /* name_index */
            iload 2 /* length */
            aload 8 /* constant_pool */
            invokespecial com.sun.org.apache.bcel.internal.classfile.Attribute.<init>:(BIILcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
         1: .line 118
            aload 0 /* this */
            iload 3 /* max_stack */
            putfield com.sun.org.apache.bcel.internal.classfile.Code.max_stack:I
         2: .line 119
            aload 0 /* this */
            iload 4 /* max_locals */
            putfield com.sun.org.apache.bcel.internal.classfile.Code.max_locals:I
         3: .line 120
            aload 0 /* this */
            aload 5 /* code */
            ifnull 4
            aload 5 /* code */
            goto 5
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code int int int int byte[] com.sun.org.apache.bcel.internal.classfile.CodeException[] com.sun.org.apache.bcel.internal.classfile.Attribute[] com.sun.org.apache.bcel.internal.classfile.ConstantPool
      StackMap stack: com.sun.org.apache.bcel.internal.classfile.Code
         4: iconst_0
            newarray 8
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code int int int int byte[] com.sun.org.apache.bcel.internal.classfile.CodeException[] com.sun.org.apache.bcel.internal.classfile.Attribute[] com.sun.org.apache.bcel.internal.classfile.ConstantPool
      StackMap stack: com.sun.org.apache.bcel.internal.classfile.Code byte[]
         5: putfield com.sun.org.apache.bcel.internal.classfile.Code.code:[B
         6: .line 121
            aload 0 /* this */
            aload 6 /* exception_table */
            ifnull 7
            aload 6 /* exception_table */
            goto 8
      StackMap locals:
      StackMap stack: com.sun.org.apache.bcel.internal.classfile.Code
         7: iconst_0
            anewarray com.sun.org.apache.bcel.internal.classfile.CodeException
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code int int int int byte[] com.sun.org.apache.bcel.internal.classfile.CodeException[] com.sun.org.apache.bcel.internal.classfile.Attribute[] com.sun.org.apache.bcel.internal.classfile.ConstantPool
      StackMap stack: com.sun.org.apache.bcel.internal.classfile.Code com.sun.org.apache.bcel.internal.classfile.CodeException[]
         8: putfield com.sun.org.apache.bcel.internal.classfile.Code.exception_table:[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
         9: .line 122
            aload 0 /* this */
            aload 7 /* attributes */
            ifnull 10
            aload 7 /* attributes */
            goto 11
      StackMap locals:
      StackMap stack: com.sun.org.apache.bcel.internal.classfile.Code
        10: iconst_0
            anewarray com.sun.org.apache.bcel.internal.classfile.Attribute
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code int int int int byte[] com.sun.org.apache.bcel.internal.classfile.CodeException[] com.sun.org.apache.bcel.internal.classfile.Attribute[] com.sun.org.apache.bcel.internal.classfile.ConstantPool
      StackMap stack: com.sun.org.apache.bcel.internal.classfile.Code com.sun.org.apache.bcel.internal.classfile.Attribute[]
        11: putfield com.sun.org.apache.bcel.internal.classfile.Code.attributes:[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
        12: .line 123
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.sun.org.apache.bcel.internal.classfile.Code.calculateLength:()I
            invokespecial com.sun.org.apache.bcel.internal.classfile.Attribute.setLength:(I)V
        13: .line 124
            return
        end local 8 // com.sun.org.apache.bcel.internal.classfile.ConstantPool constant_pool
        end local 7 // com.sun.org.apache.bcel.internal.classfile.Attribute[] attributes
        end local 6 // com.sun.org.apache.bcel.internal.classfile.CodeException[] exception_table
        end local 5 // byte[] code
        end local 4 // int max_locals
        end local 3 // int max_stack
        end local 2 // int length
        end local 1 // int name_index
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   14     0             this  Lcom/sun/org/apache/bcel/internal/classfile/Code;
            0   14     1       name_index  I
            0   14     2           length  I
            0   14     3        max_stack  I
            0   14     4       max_locals  I
            0   14     5             code  [B
            0   14     6  exception_table  [Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
            0   14     7       attributes  [Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            0   14     8    constant_pool  Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;
    MethodParameters:
                 Name  Flags
      name_index       final
      length           final
      max_stack        final
      max_locals       final
      code             final
      exception_table  final
      attributes       final
      constant_pool    final

  public void accept(com.sun.org.apache.bcel.internal.classfile.Visitor);
    descriptor: (Lcom/sun/org/apache/bcel/internal/classfile/Visitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
        start local 1 // com.sun.org.apache.bcel.internal.classfile.Visitor v
         0: .line 136
            aload 1 /* v */
            aload 0 /* this */
            invokeinterface com.sun.org.apache.bcel.internal.classfile.Visitor.visitCode:(Lcom/sun/org/apache/bcel/internal/classfile/Code;)V
         1: .line 137
            return
        end local 1 // com.sun.org.apache.bcel.internal.classfile.Visitor v
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/org/apache/bcel/internal/classfile/Code;
            0    2     1     v  Lcom/sun/org/apache/bcel/internal/classfile/Visitor;
    MethodParameters:
      Name  Flags
      v     final

  public final void dump(java.io.DataOutputStream);
    descriptor: (Ljava/io/DataOutputStream;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
        start local 1 // java.io.DataOutputStream file
         0: .line 148
            aload 0 /* this */
            aload 1 /* file */
            invokespecial com.sun.org.apache.bcel.internal.classfile.Attribute.dump:(Ljava/io/DataOutputStream;)V
         1: .line 149
            aload 1 /* file */
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.max_stack:I
            invokevirtual java.io.DataOutputStream.writeShort:(I)V
         2: .line 150
            aload 1 /* file */
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.max_locals:I
            invokevirtual java.io.DataOutputStream.writeShort:(I)V
         3: .line 151
            aload 1 /* file */
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.code:[B
            arraylength
            invokevirtual java.io.DataOutputStream.writeInt:(I)V
         4: .line 152
            aload 1 /* file */
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.code:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.code:[B
            arraylength
            invokevirtual java.io.DataOutputStream.write:([BII)V
         5: .line 153
            aload 1 /* file */
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.exception_table:[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
            arraylength
            invokevirtual java.io.DataOutputStream.writeShort:(I)V
         6: .line 154
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.exception_table:[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 10
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code java.io.DataOutputStream top int int com.sun.org.apache.bcel.internal.classfile.CodeException[]
      StackMap stack:
         7: aload 5
            iload 3
            aaload
            astore 2 /* exception */
        start local 2 // com.sun.org.apache.bcel.internal.classfile.CodeException exception
         8: .line 155
            aload 2 /* exception */
            aload 1 /* file */
            invokevirtual com.sun.org.apache.bcel.internal.classfile.CodeException.dump:(Ljava/io/DataOutputStream;)V
        end local 2 // com.sun.org.apache.bcel.internal.classfile.CodeException exception
         9: .line 154
            iinc 3 1
      StackMap locals:
      StackMap stack:
        10: iload 3
            iload 4
            if_icmplt 7
        11: .line 157
            aload 1 /* file */
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.attributes:[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            arraylength
            invokevirtual java.io.DataOutputStream.writeShort:(I)V
        12: .line 158
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.attributes:[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 16
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code java.io.DataOutputStream top int int com.sun.org.apache.bcel.internal.classfile.Attribute[]
      StackMap stack:
        13: aload 5
            iload 3
            aaload
            astore 2 /* attribute */
        start local 2 // com.sun.org.apache.bcel.internal.classfile.Attribute attribute
        14: .line 159
            aload 2 /* attribute */
            aload 1 /* file */
            invokevirtual com.sun.org.apache.bcel.internal.classfile.Attribute.dump:(Ljava/io/DataOutputStream;)V
        end local 2 // com.sun.org.apache.bcel.internal.classfile.Attribute attribute
        15: .line 158
            iinc 3 1
      StackMap locals:
      StackMap stack:
        16: iload 3
            iload 4
            if_icmplt 13
        17: .line 161
            return
        end local 1 // java.io.DataOutputStream file
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   18     0       this  Lcom/sun/org/apache/bcel/internal/classfile/Code;
            0   18     1       file  Ljava/io/DataOutputStream;
            8    9     2  exception  Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
           14   15     2  attribute  Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      file  final

  public final com.sun.org.apache.bcel.internal.classfile.Attribute[] getAttributes();
    descriptor: ()[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
         0: .line 169
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.attributes:[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            areturn
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/bcel/internal/classfile/Code;

  public com.sun.org.apache.bcel.internal.classfile.LineNumberTable getLineNumberTable();
    descriptor: ()Lcom/sun/org/apache/bcel/internal/classfile/LineNumberTable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
         0: .line 177
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.attributes:[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            dup
            astore 4
            arraylength
            istore 3
            iconst_0
            istore 2
            goto 5
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code top int int com.sun.org.apache.bcel.internal.classfile.Attribute[]
      StackMap stack:
         1: aload 4
            iload 2
            aaload
            astore 1 /* attribute */
        start local 1 // com.sun.org.apache.bcel.internal.classfile.Attribute attribute
         2: .line 178
            aload 1 /* attribute */
            instanceof com.sun.org.apache.bcel.internal.classfile.LineNumberTable
            ifeq 4
         3: .line 179
            aload 1 /* attribute */
            checkcast com.sun.org.apache.bcel.internal.classfile.LineNumberTable
            areturn
        end local 1 // com.sun.org.apache.bcel.internal.classfile.Attribute attribute
         4: .line 177
      StackMap locals:
      StackMap stack:
            iinc 2 1
      StackMap locals:
      StackMap stack:
         5: iload 2
            iload 3
            if_icmplt 1
         6: .line 182
            aconst_null
            areturn
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lcom/sun/org/apache/bcel/internal/classfile/Code;
            2    4     1  attribute  Lcom/sun/org/apache/bcel/internal/classfile/Attribute;

  public com.sun.org.apache.bcel.internal.classfile.LocalVariableTable getLocalVariableTable();
    descriptor: ()Lcom/sun/org/apache/bcel/internal/classfile/LocalVariableTable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
         0: .line 190
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.attributes:[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            dup
            astore 4
            arraylength
            istore 3
            iconst_0
            istore 2
            goto 5
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code top int int com.sun.org.apache.bcel.internal.classfile.Attribute[]
      StackMap stack:
         1: aload 4
            iload 2
            aaload
            astore 1 /* attribute */
        start local 1 // com.sun.org.apache.bcel.internal.classfile.Attribute attribute
         2: .line 191
            aload 1 /* attribute */
            instanceof com.sun.org.apache.bcel.internal.classfile.LocalVariableTable
            ifeq 4
         3: .line 192
            aload 1 /* attribute */
            checkcast com.sun.org.apache.bcel.internal.classfile.LocalVariableTable
            areturn
        end local 1 // com.sun.org.apache.bcel.internal.classfile.Attribute attribute
         4: .line 190
      StackMap locals:
      StackMap stack:
            iinc 2 1
      StackMap locals:
      StackMap stack:
         5: iload 2
            iload 3
            if_icmplt 1
         6: .line 195
            aconst_null
            areturn
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lcom/sun/org/apache/bcel/internal/classfile/Code;
            2    4     1  attribute  Lcom/sun/org/apache/bcel/internal/classfile/Attribute;

  public final byte[] getCode();
    descriptor: ()[B
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
         0: .line 203
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.code:[B
            areturn
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/bcel/internal/classfile/Code;

  public final com.sun.org.apache.bcel.internal.classfile.CodeException[] getExceptionTable();
    descriptor: ()[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
         0: .line 212
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.exception_table:[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
            areturn
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/bcel/internal/classfile/Code;

  public final int getMaxLocals();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
         0: .line 220
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.max_locals:I
            ireturn
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/bcel/internal/classfile/Code;

  public final int getMaxStack();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
         0: .line 228
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.max_stack:I
            ireturn
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/bcel/internal/classfile/Code;

  private int getInternalLength();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
         0: .line 237
            bipush 8
         1: .line 238
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.code:[B
            arraylength
         2: .line 237
            iadd
         3: .line 239
            iconst_2
         4: .line 237
            iadd
         5: .line 240
            bipush 8
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.exception_table:[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
            ifnonnull 6
            iconst_0
            goto 7
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code
      StackMap stack: int int
         6: aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.exception_table:[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
            arraylength
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code
      StackMap stack: int int int
         7: imul
         8: .line 237
            iadd
         9: .line 241
            iconst_2
        10: .line 237
            iadd
            ireturn
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lcom/sun/org/apache/bcel/internal/classfile/Code;

  private int calculateLength();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
         0: .line 250
            iconst_0
            istore 1 /* len */
        start local 1 // int len
         1: .line 251
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.attributes:[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            ifnull 7
         2: .line 252
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.attributes:[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 6
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code int top int int com.sun.org.apache.bcel.internal.classfile.Attribute[]
      StackMap stack:
         3: aload 5
            iload 3
            aaload
            astore 2 /* attribute */
        start local 2 // com.sun.org.apache.bcel.internal.classfile.Attribute attribute
         4: .line 253
            iload 1 /* len */
            aload 2 /* attribute */
            invokevirtual com.sun.org.apache.bcel.internal.classfile.Attribute.getLength:()I
            bipush 6
            iadd
            iadd
            istore 1 /* len */
        end local 2 // com.sun.org.apache.bcel.internal.classfile.Attribute attribute
         5: .line 252
            iinc 3 1
      StackMap locals:
      StackMap stack:
         6: iload 3
            iload 4
            if_icmplt 3
         7: .line 256
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code int
      StackMap stack:
            iload 1 /* len */
            aload 0 /* this */
            invokevirtual com.sun.org.apache.bcel.internal.classfile.Code.getInternalLength:()I
            iadd
            ireturn
        end local 1 // int len
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lcom/sun/org/apache/bcel/internal/classfile/Code;
            1    8     1        len  I
            4    5     2  attribute  Lcom/sun/org/apache/bcel/internal/classfile/Attribute;

  public final void setAttributes(com.sun.org.apache.bcel.internal.classfile.Attribute[]);
    descriptor: ([Lcom/sun/org/apache/bcel/internal/classfile/Attribute;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
        start local 1 // com.sun.org.apache.bcel.internal.classfile.Attribute[] attributes
         0: .line 264
            aload 0 /* this */
            aload 1 /* attributes */
            ifnull 1
            aload 1 /* attributes */
            goto 2
      StackMap locals:
      StackMap stack: com.sun.org.apache.bcel.internal.classfile.Code
         1: iconst_0
            anewarray com.sun.org.apache.bcel.internal.classfile.Attribute
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code com.sun.org.apache.bcel.internal.classfile.Attribute[]
      StackMap stack: com.sun.org.apache.bcel.internal.classfile.Code com.sun.org.apache.bcel.internal.classfile.Attribute[]
         2: putfield com.sun.org.apache.bcel.internal.classfile.Code.attributes:[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
         3: .line 265
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.sun.org.apache.bcel.internal.classfile.Code.calculateLength:()I
            invokespecial com.sun.org.apache.bcel.internal.classfile.Attribute.setLength:(I)V
         4: .line 266
            return
        end local 1 // com.sun.org.apache.bcel.internal.classfile.Attribute[] attributes
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/sun/org/apache/bcel/internal/classfile/Code;
            0    5     1  attributes  [Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
    MethodParameters:
            Name  Flags
      attributes  final

  public final void setCode(byte[]);
    descriptor: ([B)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
        start local 1 // byte[] code
         0: .line 273
            aload 0 /* this */
            aload 1 /* code */
            ifnull 1
            aload 1 /* code */
            goto 2
      StackMap locals:
      StackMap stack: com.sun.org.apache.bcel.internal.classfile.Code
         1: iconst_0
            newarray 8
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code byte[]
      StackMap stack: com.sun.org.apache.bcel.internal.classfile.Code byte[]
         2: putfield com.sun.org.apache.bcel.internal.classfile.Code.code:[B
         3: .line 274
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.sun.org.apache.bcel.internal.classfile.Code.calculateLength:()I
            invokespecial com.sun.org.apache.bcel.internal.classfile.Attribute.setLength:(I)V
         4: .line 275
            return
        end local 1 // byte[] code
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/org/apache/bcel/internal/classfile/Code;
            0    5     1  code  [B
    MethodParameters:
      Name  Flags
      code  final

  public final void setExceptionTable(com.sun.org.apache.bcel.internal.classfile.CodeException[]);
    descriptor: ([Lcom/sun/org/apache/bcel/internal/classfile/CodeException;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
        start local 1 // com.sun.org.apache.bcel.internal.classfile.CodeException[] exception_table
         0: .line 282
            aload 0 /* this */
            aload 1 /* exception_table */
            ifnull 1
            aload 1 /* exception_table */
            goto 2
      StackMap locals:
      StackMap stack: com.sun.org.apache.bcel.internal.classfile.Code
         1: iconst_0
            anewarray com.sun.org.apache.bcel.internal.classfile.CodeException
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code com.sun.org.apache.bcel.internal.classfile.CodeException[]
      StackMap stack: com.sun.org.apache.bcel.internal.classfile.Code com.sun.org.apache.bcel.internal.classfile.CodeException[]
         2: putfield com.sun.org.apache.bcel.internal.classfile.Code.exception_table:[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
         3: .line 283
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.sun.org.apache.bcel.internal.classfile.Code.calculateLength:()I
            invokespecial com.sun.org.apache.bcel.internal.classfile.Attribute.setLength:(I)V
         4: .line 284
            return
        end local 1 // com.sun.org.apache.bcel.internal.classfile.CodeException[] exception_table
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    5     0             this  Lcom/sun/org/apache/bcel/internal/classfile/Code;
            0    5     1  exception_table  [Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
    MethodParameters:
                 Name  Flags
      exception_table  final

  public final void setMaxLocals(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
        start local 1 // int max_locals
         0: .line 291
            aload 0 /* this */
            iload 1 /* max_locals */
            putfield com.sun.org.apache.bcel.internal.classfile.Code.max_locals:I
         1: .line 292
            return
        end local 1 // int max_locals
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lcom/sun/org/apache/bcel/internal/classfile/Code;
            0    2     1  max_locals  I
    MethodParameters:
            Name  Flags
      max_locals  final

  public final void setMaxStack(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
        start local 1 // int max_stack
         0: .line 299
            aload 0 /* this */
            iload 1 /* max_stack */
            putfield com.sun.org.apache.bcel.internal.classfile.Code.max_stack:I
         1: .line 300
            return
        end local 1 // int max_stack
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/sun/org/apache/bcel/internal/classfile/Code;
            0    2     1  max_stack  I
    MethodParameters:
           Name  Flags
      max_stack  final

  public final java.lang.String toString(boolean);
    descriptor: (Z)Ljava/lang/String;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=7, args_size=2
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
        start local 1 // boolean verbose
         0: .line 307
            new java.lang.StringBuilder
            dup
            bipush 100
            invokespecial java.lang.StringBuilder.<init>:(I)V
            astore 2 /* buf */
        start local 2 // java.lang.StringBuilder buf
         1: .line 308
            aload 2 /* buf */
            ldc "Code(max_stack = "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.max_stack:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", max_locals = "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         2: .line 309
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.max_locals:I
         3: .line 308
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         4: .line 309
            ldc ", code_length = "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.code:[B
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         5: .line 310
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.code:[B
            aload 0 /* this */
            invokespecial com.sun.org.apache.bcel.internal.classfile.Attribute.getConstantPool:()Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;
            iconst_0
            iconst_m1
            iload 1 /* verbose */
            invokestatic com.sun.org.apache.bcel.internal.classfile.Utility.codeToString:([BLcom/sun/org/apache/bcel/internal/classfile/ConstantPool;IIZ)Ljava/lang/String;
         6: .line 309
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         7: .line 311
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.exception_table:[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
            arraylength
            ifle 14
         8: .line 312
            aload 2 /* buf */
            ldc "\nException handler(s) = \n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "From\tTo\tHandler\tType\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         9: .line 313
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.exception_table:[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 13
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code int java.lang.StringBuilder top int int com.sun.org.apache.bcel.internal.classfile.CodeException[]
      StackMap stack:
        10: aload 6
            iload 4
            aaload
            astore 3 /* exception */
        start local 3 // com.sun.org.apache.bcel.internal.classfile.CodeException exception
        11: .line 314
            aload 2 /* buf */
            aload 3 /* exception */
            aload 0 /* this */
            invokespecial com.sun.org.apache.bcel.internal.classfile.Attribute.getConstantPool:()Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;
            iload 1 /* verbose */
            invokevirtual com.sun.org.apache.bcel.internal.classfile.CodeException.toString:(Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;Z)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        end local 3 // com.sun.org.apache.bcel.internal.classfile.CodeException exception
        12: .line 313
            iinc 4 1
      StackMap locals:
      StackMap stack:
        13: iload 4
            iload 5
            if_icmplt 10
        14: .line 317
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code int java.lang.StringBuilder
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.attributes:[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            arraylength
            ifle 21
        15: .line 318
            aload 2 /* buf */
            ldc "\nAttribute(s) = "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        16: .line 319
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.attributes:[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 20
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code int java.lang.StringBuilder top int int com.sun.org.apache.bcel.internal.classfile.Attribute[]
      StackMap stack:
        17: aload 6
            iload 4
            aaload
            astore 3 /* attribute */
        start local 3 // com.sun.org.apache.bcel.internal.classfile.Attribute attribute
        18: .line 320
            aload 2 /* buf */
            ldc "\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 3 /* attribute */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
        end local 3 // com.sun.org.apache.bcel.internal.classfile.Attribute attribute
        19: .line 319
            iinc 4 1
      StackMap locals:
      StackMap stack:
        20: iload 4
            iload 5
            if_icmplt 17
        21: .line 323
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code int java.lang.StringBuilder
      StackMap stack:
            aload 2 /* buf */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 2 // java.lang.StringBuilder buf
        end local 1 // boolean verbose
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   22     0       this  Lcom/sun/org/apache/bcel/internal/classfile/Code;
            0   22     1    verbose  Z
            1   22     2        buf  Ljava/lang/StringBuilder;
           11   12     3  exception  Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
           18   19     3  attribute  Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
    MethodParameters:
         Name  Flags
      verbose  final

  public final java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
         0: .line 332
            aload 0 /* this */
            iconst_1
            invokevirtual com.sun.org.apache.bcel.internal.classfile.Code.toString:(Z)Ljava/lang/String;
            areturn
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/bcel/internal/classfile/Code;

  public com.sun.org.apache.bcel.internal.classfile.Attribute copy(com.sun.org.apache.bcel.internal.classfile.ConstantPool);
    descriptor: (Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
        start local 1 // com.sun.org.apache.bcel.internal.classfile.ConstantPool _constant_pool
         0: .line 343
            aload 0 /* this */
            invokevirtual com.sun.org.apache.bcel.internal.classfile.Code.clone:()Ljava/lang/Object;
            checkcast com.sun.org.apache.bcel.internal.classfile.Code
            astore 2 /* c */
        start local 2 // com.sun.org.apache.bcel.internal.classfile.Code c
         1: .line 344
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.code:[B
            ifnull 4
         2: .line 345
            aload 2 /* c */
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.code:[B
            arraylength
            newarray 8
            putfield com.sun.org.apache.bcel.internal.classfile.Code.code:[B
         3: .line 346
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.code:[B
            iconst_0
            aload 2 /* c */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.code:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.code:[B
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 348
      StackMap locals: com.sun.org.apache.bcel.internal.classfile.Code
      StackMap stack:
            aload 2 /* c */
            aload 1 /* _constant_pool */
            invokevirtual com.sun.org.apache.bcel.internal.classfile.Code.setConstantPool:(Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)V
         5: .line 349
            aload 2 /* c */
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.exception_table:[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
            arraylength
            anewarray com.sun.org.apache.bcel.internal.classfile.CodeException
            putfield com.sun.org.apache.bcel.internal.classfile.Code.exception_table:[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
         6: .line 350
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 10
         8: .line 351
      StackMap locals: int
      StackMap stack:
            aload 2 /* c */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.exception_table:[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
            iload 3 /* i */
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.exception_table:[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
            iload 3 /* i */
            aaload
            invokevirtual com.sun.org.apache.bcel.internal.classfile.CodeException.copy:()Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
            aastore
         9: .line 350
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.exception_table:[Lcom/sun/org/apache/bcel/internal/classfile/CodeException;
            arraylength
            if_icmplt 8
        end local 3 // int i
        11: .line 353
            aload 2 /* c */
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.attributes:[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            arraylength
            anewarray com.sun.org.apache.bcel.internal.classfile.Attribute
            putfield com.sun.org.apache.bcel.internal.classfile.Code.attributes:[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
        12: .line 354
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        13: goto 16
        14: .line 355
      StackMap locals:
      StackMap stack:
            aload 2 /* c */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.attributes:[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            iload 3 /* i */
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.attributes:[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            iload 3 /* i */
            aaload
            aload 1 /* _constant_pool */
            invokevirtual com.sun.org.apache.bcel.internal.classfile.Attribute.copy:(Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;)Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            aastore
        15: .line 354
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 3 /* i */
            aload 0 /* this */
            getfield com.sun.org.apache.bcel.internal.classfile.Code.attributes:[Lcom/sun/org/apache/bcel/internal/classfile/Attribute;
            arraylength
            if_icmplt 14
        end local 3 // int i
        17: .line 357
            aload 2 /* c */
            areturn
        end local 2 // com.sun.org.apache.bcel.internal.classfile.Code c
        end local 1 // com.sun.org.apache.bcel.internal.classfile.ConstantPool _constant_pool
        end local 0 // com.sun.org.apache.bcel.internal.classfile.Code this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   18     0            this  Lcom/sun/org/apache/bcel/internal/classfile/Code;
            0   18     1  _constant_pool  Lcom/sun/org/apache/bcel/internal/classfile/ConstantPool;
            1   18     2               c  Lcom/sun/org/apache/bcel/internal/classfile/Code;
            7   11     3               i  I
           13   17     3               i  I
    MethodParameters:
                Name  Flags
      _constant_pool  final
}
SourceFile: "Code.java"