public class com.sun.tools.javac.util.ListBuffer<A> extends java.util.AbstractQueue<A>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.tools.javac.util.ListBuffer
  super_class: java.util.AbstractQueue
{
  private com.sun.tools.javac.util.List<A> elems;
    descriptor: Lcom/sun/tools/javac/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lcom/sun/tools/javac/util/List<TA;>;

  private com.sun.tools.javac.util.List<A> last;
    descriptor: Lcom/sun/tools/javac/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lcom/sun/tools/javac/util/List<TA;>;

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

  private boolean shared;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  public static <T> com.sun.tools.javac.util.ListBuffer<T> of(T);
    descriptor: (Ljava/lang/Object;)Lcom/sun/tools/javac/util/ListBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.lang.Object x
         0: .line 44
            new com.sun.tools.javac.util.ListBuffer
            dup
            invokespecial com.sun.tools.javac.util.ListBuffer.<init>:()V
            astore 1 /* lb */
        start local 1 // com.sun.tools.javac.util.ListBuffer lb
         1: .line 45
            aload 1 /* lb */
            aload 0 /* x */
            invokevirtual com.sun.tools.javac.util.ListBuffer.add:(Ljava/lang/Object;)Z
            pop
         2: .line 46
            aload 1 /* lb */
            areturn
        end local 1 // com.sun.tools.javac.util.ListBuffer lb
        end local 0 // java.lang.Object x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0     x  TT;
            1    3     1    lb  Lcom/sun/tools/javac/util/ListBuffer<TT;>;
    Signature: <T:Ljava/lang/Object;>(TT;)Lcom/sun/tools/javac/util/ListBuffer<TT;>;
    MethodParameters:
      Name  Flags
      x     

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.util.ListBuffer this
         0: .line 68
            aload 0 /* this */
            invokespecial java.util.AbstractQueue.<init>:()V
         1: .line 69
            aload 0 /* this */
            invokevirtual com.sun.tools.javac.util.ListBuffer.clear:()V
         2: .line 70
            return
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;

  public final void clear();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.util.ListBuffer this
         0: .line 73
            aload 0 /* this */
            invokestatic com.sun.tools.javac.util.List.nil:()Lcom/sun/tools/javac/util/List;
            putfield com.sun.tools.javac.util.ListBuffer.elems:Lcom/sun/tools/javac/util/List;
         1: .line 74
            aload 0 /* this */
            aconst_null
            putfield com.sun.tools.javac.util.ListBuffer.last:Lcom/sun/tools/javac/util/List;
         2: .line 75
            aload 0 /* this */
            iconst_0
            putfield com.sun.tools.javac.util.ListBuffer.count:I
         3: .line 76
            aload 0 /* this */
            iconst_0
            putfield com.sun.tools.javac.util.ListBuffer.shared:Z
         4: .line 77
            return
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;

  public int length();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.util.ListBuffer this
         0: .line 82
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.count:I
            ireturn
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.util.ListBuffer this
         0: .line 85
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.count:I
            ireturn
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.util.ListBuffer this
         0: .line 91
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.count:I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;

  public boolean nonEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.util.ListBuffer this
         0: .line 97
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.count:I
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;

  private void copy();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.sun.tools.javac.util.ListBuffer this
         0: .line 103
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.elems:Lcom/sun/tools/javac/util/List;
            invokevirtual com.sun.tools.javac.util.List.nonEmpty:()Z
            ifeq 7
         1: .line 104
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.elems:Lcom/sun/tools/javac/util/List;
            astore 1 /* orig */
        start local 1 // com.sun.tools.javac.util.List orig
         2: .line 106
            aload 0 /* this */
            aload 0 /* this */
            aload 1 /* orig */
            getfield com.sun.tools.javac.util.List.head:Ljava/lang/Object;
            invokestatic com.sun.tools.javac.util.List.of:(Ljava/lang/Object;)Lcom/sun/tools/javac/util/List;
            dup_x1
            putfield com.sun.tools.javac.util.ListBuffer.last:Lcom/sun/tools/javac/util/List;
            putfield com.sun.tools.javac.util.ListBuffer.elems:Lcom/sun/tools/javac/util/List;
         3: .line 108
            goto 6
         4: .line 109
      StackMap locals: com.sun.tools.javac.util.List
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.last:Lcom/sun/tools/javac/util/List;
            aload 1 /* orig */
            getfield com.sun.tools.javac.util.List.head:Ljava/lang/Object;
            invokestatic com.sun.tools.javac.util.List.of:(Ljava/lang/Object;)Lcom/sun/tools/javac/util/List;
            putfield com.sun.tools.javac.util.List.tail:Lcom/sun/tools/javac/util/List;
         5: .line 110
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.last:Lcom/sun/tools/javac/util/List;
            getfield com.sun.tools.javac.util.List.tail:Lcom/sun/tools/javac/util/List;
            putfield com.sun.tools.javac.util.ListBuffer.last:Lcom/sun/tools/javac/util/List;
         6: .line 108
      StackMap locals:
      StackMap stack:
            aload 1 /* orig */
            getfield com.sun.tools.javac.util.List.tail:Lcom/sun/tools/javac/util/List;
            dup
            astore 1 /* orig */
            invokevirtual com.sun.tools.javac.util.List.nonEmpty:()Z
            ifne 4
        end local 1 // com.sun.tools.javac.util.List orig
         7: .line 113
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
            2    7     1  orig  Lcom/sun/tools/javac/util/List<TA;>;

  public com.sun.tools.javac.util.ListBuffer<A> prepend(A);
    descriptor: (Ljava/lang/Object;)Lcom/sun/tools/javac/util/ListBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.tools.javac.util.ListBuffer this
        start local 1 // java.lang.Object x
         0: .line 118
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.elems:Lcom/sun/tools/javac/util/List;
            aload 1 /* x */
            invokevirtual com.sun.tools.javac.util.List.prepend:(Ljava/lang/Object;)Lcom/sun/tools/javac/util/List;
            putfield com.sun.tools.javac.util.ListBuffer.elems:Lcom/sun/tools/javac/util/List;
         1: .line 119
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.last:Lcom/sun/tools/javac/util/List;
            ifnonnull 2
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.elems:Lcom/sun/tools/javac/util/List;
            putfield com.sun.tools.javac.util.ListBuffer.last:Lcom/sun/tools/javac/util/List;
         2: .line 120
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.sun.tools.javac.util.ListBuffer.count:I
            iconst_1
            iadd
            putfield com.sun.tools.javac.util.ListBuffer.count:I
         3: .line 121
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Object x
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
            0    4     1     x  TA;
    Signature: (TA;)Lcom/sun/tools/javac/util/ListBuffer<TA;>;
    MethodParameters:
      Name  Flags
      x     

  public com.sun.tools.javac.util.ListBuffer<A> append(A);
    descriptor: (Ljava/lang/Object;)Lcom/sun/tools/javac/util/ListBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.sun.tools.javac.util.ListBuffer this
        start local 1 // java.lang.Object x
         0: .line 127
            aload 1 /* x */
            invokestatic com.sun.tools.javac.util.Assert.checkNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 128
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.shared:Z
            ifeq 2
            aload 0 /* this */
            invokevirtual com.sun.tools.javac.util.ListBuffer.copy:()V
         2: .line 129
      StackMap locals:
      StackMap stack:
            aload 1 /* x */
            invokestatic com.sun.tools.javac.util.List.of:(Ljava/lang/Object;)Lcom/sun/tools/javac/util/List;
            astore 2 /* newLast */
        start local 2 // com.sun.tools.javac.util.List newLast
         3: .line 130
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.last:Lcom/sun/tools/javac/util/List;
            ifnull 7
         4: .line 131
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.last:Lcom/sun/tools/javac/util/List;
            aload 2 /* newLast */
            putfield com.sun.tools.javac.util.List.tail:Lcom/sun/tools/javac/util/List;
         5: .line 132
            aload 0 /* this */
            aload 2 /* newLast */
            putfield com.sun.tools.javac.util.ListBuffer.last:Lcom/sun/tools/javac/util/List;
         6: .line 133
            goto 8
         7: .line 134
      StackMap locals: com.sun.tools.javac.util.List
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            aload 2 /* newLast */
            dup_x1
            putfield com.sun.tools.javac.util.ListBuffer.last:Lcom/sun/tools/javac/util/List;
            putfield com.sun.tools.javac.util.ListBuffer.elems:Lcom/sun/tools/javac/util/List;
         8: .line 136
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.sun.tools.javac.util.ListBuffer.count:I
            iconst_1
            iadd
            putfield com.sun.tools.javac.util.ListBuffer.count:I
         9: .line 137
            aload 0 /* this */
            areturn
        end local 2 // com.sun.tools.javac.util.List newLast
        end local 1 // java.lang.Object x
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
            0   10     1        x  TA;
            3   10     2  newLast  Lcom/sun/tools/javac/util/List<TA;>;
    Signature: (TA;)Lcom/sun/tools/javac/util/ListBuffer<TA;>;
    MethodParameters:
      Name  Flags
      x     

  public com.sun.tools.javac.util.ListBuffer<A> appendList(com.sun.tools.javac.util.List<A>);
    descriptor: (Lcom/sun/tools/javac/util/List;)Lcom/sun/tools/javac/util/ListBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.tools.javac.util.ListBuffer this
        start local 1 // com.sun.tools.javac.util.List xs
         0: .line 143
            goto 3
         1: .line 144
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* xs */
            getfield com.sun.tools.javac.util.List.head:Ljava/lang/Object;
            invokevirtual com.sun.tools.javac.util.ListBuffer.append:(Ljava/lang/Object;)Lcom/sun/tools/javac/util/ListBuffer;
            pop
         2: .line 145
            aload 1 /* xs */
            getfield com.sun.tools.javac.util.List.tail:Lcom/sun/tools/javac/util/List;
            astore 1 /* xs */
         3: .line 143
      StackMap locals:
      StackMap stack:
            aload 1 /* xs */
            invokevirtual com.sun.tools.javac.util.List.nonEmpty:()Z
            ifne 1
         4: .line 147
            aload 0 /* this */
            areturn
        end local 1 // com.sun.tools.javac.util.List xs
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
            0    5     1    xs  Lcom/sun/tools/javac/util/List<TA;>;
    Signature: (Lcom/sun/tools/javac/util/List<TA;>;)Lcom/sun/tools/javac/util/ListBuffer<TA;>;
    MethodParameters:
      Name  Flags
      xs    

  public com.sun.tools.javac.util.ListBuffer<A> appendList(com.sun.tools.javac.util.ListBuffer<A>);
    descriptor: (Lcom/sun/tools/javac/util/ListBuffer;)Lcom/sun/tools/javac/util/ListBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.tools.javac.util.ListBuffer this
        start local 1 // com.sun.tools.javac.util.ListBuffer xs
         0: .line 153
            aload 0 /* this */
            aload 1 /* xs */
            invokevirtual com.sun.tools.javac.util.ListBuffer.toList:()Lcom/sun/tools/javac/util/List;
            invokevirtual com.sun.tools.javac.util.ListBuffer.appendList:(Lcom/sun/tools/javac/util/List;)Lcom/sun/tools/javac/util/ListBuffer;
            areturn
        end local 1 // com.sun.tools.javac.util.ListBuffer xs
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
            0    1     1    xs  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
    Signature: (Lcom/sun/tools/javac/util/ListBuffer<TA;>;)Lcom/sun/tools/javac/util/ListBuffer<TA;>;
    MethodParameters:
      Name  Flags
      xs    

  public com.sun.tools.javac.util.ListBuffer<A> appendArray(A[]);
    descriptor: ([Ljava/lang/Object;)Lcom/sun/tools/javac/util/ListBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // com.sun.tools.javac.util.ListBuffer this
        start local 1 // java.lang.Object[] xs
         0: .line 159
            aload 1 /* xs */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 4
      StackMap locals: com.sun.tools.javac.util.ListBuffer java.lang.Object[] top int int java.lang.Object[]
      StackMap stack:
         1: aload 5
            iload 3
            aaload
            astore 2 /* x */
        start local 2 // java.lang.Object x
         2: .line 160
            aload 0 /* this */
            aload 2 /* x */
            invokevirtual com.sun.tools.javac.util.ListBuffer.append:(Ljava/lang/Object;)Lcom/sun/tools/javac/util/ListBuffer;
            pop
        end local 2 // java.lang.Object x
         3: .line 159
            iinc 3 1
      StackMap locals:
      StackMap stack:
         4: iload 3
            iload 4
            if_icmplt 1
         5: .line 162
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Object[] xs
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
            0    6     1    xs  [Ljava/lang/Object;
            2    3     2     x  TA;
    Signature: ([TA;)Lcom/sun/tools/javac/util/ListBuffer<TA;>;
    MethodParameters:
      Name  Flags
      xs    

  public com.sun.tools.javac.util.List<A> toList();
    descriptor: ()Lcom/sun/tools/javac/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.util.ListBuffer this
         0: .line 168
            aload 0 /* this */
            iconst_1
            putfield com.sun.tools.javac.util.ListBuffer.shared:Z
         1: .line 169
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.elems:Lcom/sun/tools/javac/util/List;
            areturn
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
    Signature: ()Lcom/sun/tools/javac/util/List<TA;>;

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.tools.javac.util.ListBuffer this
        start local 1 // java.lang.Object x
         0: .line 175
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.elems:Lcom/sun/tools/javac/util/List;
            aload 1 /* x */
            invokevirtual com.sun.tools.javac.util.List.contains:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object x
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
            0    1     1     x  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      x     

  public <T> T[] toArray();
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.tools.javac.util.ListBuffer this
        start local 1 // java.lang.Object[] vec
         0: .line 181
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.elems:Lcom/sun/tools/javac/util/List;
            aload 1 /* vec */
            invokevirtual com.sun.tools.javac.util.List.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object[] vec
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
            0    1     1   vec  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)[TT;
    MethodParameters:
      Name  Flags
      vec   

  public java.lang.Object[] toArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.util.ListBuffer this
         0: .line 184
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.sun.tools.javac.util.ListBuffer.size:()I
            anewarray java.lang.Object
            invokevirtual com.sun.tools.javac.util.ListBuffer.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            areturn
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;

  public A first();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.util.ListBuffer this
         0: .line 190
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.elems:Lcom/sun/tools/javac/util/List;
            getfield com.sun.tools.javac.util.List.head:Ljava/lang/Object;
            areturn
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
    Signature: ()TA;

  public A next();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.sun.tools.javac.util.ListBuffer this
         0: .line 196
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.elems:Lcom/sun/tools/javac/util/List;
            getfield com.sun.tools.javac.util.List.head:Ljava/lang/Object;
            astore 1 /* x */
        start local 1 // java.lang.Object x
         1: .line 197
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.elems:Lcom/sun/tools/javac/util/List;
            invokevirtual com.sun.tools.javac.util.List.isEmpty:()Z
            ifne 5
         2: .line 198
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.elems:Lcom/sun/tools/javac/util/List;
            getfield com.sun.tools.javac.util.List.tail:Lcom/sun/tools/javac/util/List;
            putfield com.sun.tools.javac.util.ListBuffer.elems:Lcom/sun/tools/javac/util/List;
         3: .line 199
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.elems:Lcom/sun/tools/javac/util/List;
            invokevirtual com.sun.tools.javac.util.List.isEmpty:()Z
            ifeq 4
            aload 0 /* this */
            aconst_null
            putfield com.sun.tools.javac.util.ListBuffer.last:Lcom/sun/tools/javac/util/List;
         4: .line 200
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.sun.tools.javac.util.ListBuffer.count:I
            iconst_1
            isub
            putfield com.sun.tools.javac.util.ListBuffer.count:I
         5: .line 202
      StackMap locals:
      StackMap stack:
            aload 1 /* x */
            areturn
        end local 1 // java.lang.Object x
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
            1    6     1     x  TA;
    Signature: ()TA;

  public java.util.Iterator<A> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.util.ListBuffer this
         0: .line 208
            new com.sun.tools.javac.util.ListBuffer$1
            dup
            aload 0 /* this */
            invokespecial com.sun.tools.javac.util.ListBuffer$1.<init>:(Lcom/sun/tools/javac/util/ListBuffer;)V
            areturn
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
    Signature: ()Ljava/util/Iterator<TA;>;

  public boolean add();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.tools.javac.util.ListBuffer this
        start local 1 // java.lang.Object a
         0: .line 227
            aload 0 /* this */
            aload 1 /* a */
            invokevirtual com.sun.tools.javac.util.ListBuffer.append:(Ljava/lang/Object;)Lcom/sun/tools/javac/util/ListBuffer;
            pop
         1: .line 228
            iconst_1
            ireturn
        end local 1 // java.lang.Object a
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
            0    2     1     a  TA;
    Signature: (TA;)Z
    MethodParameters:
      Name  Flags
      a     

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.tools.javac.util.ListBuffer this
        start local 1 // java.lang.Object o
         0: .line 232
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.lang.Object o
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
            0    1     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public boolean containsAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.sun.tools.javac.util.ListBuffer this
        start local 1 // java.util.Collection c
         0: .line 236
            aload 1 /* c */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: com.sun.tools.javac.util.ListBuffer java.util.Collection top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 2 /* x */
        start local 2 // java.lang.Object x
         2: .line 237
            aload 0 /* this */
            aload 2 /* x */
            invokevirtual com.sun.tools.javac.util.ListBuffer.contains:(Ljava/lang/Object;)Z
            ifne 4
         3: .line 238
            iconst_0
            ireturn
        end local 2 // java.lang.Object x
         4: .line 236
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         5: .line 240
            iconst_1
            ireturn
        end local 1 // java.util.Collection c
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
            0    6     1     c  Ljava/util/Collection<*>;
            2    4     2     x  Ljava/lang/Object;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      c     

  public boolean addAll(java.util.Collection<? extends A>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.sun.tools.javac.util.ListBuffer this
        start local 1 // java.util.Collection c
         0: .line 244
            aload 1 /* c */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 3
            goto 3
      StackMap locals: com.sun.tools.javac.util.ListBuffer java.util.Collection top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 2 /* a */
        start local 2 // java.lang.Object a
         2: .line 245
            aload 0 /* this */
            aload 2 /* a */
            invokevirtual com.sun.tools.javac.util.ListBuffer.append:(Ljava/lang/Object;)Lcom/sun/tools/javac/util/ListBuffer;
            pop
        end local 2 // java.lang.Object a
         3: .line 244
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         4: .line 246
            iconst_1
            ireturn
        end local 1 // java.util.Collection c
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
            0    5     1     c  Ljava/util/Collection<+TA;>;
            2    3     2     a  TA;
    Signature: (Ljava/util/Collection<+TA;>;)Z
    MethodParameters:
      Name  Flags
      c     

  public boolean removeAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.tools.javac.util.ListBuffer this
        start local 1 // java.util.Collection c
         0: .line 250
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.util.Collection c
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
            0    1     1     c  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      c     

  public boolean retainAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.tools.javac.util.ListBuffer this
        start local 1 // java.util.Collection c
         0: .line 254
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.util.Collection c
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
            0    1     1     c  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      c     

  public boolean offer();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.tools.javac.util.ListBuffer this
        start local 1 // java.lang.Object a
         0: .line 258
            aload 0 /* this */
            aload 1 /* a */
            invokevirtual com.sun.tools.javac.util.ListBuffer.append:(Ljava/lang/Object;)Lcom/sun/tools/javac/util/ListBuffer;
            pop
         1: .line 259
            iconst_1
            ireturn
        end local 1 // java.lang.Object a
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
            0    2     1     a  TA;
    Signature: (TA;)Z
    MethodParameters:
      Name  Flags
      a     

  public A poll();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.util.ListBuffer this
         0: .line 263
            aload 0 /* this */
            invokevirtual com.sun.tools.javac.util.ListBuffer.next:()Ljava/lang/Object;
            areturn
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
    Signature: ()TA;

  public A peek();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.util.ListBuffer this
         0: .line 267
            aload 0 /* this */
            invokevirtual com.sun.tools.javac.util.ListBuffer.first:()Ljava/lang/Object;
            areturn
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
    Signature: ()TA;

  public A last();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.util.ListBuffer this
         0: .line 271
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.last:Lcom/sun/tools/javac/util/List;
            ifnull 1
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ListBuffer.last:Lcom/sun/tools/javac/util/List;
            getfield com.sun.tools.javac.util.List.head:Ljava/lang/Object;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aconst_null
      StackMap locals:
      StackMap stack: java.lang.Object
         2: areturn
        end local 0 // com.sun.tools.javac.util.ListBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/tools/javac/util/ListBuffer<TA;>;
    Signature: ()TA;
}
Signature: <A:Ljava/lang/Object;>Ljava/util/AbstractQueue<TA;>;
SourceFile: "ListBuffer.java"
NestMembers:
  com.sun.tools.javac.util.ListBuffer$1
InnerClasses:
  com.sun.tools.javac.util.ListBuffer$1