public class org.objectweb.asm.tree.AnnotationNode extends org.objectweb.asm.AnnotationVisitor
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.objectweb.asm.tree.AnnotationNode
  super_class: org.objectweb.asm.AnnotationVisitor
{
  public java.lang.String desc;
    descriptor: Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC

  public java.util.List<java.lang.Object> values;
    descriptor: Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Signature: Ljava/util/List<Ljava/lang/Object;>;

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.AnnotationNode this
        start local 1 // java.lang.String desc
         0: .line 72
            aload 0 /* this */
            ldc 262144
            aload 1 /* desc */
            invokespecial org.objectweb.asm.tree.AnnotationNode.<init>:(ILjava/lang/String;)V
         1: .line 73
            return
        end local 1 // java.lang.String desc
        end local 0 // org.objectweb.asm.tree.AnnotationNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/objectweb/asm/tree/AnnotationNode;
            0    2     1  desc  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      desc  final

  public void <init>(int, java.lang.String);
    descriptor: (ILjava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.objectweb.asm.tree.AnnotationNode this
        start local 1 // int api
        start local 2 // java.lang.String desc
         0: .line 85
            aload 0 /* this */
            iload 1 /* api */
            invokespecial org.objectweb.asm.AnnotationVisitor.<init>:(I)V
         1: .line 86
            aload 0 /* this */
            aload 2 /* desc */
            putfield org.objectweb.asm.tree.AnnotationNode.desc:Ljava/lang/String;
         2: .line 87
            return
        end local 2 // java.lang.String desc
        end local 1 // int api
        end local 0 // org.objectweb.asm.tree.AnnotationNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/objectweb/asm/tree/AnnotationNode;
            0    3     1   api  I
            0    3     2  desc  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      api   final
      desc  final

  void <init>(java.util.List<java.lang.Object>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.AnnotationNode this
        start local 1 // java.util.List values
         0: .line 96
            aload 0 /* this */
            ldc 262144
            invokespecial org.objectweb.asm.AnnotationVisitor.<init>:(I)V
         1: .line 97
            aload 0 /* this */
            aload 1 /* values */
            putfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
         2: .line 98
            return
        end local 1 // java.util.List values
        end local 0 // org.objectweb.asm.tree.AnnotationNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/objectweb/asm/tree/AnnotationNode;
            0    3     1  values  Ljava/util/List<Ljava/lang/Object;>;
    Signature: (Ljava/util/List<Ljava/lang/Object;>;)V
    MethodParameters:
        Name  Flags
      values  final

  public void visit(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.objectweb.asm.tree.AnnotationNode this
        start local 1 // java.lang.String name
        start local 2 // java.lang.Object value
         0: .line 106
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
            ifnonnull 5
         1: .line 107
            aload 0 /* this */
         2: new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.desc:Ljava/lang/String;
            ifnull 3
            iconst_2
            goto 4
      StackMap locals: org.objectweb.asm.tree.AnnotationNode java.lang.String java.lang.Object
      StackMap stack: org.objectweb.asm.tree.AnnotationNode new 2 new 2
         3: iconst_1
      StackMap locals: org.objectweb.asm.tree.AnnotationNode java.lang.String java.lang.Object
      StackMap stack: org.objectweb.asm.tree.AnnotationNode new 2 new 2 int
         4: invokespecial java.util.ArrayList.<init>:(I)V
            putfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
         5: .line 109
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.desc:Ljava/lang/String;
            ifnull 7
         6: .line 110
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
            aload 1 /* name */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         7: .line 112
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
            aload 2 /* value */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         8: .line 113
            return
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String name
        end local 0 // org.objectweb.asm.tree.AnnotationNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/objectweb/asm/tree/AnnotationNode;
            0    9     1   name  Ljava/lang/String;
            0    9     2  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      name   final
      value  final

  public void visitEnum(java.lang.String, java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.objectweb.asm.tree.AnnotationNode this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String desc
        start local 3 // java.lang.String value
         0: .line 118
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
            ifnonnull 5
         1: .line 119
            aload 0 /* this */
         2: new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.desc:Ljava/lang/String;
            ifnull 3
            iconst_2
            goto 4
      StackMap locals: org.objectweb.asm.tree.AnnotationNode java.lang.String java.lang.String java.lang.String
      StackMap stack: org.objectweb.asm.tree.AnnotationNode new 2 new 2
         3: iconst_1
      StackMap locals: org.objectweb.asm.tree.AnnotationNode java.lang.String java.lang.String java.lang.String
      StackMap stack: org.objectweb.asm.tree.AnnotationNode new 2 new 2 int
         4: invokespecial java.util.ArrayList.<init>:(I)V
            putfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
         5: .line 121
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.desc:Ljava/lang/String;
            ifnull 7
         6: .line 122
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
            aload 1 /* name */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         7: .line 124
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
            iconst_2
            anewarray java.lang.String
            dup
            iconst_0
            aload 2 /* desc */
            aastore
            dup
            iconst_1
            aload 3 /* value */
            aastore
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         8: .line 125
            return
        end local 3 // java.lang.String value
        end local 2 // java.lang.String desc
        end local 1 // java.lang.String name
        end local 0 // org.objectweb.asm.tree.AnnotationNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/objectweb/asm/tree/AnnotationNode;
            0    9     1   name  Ljava/lang/String;
            0    9     2   desc  Ljava/lang/String;
            0    9     3  value  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      name   final
      desc   final
      value  final

  public org.objectweb.asm.AnnotationVisitor visitAnnotation(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lorg/objectweb/asm/AnnotationVisitor;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.objectweb.asm.tree.AnnotationNode this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String desc
         0: .line 130
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
            ifnonnull 5
         1: .line 131
            aload 0 /* this */
         2: new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.desc:Ljava/lang/String;
            ifnull 3
            iconst_2
            goto 4
      StackMap locals: org.objectweb.asm.tree.AnnotationNode java.lang.String java.lang.String
      StackMap stack: org.objectweb.asm.tree.AnnotationNode new 2 new 2
         3: iconst_1
      StackMap locals: org.objectweb.asm.tree.AnnotationNode java.lang.String java.lang.String
      StackMap stack: org.objectweb.asm.tree.AnnotationNode new 2 new 2 int
         4: invokespecial java.util.ArrayList.<init>:(I)V
            putfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
         5: .line 133
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.desc:Ljava/lang/String;
            ifnull 7
         6: .line 134
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
            aload 1 /* name */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         7: .line 136
      StackMap locals:
      StackMap stack:
            new org.objectweb.asm.tree.AnnotationNode
            dup
            aload 2 /* desc */
            invokespecial org.objectweb.asm.tree.AnnotationNode.<init>:(Ljava/lang/String;)V
            astore 3 /* annotation */
        start local 3 // org.objectweb.asm.tree.AnnotationNode annotation
         8: .line 137
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
            aload 3 /* annotation */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         9: .line 138
            aload 3 /* annotation */
            areturn
        end local 3 // org.objectweb.asm.tree.AnnotationNode annotation
        end local 2 // java.lang.String desc
        end local 1 // java.lang.String name
        end local 0 // org.objectweb.asm.tree.AnnotationNode this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Lorg/objectweb/asm/tree/AnnotationNode;
            0   10     1        name  Ljava/lang/String;
            0   10     2        desc  Ljava/lang/String;
            8   10     3  annotation  Lorg/objectweb/asm/tree/AnnotationNode;
    MethodParameters:
      Name  Flags
      name  final
      desc  final

  public org.objectweb.asm.AnnotationVisitor visitArray(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/objectweb/asm/AnnotationVisitor;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.objectweb.asm.tree.AnnotationNode this
        start local 1 // java.lang.String name
         0: .line 143
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
            ifnonnull 5
         1: .line 144
            aload 0 /* this */
         2: new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.desc:Ljava/lang/String;
            ifnull 3
            iconst_2
            goto 4
      StackMap locals: org.objectweb.asm.tree.AnnotationNode java.lang.String
      StackMap stack: org.objectweb.asm.tree.AnnotationNode new 2 new 2
         3: iconst_1
      StackMap locals: org.objectweb.asm.tree.AnnotationNode java.lang.String
      StackMap stack: org.objectweb.asm.tree.AnnotationNode new 2 new 2 int
         4: invokespecial java.util.ArrayList.<init>:(I)V
            putfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
         5: .line 146
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.desc:Ljava/lang/String;
            ifnull 7
         6: .line 147
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
            aload 1 /* name */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         7: .line 149
      StackMap locals:
      StackMap stack:
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* array */
        start local 2 // java.util.List array
         8: .line 150
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
            aload 2 /* array */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         9: .line 151
            new org.objectweb.asm.tree.AnnotationNode
            dup
            aload 2 /* array */
            invokespecial org.objectweb.asm.tree.AnnotationNode.<init>:(Ljava/util/List;)V
            areturn
        end local 2 // java.util.List array
        end local 1 // java.lang.String name
        end local 0 // org.objectweb.asm.tree.AnnotationNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/objectweb/asm/tree/AnnotationNode;
            0   10     1   name  Ljava/lang/String;
            8   10     2  array  Ljava/util/List<Ljava/lang/Object;>;
    MethodParameters:
      Name  Flags
      name  final

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

  public void check(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.AnnotationNode this
        start local 1 // int api
         0: .line 173
            return
        end local 1 // int api
        end local 0 // org.objectweb.asm.tree.AnnotationNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/tree/AnnotationNode;
            0    1     1   api  I
    MethodParameters:
      Name  Flags
      api   final

  public void accept(org.objectweb.asm.AnnotationVisitor);
    descriptor: (Lorg/objectweb/asm/AnnotationVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.objectweb.asm.tree.AnnotationNode this
        start local 1 // org.objectweb.asm.AnnotationVisitor av
         0: .line 182
            aload 1 /* av */
            ifnull 10
         1: .line 183
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
            ifnull 9
         2: .line 184
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 8
         4: .line 185
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast java.lang.String
            astore 3 /* name */
        start local 3 // java.lang.String name
         5: .line 186
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
            iload 2 /* i */
            iconst_1
            iadd
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
         6: .line 187
            aload 1 /* av */
            aload 3 /* name */
            aload 4 /* value */
            invokestatic org.objectweb.asm.tree.AnnotationNode.accept:(Lorg/objectweb/asm/AnnotationVisitor;Ljava/lang/String;Ljava/lang/Object;)V
        end local 4 // java.lang.Object value
        end local 3 // java.lang.String name
         7: .line 184
            iinc 2 /* i */ 2
      StackMap locals:
      StackMap stack:
         8: iload 2 /* i */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.AnnotationNode.values:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            if_icmplt 4
        end local 2 // int i
         9: .line 190
      StackMap locals:
      StackMap stack:
            aload 1 /* av */
            invokevirtual org.objectweb.asm.AnnotationVisitor.visitEnd:()V
        10: .line 192
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.objectweb.asm.AnnotationVisitor av
        end local 0 // org.objectweb.asm.tree.AnnotationNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lorg/objectweb/asm/tree/AnnotationNode;
            0   11     1     av  Lorg/objectweb/asm/AnnotationVisitor;
            3    9     2      i  I
            5    7     3   name  Ljava/lang/String;
            6    7     4  value  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      av    final

  static void accept(org.objectweb.asm.AnnotationVisitor, java.lang.String, java.lang.Object);
    descriptor: (Lorg/objectweb/asm/AnnotationVisitor;Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.objectweb.asm.AnnotationVisitor av
        start local 1 // java.lang.String name
        start local 2 // java.lang.Object value
         0: .line 206
            aload 0 /* av */
            ifnull 20
         1: .line 207
            aload 2 /* value */
            instanceof java.lang.String[]
            ifeq 5
         2: .line 208
            aload 2 /* value */
            checkcast java.lang.String[]
            astore 3 /* typeconst */
        start local 3 // java.lang.String[] typeconst
         3: .line 209
            aload 0 /* av */
            aload 1 /* name */
            aload 3 /* typeconst */
            iconst_0
            aaload
            aload 3 /* typeconst */
            iconst_1
            aaload
            invokevirtual org.objectweb.asm.AnnotationVisitor.visitEnum:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
        end local 3 // java.lang.String[] typeconst
         4: .line 210
            goto 20
      StackMap locals:
      StackMap stack:
         5: aload 2 /* value */
            instanceof org.objectweb.asm.tree.AnnotationNode
            ifeq 9
         6: .line 211
            aload 2 /* value */
            checkcast org.objectweb.asm.tree.AnnotationNode
            astore 3 /* an */
        start local 3 // org.objectweb.asm.tree.AnnotationNode an
         7: .line 212
            aload 3 /* an */
            aload 0 /* av */
            aload 1 /* name */
            aload 3 /* an */
            getfield org.objectweb.asm.tree.AnnotationNode.desc:Ljava/lang/String;
            invokevirtual org.objectweb.asm.AnnotationVisitor.visitAnnotation:(Ljava/lang/String;Ljava/lang/String;)Lorg/objectweb/asm/AnnotationVisitor;
            invokevirtual org.objectweb.asm.tree.AnnotationNode.accept:(Lorg/objectweb/asm/AnnotationVisitor;)V
        end local 3 // org.objectweb.asm.tree.AnnotationNode an
         8: .line 213
            goto 20
      StackMap locals:
      StackMap stack:
         9: aload 2 /* value */
            instanceof java.util.List
            ifeq 19
        10: .line 214
            aload 0 /* av */
            aload 1 /* name */
            invokevirtual org.objectweb.asm.AnnotationVisitor.visitArray:(Ljava/lang/String;)Lorg/objectweb/asm/AnnotationVisitor;
            astore 3 /* v */
        start local 3 // org.objectweb.asm.AnnotationVisitor v
        11: .line 215
            aload 2 /* value */
            checkcast java.util.List
            astore 4 /* array */
        start local 4 // java.util.List array
        12: .line 216
            iconst_0
            istore 5 /* j */
        start local 5 // int j
        13: goto 16
        14: .line 217
      StackMap locals: org.objectweb.asm.AnnotationVisitor java.util.List int
      StackMap stack:
            aload 3 /* v */
            aconst_null
            aload 4 /* array */
            iload 5 /* j */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            invokestatic org.objectweb.asm.tree.AnnotationNode.accept:(Lorg/objectweb/asm/AnnotationVisitor;Ljava/lang/String;Ljava/lang/Object;)V
        15: .line 216
            iinc 5 /* j */ 1
      StackMap locals:
      StackMap stack:
        16: iload 5 /* j */
            aload 4 /* array */
            invokeinterface java.util.List.size:()I
            if_icmplt 14
        end local 5 // int j
        17: .line 219
            aload 3 /* v */
            invokevirtual org.objectweb.asm.AnnotationVisitor.visitEnd:()V
        end local 4 // java.util.List array
        end local 3 // org.objectweb.asm.AnnotationVisitor v
        18: .line 220
            goto 20
        19: .line 221
      StackMap locals:
      StackMap stack:
            aload 0 /* av */
            aload 1 /* name */
            aload 2 /* value */
            invokevirtual org.objectweb.asm.AnnotationVisitor.visit:(Ljava/lang/String;Ljava/lang/Object;)V
        20: .line 224
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String name
        end local 0 // org.objectweb.asm.AnnotationVisitor av
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   21     0         av  Lorg/objectweb/asm/AnnotationVisitor;
            0   21     1       name  Ljava/lang/String;
            0   21     2      value  Ljava/lang/Object;
            3    4     3  typeconst  [Ljava/lang/String;
            7    8     3         an  Lorg/objectweb/asm/tree/AnnotationNode;
           11   18     3          v  Lorg/objectweb/asm/AnnotationVisitor;
           12   18     4      array  Ljava/util/List<*>;
           13   17     5          j  I
    MethodParameters:
       Name  Flags
      av     final
      name   final
      value  final
}
SourceFile: "AnnotationNode.java"