public final class org.apache.bcel.classfile.Code extends org.apache.bcel.classfile.Attribute
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.apache.bcel.classfile.Code
  super_class: org.apache.bcel.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 org.apache.bcel.classfile.CodeException[] exception_table;
    descriptor: [Lorg/apache/bcel/classfile/CodeException;
    flags: (0x0002) ACC_PRIVATE

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

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

  void <init>(int, int, java.io.DataInput, org.apache.bcel.classfile.ConstantPool);
    descriptor: (IILjava/io/DataInput;Lorg/apache/bcel/classfile/ConstantPool;)V
    flags: (0x0000) 
    Code:
      stack=9, locals=9, args_size=5
        start local 0 // org.apache.bcel.classfile.Code this
        start local 1 // int name_index
        start local 2 // int length
        start local 3 // java.io.DataInput file
        start local 4 // org.apache.bcel.classfile.ConstantPool constant_pool
         0: .line 71
            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 72
            aconst_null
            aconst_null
            aload 4 /* constant_pool */
            invokespecial org.apache.bcel.classfile.Code.<init>:(IIII[B[Lorg/apache/bcel/classfile/CodeException;[Lorg/apache/bcel/classfile/Attribute;Lorg/apache/bcel/classfile/ConstantPool;)V
         2: .line 73
            aload 3 /* file */
            invokeinterface java.io.DataInput.readInt:()I
            istore 5 /* code_length */
        start local 5 // int code_length
         3: .line 74
            aload 0 /* this */
            iload 5 /* code_length */
            newarray 8
            putfield org.apache.bcel.classfile.Code.code:[B
         4: .line 75
            aload 3 /* file */
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Code.code:[B
            invokeinterface java.io.DataInput.readFully:([B)V
         5: .line 79
            aload 3 /* file */
            invokeinterface java.io.DataInput.readUnsignedShort:()I
            istore 6 /* exception_table_length */
        start local 6 // int exception_table_length
         6: .line 80
            aload 0 /* this */
            iload 6 /* exception_table_length */
            anewarray org.apache.bcel.classfile.CodeException
            putfield org.apache.bcel.classfile.Code.exception_table:[Lorg/apache/bcel/classfile/CodeException;
         7: .line 81
            iconst_0
            istore 7 /* i */
        start local 7 // int i
         8: goto 11
         9: .line 82
      StackMap locals: org.apache.bcel.classfile.Code int int java.io.DataInput org.apache.bcel.classfile.ConstantPool int int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Code.exception_table:[Lorg/apache/bcel/classfile/CodeException;
            iload 7 /* i */
            new org.apache.bcel.classfile.CodeException
            dup
            aload 3 /* file */
            invokespecial org.apache.bcel.classfile.CodeException.<init>:(Ljava/io/DataInput;)V
            aastore
        10: .line 81
            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 87
            aload 3 /* file */
            invokeinterface java.io.DataInput.readUnsignedShort:()I
            istore 7 /* attributes_count */
        start local 7 // int attributes_count
        13: .line 88
            aload 0 /* this */
            iload 7 /* attributes_count */
            anewarray org.apache.bcel.classfile.Attribute
            putfield org.apache.bcel.classfile.Code.attributes:[Lorg/apache/bcel/classfile/Attribute;
        14: .line 89
            iconst_0
            istore 8 /* i */
        start local 8 // int i
        15: goto 18
        16: .line 90
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Code.attributes:[Lorg/apache/bcel/classfile/Attribute;
            iload 8 /* i */
            aload 3 /* file */
            aload 4 /* constant_pool */
            invokestatic org.apache.bcel.classfile.Attribute.readAttribute:(Ljava/io/DataInput;Lorg/apache/bcel/classfile/ConstantPool;)Lorg/apache/bcel/classfile/Attribute;
            aastore
        17: .line 89
            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 96
            aload 0 /* this */
            iload 2 /* length */
            invokespecial org.apache.bcel.classfile.Attribute.setLength:(I)V
        20: .line 97
            return
        end local 7 // int attributes_count
        end local 6 // int exception_table_length
        end local 5 // int code_length
        end local 4 // org.apache.bcel.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 // org.apache.bcel.classfile.Code this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0   21     0                    this  Lorg/apache/bcel/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  Lorg/apache/bcel/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[], org.apache.bcel.classfile.CodeException[], org.apache.bcel.classfile.Attribute[], org.apache.bcel.classfile.ConstantPool);
    descriptor: (IIII[B[Lorg/apache/bcel/classfile/CodeException;[Lorg/apache/bcel/classfile/Attribute;Lorg/apache/bcel/classfile/ConstantPool;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=9, args_size=9
        start local 0 // org.apache.bcel.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 // org.apache.bcel.classfile.CodeException[] exception_table
        start local 7 // org.apache.bcel.classfile.Attribute[] attributes
        start local 8 // org.apache.bcel.classfile.ConstantPool constant_pool
         0: .line 112
            aload 0 /* this */
            iconst_2
            iload 1 /* name_index */
            iload 2 /* length */
            aload 8 /* constant_pool */
            invokespecial org.apache.bcel.classfile.Attribute.<init>:(BIILorg/apache/bcel/classfile/ConstantPool;)V
         1: .line 113
            aload 0 /* this */
            iload 3 /* max_stack */
            putfield org.apache.bcel.classfile.Code.max_stack:I
         2: .line 114
            aload 0 /* this */
            iload 4 /* max_locals */
            putfield org.apache.bcel.classfile.Code.max_locals:I
         3: .line 115
            aload 0 /* this */
            aload 5 /* code */
            ifnull 4
            aload 5 /* code */
            goto 5
      StackMap locals: org.apache.bcel.classfile.Code int int int int byte[] org.apache.bcel.classfile.CodeException[] org.apache.bcel.classfile.Attribute[] org.apache.bcel.classfile.ConstantPool
      StackMap stack: org.apache.bcel.classfile.Code
         4: iconst_0
            newarray 8
      StackMap locals: org.apache.bcel.classfile.Code int int int int byte[] org.apache.bcel.classfile.CodeException[] org.apache.bcel.classfile.Attribute[] org.apache.bcel.classfile.ConstantPool
      StackMap stack: org.apache.bcel.classfile.Code byte[]
         5: putfield org.apache.bcel.classfile.Code.code:[B
         6: .line 116
            aload 0 /* this */
            aload 6 /* exception_table */
            ifnull 7
            aload 6 /* exception_table */
            goto 8
      StackMap locals:
      StackMap stack: org.apache.bcel.classfile.Code
         7: iconst_0
            anewarray org.apache.bcel.classfile.CodeException
      StackMap locals: org.apache.bcel.classfile.Code int int int int byte[] org.apache.bcel.classfile.CodeException[] org.apache.bcel.classfile.Attribute[] org.apache.bcel.classfile.ConstantPool
      StackMap stack: org.apache.bcel.classfile.Code org.apache.bcel.classfile.CodeException[]
         8: putfield org.apache.bcel.classfile.Code.exception_table:[Lorg/apache/bcel/classfile/CodeException;
         9: .line 117
            aload 0 /* this */
            aload 7 /* attributes */
            ifnull 10
            aload 7 /* attributes */
            goto 11
      StackMap locals:
      StackMap stack: org.apache.bcel.classfile.Code
        10: iconst_0
            anewarray org.apache.bcel.classfile.Attribute
      StackMap locals: org.apache.bcel.classfile.Code int int int int byte[] org.apache.bcel.classfile.CodeException[] org.apache.bcel.classfile.Attribute[] org.apache.bcel.classfile.ConstantPool
      StackMap stack: org.apache.bcel.classfile.Code org.apache.bcel.classfile.Attribute[]
        11: putfield org.apache.bcel.classfile.Code.attributes:[Lorg/apache/bcel/classfile/Attribute;
        12: .line 118
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.apache.bcel.classfile.Code.calculateLength:()I
            invokespecial org.apache.bcel.classfile.Attribute.setLength:(I)V
        13: .line 119
            return
        end local 8 // org.apache.bcel.classfile.ConstantPool constant_pool
        end local 7 // org.apache.bcel.classfile.Attribute[] attributes
        end local 6 // org.apache.bcel.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 // org.apache.bcel.classfile.Code this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   14     0             this  Lorg/apache/bcel/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  [Lorg/apache/bcel/classfile/CodeException;
            0   14     7       attributes  [Lorg/apache/bcel/classfile/Attribute;
            0   14     8    constant_pool  Lorg/apache/bcel/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(org.apache.bcel.classfile.Visitor);
    descriptor: (Lorg/apache/bcel/classfile/Visitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.bcel.classfile.Code this
        start local 1 // org.apache.bcel.classfile.Visitor v
         0: .line 131
            aload 1 /* v */
            aload 0 /* this */
            invokeinterface org.apache.bcel.classfile.Visitor.visitCode:(Lorg/apache/bcel/classfile/Code;)V
         1: .line 132
            return
        end local 1 // org.apache.bcel.classfile.Visitor v
        end local 0 // org.apache.bcel.classfile.Code this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/bcel/classfile/Code;
            0    2     1     v  Lorg/apache/bcel/classfile/Visitor;
    MethodParameters:
      Name  Flags
      v     final

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

  public org.apache.bcel.classfile.Attribute[] getAttributes();
    descriptor: ()[Lorg/apache/bcel/classfile/Attribute;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.bcel.classfile.Code this
         0: .line 164
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Code.attributes:[Lorg/apache/bcel/classfile/Attribute;
            areturn
        end local 0 // org.apache.bcel.classfile.Code this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/bcel/classfile/Code;

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

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

  public byte[] getCode();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.bcel.classfile.Code this
         0: .line 198
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Code.code:[B
            areturn
        end local 0 // org.apache.bcel.classfile.Code this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/bcel/classfile/Code;

  public org.apache.bcel.classfile.CodeException[] getExceptionTable();
    descriptor: ()[Lorg/apache/bcel/classfile/CodeException;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.bcel.classfile.Code this
         0: .line 207
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Code.exception_table:[Lorg/apache/bcel/classfile/CodeException;
            areturn
        end local 0 // org.apache.bcel.classfile.Code this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/bcel/classfile/Code;

  public int getMaxLocals();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.bcel.classfile.Code this
         0: .line 215
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Code.max_locals:I
            ireturn
        end local 0 // org.apache.bcel.classfile.Code this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/bcel/classfile/Code;

  public int getMaxStack();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.bcel.classfile.Code this
         0: .line 223
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Code.max_stack:I
            ireturn
        end local 0 // org.apache.bcel.classfile.Code this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/bcel/classfile/Code;

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

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

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

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

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

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

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

  public java.lang.String toString(boolean);
    descriptor: (Z)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=2
        start local 0 // org.apache.bcel.classfile.Code this
        start local 1 // boolean verbose
         0: .line 302
            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 303
            aload 2 /* buf */
            ldc "Code(max_stack = "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.bcel.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 304
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Code.max_locals:I
         3: .line 303
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         4: .line 304
            ldc ", code_length = "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.bcel.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 305
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Code.code:[B
            aload 0 /* this */
            invokespecial org.apache.bcel.classfile.Attribute.getConstantPool:()Lorg/apache/bcel/classfile/ConstantPool;
            iconst_0
            iconst_m1
            iload 1 /* verbose */
            invokestatic org.apache.bcel.classfile.Utility.codeToString:([BLorg/apache/bcel/classfile/ConstantPool;IIZ)Ljava/lang/String;
         6: .line 304
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         7: .line 306
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Code.exception_table:[Lorg/apache/bcel/classfile/CodeException;
            arraylength
            ifle 14
         8: .line 307
            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 308
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Code.exception_table:[Lorg/apache/bcel/classfile/CodeException;
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 13
      StackMap locals: org.apache.bcel.classfile.Code int java.lang.StringBuilder top int int org.apache.bcel.classfile.CodeException[]
      StackMap stack:
        10: aload 6
            iload 4
            aaload
            astore 3 /* exception */
        start local 3 // org.apache.bcel.classfile.CodeException exception
        11: .line 309
            aload 2 /* buf */
            aload 3 /* exception */
            aload 0 /* this */
            invokespecial org.apache.bcel.classfile.Attribute.getConstantPool:()Lorg/apache/bcel/classfile/ConstantPool;
            iload 1 /* verbose */
            invokevirtual org.apache.bcel.classfile.CodeException.toString:(Lorg/apache/bcel/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 // org.apache.bcel.classfile.CodeException exception
        12: .line 308
            iinc 4 1
      StackMap locals:
      StackMap stack:
        13: iload 4
            iload 5
            if_icmplt 10
        14: .line 312
      StackMap locals: org.apache.bcel.classfile.Code int java.lang.StringBuilder
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Code.attributes:[Lorg/apache/bcel/classfile/Attribute;
            arraylength
            ifle 21
        15: .line 313
            aload 2 /* buf */
            ldc "\nAttribute(s) = "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        16: .line 314
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Code.attributes:[Lorg/apache/bcel/classfile/Attribute;
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 20
      StackMap locals: org.apache.bcel.classfile.Code int java.lang.StringBuilder top int int org.apache.bcel.classfile.Attribute[]
      StackMap stack:
        17: aload 6
            iload 4
            aaload
            astore 3 /* attribute */
        start local 3 // org.apache.bcel.classfile.Attribute attribute
        18: .line 315
            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 // org.apache.bcel.classfile.Attribute attribute
        19: .line 314
            iinc 4 1
      StackMap locals:
      StackMap stack:
        20: iload 4
            iload 5
            if_icmplt 17
        21: .line 318
      StackMap locals: org.apache.bcel.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 // org.apache.bcel.classfile.Code this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   22     0       this  Lorg/apache/bcel/classfile/Code;
            0   22     1    verbose  Z
            1   22     2        buf  Ljava/lang/StringBuilder;
           11   12     3  exception  Lorg/apache/bcel/classfile/CodeException;
           18   19     3  attribute  Lorg/apache/bcel/classfile/Attribute;
    MethodParameters:
         Name  Flags
      verbose  final

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

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