final class org.objectweb.asm.Attribute$Set
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.objectweb.asm.Attribute$Set
  super_class: java.lang.Object
{
  private static final int SIZE_INCREMENT;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 6

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

  private org.objectweb.asm.Attribute[] data;
    descriptor: [Lorg/objectweb/asm/Attribute;
    flags: (0x0002) ACC_PRIVATE

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.objectweb.asm.Attribute$Set this
         0: .line 351
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 356
            aload 0 /* this */
            bipush 6
            anewarray org.objectweb.asm.Attribute
            putfield org.objectweb.asm.Attribute$Set.data:[Lorg/objectweb/asm/Attribute;
         2: .line 351
            return
        end local 0 // org.objectweb.asm.Attribute$Set this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/objectweb/asm/Attribute$Set;

  void addAttributes(org.objectweb.asm.Attribute);
    descriptor: (Lorg/objectweb/asm/Attribute;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.objectweb.asm.Attribute$Set this
        start local 1 // org.objectweb.asm.Attribute attributeList
         0: .line 359
            aload 1 /* attributeList */
            astore 2 /* attribute */
        start local 2 // org.objectweb.asm.Attribute attribute
         1: .line 360
            goto 5
         2: .line 361
      StackMap locals: org.objectweb.asm.Attribute
      StackMap stack:
            aload 0 /* this */
            aload 2 /* attribute */
            invokevirtual org.objectweb.asm.Attribute$Set.contains:(Lorg/objectweb/asm/Attribute;)Z
            ifne 4
         3: .line 362
            aload 0 /* this */
            aload 2 /* attribute */
            invokevirtual org.objectweb.asm.Attribute$Set.add:(Lorg/objectweb/asm/Attribute;)V
         4: .line 364
      StackMap locals:
      StackMap stack:
            aload 2 /* attribute */
            getfield org.objectweb.asm.Attribute.nextAttribute:Lorg/objectweb/asm/Attribute;
            astore 2 /* attribute */
         5: .line 360
      StackMap locals:
      StackMap stack:
            aload 2 /* attribute */
            ifnonnull 2
         6: .line 366
            return
        end local 2 // org.objectweb.asm.Attribute attribute
        end local 1 // org.objectweb.asm.Attribute attributeList
        end local 0 // org.objectweb.asm.Attribute$Set this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lorg/objectweb/asm/Attribute$Set;
            0    7     1  attributeList  Lorg/objectweb/asm/Attribute;
            1    7     2      attribute  Lorg/objectweb/asm/Attribute;
    MethodParameters:
               Name  Flags
      attributeList  final

  org.objectweb.asm.Attribute[] toArray();
    descriptor: ()[Lorg/objectweb/asm/Attribute;
    flags: (0x0000) 
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.objectweb.asm.Attribute$Set this
         0: .line 369
            aload 0 /* this */
            getfield org.objectweb.asm.Attribute$Set.size:I
            anewarray org.objectweb.asm.Attribute
            astore 1 /* result */
        start local 1 // org.objectweb.asm.Attribute[] result
         1: .line 370
            aload 0 /* this */
            getfield org.objectweb.asm.Attribute$Set.data:[Lorg/objectweb/asm/Attribute;
            iconst_0
            aload 1 /* result */
            iconst_0
            aload 0 /* this */
            getfield org.objectweb.asm.Attribute$Set.size:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 371
            aload 1 /* result */
            areturn
        end local 1 // org.objectweb.asm.Attribute[] result
        end local 0 // org.objectweb.asm.Attribute$Set this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/objectweb/asm/Attribute$Set;
            1    3     1  result  [Lorg/objectweb/asm/Attribute;

  private boolean contains(org.objectweb.asm.Attribute);
    descriptor: (Lorg/objectweb/asm/Attribute;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.objectweb.asm.Attribute$Set this
        start local 1 // org.objectweb.asm.Attribute attribute
         0: .line 375
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 5
         2: .line 376
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.Attribute$Set.data:[Lorg/objectweb/asm/Attribute;
            iload 2 /* i */
            aaload
            getfield org.objectweb.asm.Attribute.type:Ljava/lang/String;
            aload 1 /* attribute */
            getfield org.objectweb.asm.Attribute.type:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
         3: .line 377
            iconst_1
            ireturn
         4: .line 375
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield org.objectweb.asm.Attribute$Set.size:I
            if_icmplt 2
        end local 2 // int i
         6: .line 380
            iconst_0
            ireturn
        end local 1 // org.objectweb.asm.Attribute attribute
        end local 0 // org.objectweb.asm.Attribute$Set this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/objectweb/asm/Attribute$Set;
            0    7     1  attribute  Lorg/objectweb/asm/Attribute;
            1    6     2          i  I
    MethodParameters:
           Name  Flags
      attribute  final

  private void add(org.objectweb.asm.Attribute);
    descriptor: (Lorg/objectweb/asm/Attribute;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.objectweb.asm.Attribute$Set this
        start local 1 // org.objectweb.asm.Attribute attribute
         0: .line 384
            aload 0 /* this */
            getfield org.objectweb.asm.Attribute$Set.size:I
            aload 0 /* this */
            getfield org.objectweb.asm.Attribute$Set.data:[Lorg/objectweb/asm/Attribute;
            arraylength
            if_icmplt 4
         1: .line 385
            aload 0 /* this */
            getfield org.objectweb.asm.Attribute$Set.data:[Lorg/objectweb/asm/Attribute;
            arraylength
            bipush 6
            iadd
            anewarray org.objectweb.asm.Attribute
            astore 2 /* newData */
        start local 2 // org.objectweb.asm.Attribute[] newData
         2: .line 386
            aload 0 /* this */
            getfield org.objectweb.asm.Attribute$Set.data:[Lorg/objectweb/asm/Attribute;
            iconst_0
            aload 2 /* newData */
            iconst_0
            aload 0 /* this */
            getfield org.objectweb.asm.Attribute$Set.size:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 387
            aload 0 /* this */
            aload 2 /* newData */
            putfield org.objectweb.asm.Attribute$Set.data:[Lorg/objectweb/asm/Attribute;
        end local 2 // org.objectweb.asm.Attribute[] newData
         4: .line 389
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.Attribute$Set.data:[Lorg/objectweb/asm/Attribute;
            aload 0 /* this */
            dup
            getfield org.objectweb.asm.Attribute$Set.size:I
            dup_x1
            iconst_1
            iadd
            putfield org.objectweb.asm.Attribute$Set.size:I
            aload 1 /* attribute */
            aastore
         5: .line 390
            return
        end local 1 // org.objectweb.asm.Attribute attribute
        end local 0 // org.objectweb.asm.Attribute$Set this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/objectweb/asm/Attribute$Set;
            0    6     1  attribute  Lorg/objectweb/asm/Attribute;
            2    4     2    newData  [Lorg/objectweb/asm/Attribute;
    MethodParameters:
           Name  Flags
      attribute  final
}
SourceFile: "Attribute.java"
NestHost: org.objectweb.asm.Attribute
InnerClasses:
  final Set = org.objectweb.asm.Attribute$Set of org.objectweb.asm.Attribute