final class org.objectweb.asm.FieldWriter extends org.objectweb.asm.FieldVisitor
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.objectweb.asm.FieldWriter
  super_class: org.objectweb.asm.FieldVisitor
{
  private final org.objectweb.asm.ClassWriter cw;
    descriptor: Lorg/objectweb/asm/ClassWriter;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int access;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int name;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int desc;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

  private org.objectweb.asm.AnnotationWriter anns;
    descriptor: Lorg/objectweb/asm/AnnotationWriter;
    flags: (0x0002) ACC_PRIVATE

  private org.objectweb.asm.AnnotationWriter ianns;
    descriptor: Lorg/objectweb/asm/AnnotationWriter;
    flags: (0x0002) ACC_PRIVATE

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

  void <init>(org.objectweb.asm.ClassWriter, int, java.lang.String, java.lang.String, java.lang.String, java.lang.Object);
    descriptor: (Lorg/objectweb/asm/ClassWriter;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=7, args_size=7
        start local 0 // org.objectweb.asm.FieldWriter this
        start local 1 // org.objectweb.asm.ClassWriter cw
        start local 2 // int access
        start local 3 // java.lang.String name
        start local 4 // java.lang.String desc
        start local 5 // java.lang.String signature
        start local 6 // java.lang.Object value
         0: .line 110
            aload 0 /* this */
            ldc 262144
            invokespecial org.objectweb.asm.FieldVisitor.<init>:(I)V
         1: .line 111
            aload 1 /* cw */
            getfield org.objectweb.asm.ClassWriter.firstField:Lorg/objectweb/asm/FieldWriter;
            ifnonnull 4
         2: .line 112
            aload 1 /* cw */
            aload 0 /* this */
            putfield org.objectweb.asm.ClassWriter.firstField:Lorg/objectweb/asm/FieldWriter;
         3: .line 113
            goto 5
         4: .line 114
      StackMap locals: org.objectweb.asm.FieldWriter org.objectweb.asm.ClassWriter int java.lang.String java.lang.String java.lang.String java.lang.Object
      StackMap stack:
            aload 1 /* cw */
            getfield org.objectweb.asm.ClassWriter.lastField:Lorg/objectweb/asm/FieldWriter;
            aload 0 /* this */
            putfield org.objectweb.asm.FieldWriter.fv:Lorg/objectweb/asm/FieldVisitor;
         5: .line 116
      StackMap locals:
      StackMap stack:
            aload 1 /* cw */
            aload 0 /* this */
            putfield org.objectweb.asm.ClassWriter.lastField:Lorg/objectweb/asm/FieldWriter;
         6: .line 117
            aload 0 /* this */
            aload 1 /* cw */
            putfield org.objectweb.asm.FieldWriter.cw:Lorg/objectweb/asm/ClassWriter;
         7: .line 118
            aload 0 /* this */
            iload 2 /* access */
            putfield org.objectweb.asm.FieldWriter.access:I
         8: .line 119
            aload 0 /* this */
            aload 1 /* cw */
            aload 3 /* name */
            invokevirtual org.objectweb.asm.ClassWriter.newUTF8:(Ljava/lang/String;)I
            putfield org.objectweb.asm.FieldWriter.name:I
         9: .line 120
            aload 0 /* this */
            aload 1 /* cw */
            aload 4 /* desc */
            invokevirtual org.objectweb.asm.ClassWriter.newUTF8:(Ljava/lang/String;)I
            putfield org.objectweb.asm.FieldWriter.desc:I
        10: .line 121
            aload 5 /* signature */
            ifnull 12
        11: .line 122
            aload 0 /* this */
            aload 1 /* cw */
            aload 5 /* signature */
            invokevirtual org.objectweb.asm.ClassWriter.newUTF8:(Ljava/lang/String;)I
            putfield org.objectweb.asm.FieldWriter.signature:I
        12: .line 124
      StackMap locals:
      StackMap stack:
            aload 6 /* value */
            ifnull 14
        13: .line 125
            aload 0 /* this */
            aload 1 /* cw */
            aload 6 /* value */
            invokevirtual org.objectweb.asm.ClassWriter.newConstItem:(Ljava/lang/Object;)Lorg/objectweb/asm/Item;
            getfield org.objectweb.asm.Item.index:I
            putfield org.objectweb.asm.FieldWriter.value:I
        14: .line 127
      StackMap locals:
      StackMap stack:
            return
        end local 6 // java.lang.Object value
        end local 5 // java.lang.String signature
        end local 4 // java.lang.String desc
        end local 3 // java.lang.String name
        end local 2 // int access
        end local 1 // org.objectweb.asm.ClassWriter cw
        end local 0 // org.objectweb.asm.FieldWriter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   15     0       this  Lorg/objectweb/asm/FieldWriter;
            0   15     1         cw  Lorg/objectweb/asm/ClassWriter;
            0   15     2     access  I
            0   15     3       name  Ljava/lang/String;
            0   15     4       desc  Ljava/lang/String;
            0   15     5  signature  Ljava/lang/String;
            0   15     6      value  Ljava/lang/Object;
    MethodParameters:
           Name  Flags
      cw         final
      access     final
      name       final
      desc       final
      signature  final
      value      final

  public org.objectweb.asm.AnnotationVisitor visitAnnotation(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)Lorg/objectweb/asm/AnnotationVisitor;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=3
        start local 0 // org.objectweb.asm.FieldWriter this
        start local 1 // java.lang.String desc
        start local 2 // boolean visible
         0: .line 139
            new org.objectweb.asm.ByteVector
            dup
            invokespecial org.objectweb.asm.ByteVector.<init>:()V
            astore 3 /* bv */
        start local 3 // org.objectweb.asm.ByteVector bv
         1: .line 141
            aload 3 /* bv */
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.cw:Lorg/objectweb/asm/ClassWriter;
            aload 1 /* desc */
            invokevirtual org.objectweb.asm.ClassWriter.newUTF8:(Ljava/lang/String;)I
            invokevirtual org.objectweb.asm.ByteVector.putShort:(I)Lorg/objectweb/asm/ByteVector;
            iconst_0
            invokevirtual org.objectweb.asm.ByteVector.putShort:(I)Lorg/objectweb/asm/ByteVector;
            pop
         2: .line 142
            new org.objectweb.asm.AnnotationWriter
            dup
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.cw:Lorg/objectweb/asm/ClassWriter;
            iconst_1
            aload 3 /* bv */
            aload 3 /* bv */
            iconst_2
            invokespecial org.objectweb.asm.AnnotationWriter.<init>:(Lorg/objectweb/asm/ClassWriter;ZLorg/objectweb/asm/ByteVector;Lorg/objectweb/asm/ByteVector;I)V
            astore 4 /* aw */
        start local 4 // org.objectweb.asm.AnnotationWriter aw
         3: .line 143
            iload 2 /* visible */
            ifeq 7
         4: .line 144
            aload 4 /* aw */
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.anns:Lorg/objectweb/asm/AnnotationWriter;
            putfield org.objectweb.asm.AnnotationWriter.next:Lorg/objectweb/asm/AnnotationWriter;
         5: .line 145
            aload 0 /* this */
            aload 4 /* aw */
            putfield org.objectweb.asm.FieldWriter.anns:Lorg/objectweb/asm/AnnotationWriter;
         6: .line 146
            goto 9
         7: .line 147
      StackMap locals: org.objectweb.asm.ByteVector org.objectweb.asm.AnnotationWriter
      StackMap stack:
            aload 4 /* aw */
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.ianns:Lorg/objectweb/asm/AnnotationWriter;
            putfield org.objectweb.asm.AnnotationWriter.next:Lorg/objectweb/asm/AnnotationWriter;
         8: .line 148
            aload 0 /* this */
            aload 4 /* aw */
            putfield org.objectweb.asm.FieldWriter.ianns:Lorg/objectweb/asm/AnnotationWriter;
         9: .line 150
      StackMap locals:
      StackMap stack:
            aload 4 /* aw */
            areturn
        end local 4 // org.objectweb.asm.AnnotationWriter aw
        end local 3 // org.objectweb.asm.ByteVector bv
        end local 2 // boolean visible
        end local 1 // java.lang.String desc
        end local 0 // org.objectweb.asm.FieldWriter this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lorg/objectweb/asm/FieldWriter;
            0   10     1     desc  Ljava/lang/String;
            0   10     2  visible  Z
            1   10     3       bv  Lorg/objectweb/asm/ByteVector;
            3   10     4       aw  Lorg/objectweb/asm/AnnotationWriter;
    MethodParameters:
         Name  Flags
      desc     final
      visible  final

  public void visitAttribute(org.objectweb.asm.Attribute);
    descriptor: (Lorg/objectweb/asm/Attribute;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.objectweb.asm.FieldWriter this
        start local 1 // org.objectweb.asm.Attribute attr
         0: .line 155
            aload 1 /* attr */
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.attrs:Lorg/objectweb/asm/Attribute;
            putfield org.objectweb.asm.Attribute.next:Lorg/objectweb/asm/Attribute;
         1: .line 156
            aload 0 /* this */
            aload 1 /* attr */
            putfield org.objectweb.asm.FieldWriter.attrs:Lorg/objectweb/asm/Attribute;
         2: .line 157
            return
        end local 1 // org.objectweb.asm.Attribute attr
        end local 0 // org.objectweb.asm.FieldWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/objectweb/asm/FieldWriter;
            0    3     1  attr  Lorg/objectweb/asm/Attribute;
    MethodParameters:
      Name  Flags
      attr  final

  public void visitEnd();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // org.objectweb.asm.FieldWriter this
         0: .line 161
            return
        end local 0 // org.objectweb.asm.FieldWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/FieldWriter;

  int getSize();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=7, locals=2, args_size=1
        start local 0 // org.objectweb.asm.FieldWriter this
         0: .line 173
            bipush 8
            istore 1 /* size */
        start local 1 // int size
         1: .line 174
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.value:I
            ifeq 4
         2: .line 175
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.cw:Lorg/objectweb/asm/ClassWriter;
            ldc "ConstantValue"
            invokevirtual org.objectweb.asm.ClassWriter.newUTF8:(Ljava/lang/String;)I
            pop
         3: .line 176
            iinc 1 /* size */ 8
         4: .line 178
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.access:I
            sipush 4096
            iand
            ifeq 9
         5: .line 179
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.cw:Lorg/objectweb/asm/ClassWriter;
            getfield org.objectweb.asm.ClassWriter.version:I
            ldc 65535
            iand
            bipush 49
            if_icmplt 7
         6: .line 180
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.access:I
            ldc 262144
            iand
            ifeq 9
         7: .line 181
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.cw:Lorg/objectweb/asm/ClassWriter;
            ldc "Synthetic"
            invokevirtual org.objectweb.asm.ClassWriter.newUTF8:(Ljava/lang/String;)I
            pop
         8: .line 182
            iinc 1 /* size */ 6
         9: .line 185
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.access:I
            ldc 131072
            iand
            ifeq 12
        10: .line 186
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.cw:Lorg/objectweb/asm/ClassWriter;
            ldc "Deprecated"
            invokevirtual org.objectweb.asm.ClassWriter.newUTF8:(Ljava/lang/String;)I
            pop
        11: .line 187
            iinc 1 /* size */ 6
        12: .line 189
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.signature:I
            ifeq 15
        13: .line 190
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.cw:Lorg/objectweb/asm/ClassWriter;
            ldc "Signature"
            invokevirtual org.objectweb.asm.ClassWriter.newUTF8:(Ljava/lang/String;)I
            pop
        14: .line 191
            iinc 1 /* size */ 8
        15: .line 193
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.anns:Lorg/objectweb/asm/AnnotationWriter;
            ifnull 18
        16: .line 194
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.cw:Lorg/objectweb/asm/ClassWriter;
            ldc "RuntimeVisibleAnnotations"
            invokevirtual org.objectweb.asm.ClassWriter.newUTF8:(Ljava/lang/String;)I
            pop
        17: .line 195
            iload 1 /* size */
            bipush 8
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.anns:Lorg/objectweb/asm/AnnotationWriter;
            invokevirtual org.objectweb.asm.AnnotationWriter.getSize:()I
            iadd
            iadd
            istore 1 /* size */
        18: .line 197
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.ianns:Lorg/objectweb/asm/AnnotationWriter;
            ifnull 21
        19: .line 198
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.cw:Lorg/objectweb/asm/ClassWriter;
            ldc "RuntimeInvisibleAnnotations"
            invokevirtual org.objectweb.asm.ClassWriter.newUTF8:(Ljava/lang/String;)I
            pop
        20: .line 199
            iload 1 /* size */
            bipush 8
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.ianns:Lorg/objectweb/asm/AnnotationWriter;
            invokevirtual org.objectweb.asm.AnnotationWriter.getSize:()I
            iadd
            iadd
            istore 1 /* size */
        21: .line 201
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.attrs:Lorg/objectweb/asm/Attribute;
            ifnull 23
        22: .line 202
            iload 1 /* size */
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.attrs:Lorg/objectweb/asm/Attribute;
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.cw:Lorg/objectweb/asm/ClassWriter;
            aconst_null
            iconst_0
            iconst_m1
            iconst_m1
            invokevirtual org.objectweb.asm.Attribute.getSize:(Lorg/objectweb/asm/ClassWriter;[BIII)I
            iadd
            istore 1 /* size */
        23: .line 204
      StackMap locals:
      StackMap stack:
            iload 1 /* size */
            ireturn
        end local 1 // int size
        end local 0 // org.objectweb.asm.FieldWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   24     0  this  Lorg/objectweb/asm/FieldWriter;
            1   24     1  size  I

  void put(org.objectweb.asm.ByteVector);
    descriptor: (Lorg/objectweb/asm/ByteVector;)V
    flags: (0x0000) 
    Code:
      stack=7, locals=4, args_size=2
        start local 0 // org.objectweb.asm.FieldWriter this
        start local 1 // org.objectweb.asm.ByteVector out
         0: .line 215
            ldc 393216
         1: .line 216
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.access:I
            ldc 262144
            iand
            bipush 64
            idiv
         2: .line 215
            ior
            istore 2 /* mask */
        start local 2 // int mask
         3: .line 217
            aload 1 /* out */
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.access:I
            iload 2 /* mask */
            iconst_m1
            ixor
            iand
            invokevirtual org.objectweb.asm.ByteVector.putShort:(I)Lorg/objectweb/asm/ByteVector;
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.name:I
            invokevirtual org.objectweb.asm.ByteVector.putShort:(I)Lorg/objectweb/asm/ByteVector;
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.desc:I
            invokevirtual org.objectweb.asm.ByteVector.putShort:(I)Lorg/objectweb/asm/ByteVector;
            pop
         4: .line 218
            iconst_0
            istore 3 /* attributeCount */
        start local 3 // int attributeCount
         5: .line 219
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.value:I
            ifeq 7
         6: .line 220
            iinc 3 /* attributeCount */ 1
         7: .line 222
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.access:I
            sipush 4096
            iand
            ifeq 11
         8: .line 223
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.cw:Lorg/objectweb/asm/ClassWriter;
            getfield org.objectweb.asm.ClassWriter.version:I
            ldc 65535
            iand
            bipush 49
            if_icmplt 10
         9: .line 224
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.access:I
            ldc 262144
            iand
            ifeq 11
        10: .line 225
      StackMap locals:
      StackMap stack:
            iinc 3 /* attributeCount */ 1
        11: .line 228
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.access:I
            ldc 131072
            iand
            ifeq 13
        12: .line 229
            iinc 3 /* attributeCount */ 1
        13: .line 231
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.signature:I
            ifeq 15
        14: .line 232
            iinc 3 /* attributeCount */ 1
        15: .line 234
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.anns:Lorg/objectweb/asm/AnnotationWriter;
            ifnull 17
        16: .line 235
            iinc 3 /* attributeCount */ 1
        17: .line 237
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.ianns:Lorg/objectweb/asm/AnnotationWriter;
            ifnull 19
        18: .line 238
            iinc 3 /* attributeCount */ 1
        19: .line 240
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.attrs:Lorg/objectweb/asm/Attribute;
            ifnull 21
        20: .line 241
            iload 3 /* attributeCount */
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.attrs:Lorg/objectweb/asm/Attribute;
            invokevirtual org.objectweb.asm.Attribute.getCount:()I
            iadd
            istore 3 /* attributeCount */
        21: .line 243
      StackMap locals:
      StackMap stack:
            aload 1 /* out */
            iload 3 /* attributeCount */
            invokevirtual org.objectweb.asm.ByteVector.putShort:(I)Lorg/objectweb/asm/ByteVector;
            pop
        22: .line 244
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.value:I
            ifeq 25
        23: .line 245
            aload 1 /* out */
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.cw:Lorg/objectweb/asm/ClassWriter;
            ldc "ConstantValue"
            invokevirtual org.objectweb.asm.ClassWriter.newUTF8:(Ljava/lang/String;)I
            invokevirtual org.objectweb.asm.ByteVector.putShort:(I)Lorg/objectweb/asm/ByteVector;
            pop
        24: .line 246
            aload 1 /* out */
            iconst_2
            invokevirtual org.objectweb.asm.ByteVector.putInt:(I)Lorg/objectweb/asm/ByteVector;
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.value:I
            invokevirtual org.objectweb.asm.ByteVector.putShort:(I)Lorg/objectweb/asm/ByteVector;
            pop
        25: .line 248
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.access:I
            sipush 4096
            iand
            ifeq 29
        26: .line 249
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.cw:Lorg/objectweb/asm/ClassWriter;
            getfield org.objectweb.asm.ClassWriter.version:I
            ldc 65535
            iand
            bipush 49
            if_icmplt 28
        27: .line 250
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.access:I
            ldc 262144
            iand
            ifeq 29
        28: .line 251
      StackMap locals:
      StackMap stack:
            aload 1 /* out */
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.cw:Lorg/objectweb/asm/ClassWriter;
            ldc "Synthetic"
            invokevirtual org.objectweb.asm.ClassWriter.newUTF8:(Ljava/lang/String;)I
            invokevirtual org.objectweb.asm.ByteVector.putShort:(I)Lorg/objectweb/asm/ByteVector;
            iconst_0
            invokevirtual org.objectweb.asm.ByteVector.putInt:(I)Lorg/objectweb/asm/ByteVector;
            pop
        29: .line 254
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.access:I
            ldc 131072
            iand
            ifeq 31
        30: .line 255
            aload 1 /* out */
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.cw:Lorg/objectweb/asm/ClassWriter;
            ldc "Deprecated"
            invokevirtual org.objectweb.asm.ClassWriter.newUTF8:(Ljava/lang/String;)I
            invokevirtual org.objectweb.asm.ByteVector.putShort:(I)Lorg/objectweb/asm/ByteVector;
            iconst_0
            invokevirtual org.objectweb.asm.ByteVector.putInt:(I)Lorg/objectweb/asm/ByteVector;
            pop
        31: .line 257
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.signature:I
            ifeq 34
        32: .line 258
            aload 1 /* out */
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.cw:Lorg/objectweb/asm/ClassWriter;
            ldc "Signature"
            invokevirtual org.objectweb.asm.ClassWriter.newUTF8:(Ljava/lang/String;)I
            invokevirtual org.objectweb.asm.ByteVector.putShort:(I)Lorg/objectweb/asm/ByteVector;
            pop
        33: .line 259
            aload 1 /* out */
            iconst_2
            invokevirtual org.objectweb.asm.ByteVector.putInt:(I)Lorg/objectweb/asm/ByteVector;
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.signature:I
            invokevirtual org.objectweb.asm.ByteVector.putShort:(I)Lorg/objectweb/asm/ByteVector;
            pop
        34: .line 261
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.anns:Lorg/objectweb/asm/AnnotationWriter;
            ifnull 37
        35: .line 262
            aload 1 /* out */
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.cw:Lorg/objectweb/asm/ClassWriter;
            ldc "RuntimeVisibleAnnotations"
            invokevirtual org.objectweb.asm.ClassWriter.newUTF8:(Ljava/lang/String;)I
            invokevirtual org.objectweb.asm.ByteVector.putShort:(I)Lorg/objectweb/asm/ByteVector;
            pop
        36: .line 263
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.anns:Lorg/objectweb/asm/AnnotationWriter;
            aload 1 /* out */
            invokevirtual org.objectweb.asm.AnnotationWriter.put:(Lorg/objectweb/asm/ByteVector;)V
        37: .line 265
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.ianns:Lorg/objectweb/asm/AnnotationWriter;
            ifnull 40
        38: .line 266
            aload 1 /* out */
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.cw:Lorg/objectweb/asm/ClassWriter;
            ldc "RuntimeInvisibleAnnotations"
            invokevirtual org.objectweb.asm.ClassWriter.newUTF8:(Ljava/lang/String;)I
            invokevirtual org.objectweb.asm.ByteVector.putShort:(I)Lorg/objectweb/asm/ByteVector;
            pop
        39: .line 267
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.ianns:Lorg/objectweb/asm/AnnotationWriter;
            aload 1 /* out */
            invokevirtual org.objectweb.asm.AnnotationWriter.put:(Lorg/objectweb/asm/ByteVector;)V
        40: .line 269
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.attrs:Lorg/objectweb/asm/Attribute;
            ifnull 42
        41: .line 270
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.attrs:Lorg/objectweb/asm/Attribute;
            aload 0 /* this */
            getfield org.objectweb.asm.FieldWriter.cw:Lorg/objectweb/asm/ClassWriter;
            aconst_null
            iconst_0
            iconst_m1
            iconst_m1
            aload 1 /* out */
            invokevirtual org.objectweb.asm.Attribute.put:(Lorg/objectweb/asm/ClassWriter;[BIIILorg/objectweb/asm/ByteVector;)V
        42: .line 272
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int attributeCount
        end local 2 // int mask
        end local 1 // org.objectweb.asm.ByteVector out
        end local 0 // org.objectweb.asm.FieldWriter this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   43     0            this  Lorg/objectweb/asm/FieldWriter;
            0   43     1             out  Lorg/objectweb/asm/ByteVector;
            3   43     2            mask  I
            5   43     3  attributeCount  I
    MethodParameters:
      Name  Flags
      out   final
}
SourceFile: "FieldWriter.java"