public class org.eclipse.core.internal.jobs.Queue
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.core.internal.jobs.Queue
  super_class: java.lang.Object
{
  protected java.lang.Object[] elements;
    descriptor: [Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED

  protected int head;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected boolean reuse;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  protected int tail;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.core.internal.jobs.Queue this
         0: .line 28
            aload 0 /* this */
            bipush 20
            iconst_0
            invokespecial org.eclipse.core.internal.jobs.Queue.<init>:(IZ)V
         1: .line 29
            return
        end local 0 // org.eclipse.core.internal.jobs.Queue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/core/internal/jobs/Queue;

  public void <init>(int, boolean);
    descriptor: (IZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.core.internal.jobs.Queue this
        start local 1 // int size
        start local 2 // boolean reuse
         0: .line 39
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 40
            aload 0 /* this */
            iload 1 /* size */
            anewarray java.lang.Object
            putfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
         2: .line 41
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield org.eclipse.core.internal.jobs.Queue.tail:I
            putfield org.eclipse.core.internal.jobs.Queue.head:I
         3: .line 42
            aload 0 /* this */
            iload 2 /* reuse */
            putfield org.eclipse.core.internal.jobs.Queue.reuse:Z
         4: .line 43
            return
        end local 2 // boolean reuse
        end local 1 // int size
        end local 0 // org.eclipse.core.internal.jobs.Queue this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/eclipse/core/internal/jobs/Queue;
            0    5     1   size  I
            0    5     2  reuse  Z
    MethodParameters:
       Name  Flags
      size   
      reuse  

  public void enqueue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.core.internal.jobs.Queue this
        start local 1 // java.lang.Object element
         0: .line 49
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.tail:I
            invokevirtual org.eclipse.core.internal.jobs.Queue.increment:(I)I
            istore 2 /* newTail */
        start local 2 // int newTail
         1: .line 50
            iload 2 /* newTail */
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.head:I
            if_icmpne 4
         2: .line 51
            aload 0 /* this */
            invokevirtual org.eclipse.core.internal.jobs.Queue.grow:()V
         3: .line 52
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.tail:I
            iconst_1
            iadd
            istore 2 /* newTail */
         4: .line 54
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.tail:I
            aload 1 /* element */
            aastore
         5: .line 55
            aload 0 /* this */
            iload 2 /* newTail */
            putfield org.eclipse.core.internal.jobs.Queue.tail:I
         6: .line 56
            return
        end local 2 // int newTail
        end local 1 // java.lang.Object element
        end local 0 // org.eclipse.core.internal.jobs.Queue this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lorg/eclipse/core/internal/jobs/Queue;
            0    7     1  element  Ljava/lang/Object;
            1    7     2  newTail  I
    MethodParameters:
         Name  Flags
      element  

  public int decrement(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.core.internal.jobs.Queue this
        start local 1 // int index
         0: .line 63
            iload 1 /* index */
            ifne 1
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            arraylength
            iconst_1
            isub
            goto 2
      StackMap locals:
      StackMap stack:
         1: iload 1 /* index */
            iconst_1
            isub
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 1 // int index
        end local 0 // org.eclipse.core.internal.jobs.Queue this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/core/internal/jobs/Queue;
            0    3     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public java.util.Iterator elements();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // org.eclipse.core.internal.jobs.Queue this
         0: .line 68
            aload 0 /* this */
            invokevirtual org.eclipse.core.internal.jobs.Queue.isEmpty:()Z
            ifeq 2
         1: .line 69
            new java.util.ArrayList
            dup
            iconst_0
            invokespecial java.util.ArrayList.<init>:(I)V
            invokevirtual java.util.ArrayList.iterator:()Ljava/util/Iterator;
            areturn
         2: .line 72
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.head:I
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.tail:I
            if_icmpgt 4
         3: .line 73
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            areturn
         4: .line 76
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.core.internal.jobs.Queue.size:()I
            anewarray java.lang.Object
            astore 1 /* newElements */
        start local 1 // java.lang.Object[] newElements
         5: .line 77
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            arraylength
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.head:I
            isub
            istore 2 /* end */
        start local 2 // int end
         6: .line 78
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.head:I
            aload 1 /* newElements */
            iconst_0
            iload 2 /* end */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 79
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            iconst_0
            aload 1 /* newElements */
            iload 2 /* end */
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.tail:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 80
            aload 1 /* newElements */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            areturn
        end local 2 // int end
        end local 1 // java.lang.Object[] newElements
        end local 0 // org.eclipse.core.internal.jobs.Queue this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0         this  Lorg/eclipse/core/internal/jobs/Queue;
            5    9     1  newElements  [Ljava/lang/Object;
            6    9     2          end  I

  public java.lang.Object get(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.core.internal.jobs.Queue this
        start local 1 // java.lang.Object o
         0: .line 84
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.head:I
            istore 2 /* index */
        start local 2 // int index
         1: .line 85
            goto 5
         2: .line 86
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            iload 2 /* index */
            aaload
            aload 1 /* o */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
         3: .line 87
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            iload 2 /* index */
            aaload
            areturn
         4: .line 88
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* index */
            invokevirtual org.eclipse.core.internal.jobs.Queue.increment:(I)I
            istore 2 /* index */
         5: .line 85
      StackMap locals:
      StackMap stack:
            iload 2 /* index */
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.tail:I
            if_icmpne 2
         6: .line 90
            aconst_null
            areturn
        end local 2 // int index
        end local 1 // java.lang.Object o
        end local 0 // org.eclipse.core.internal.jobs.Queue this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/eclipse/core/internal/jobs/Queue;
            0    7     1      o  Ljava/lang/Object;
            1    7     2  index  I
    MethodParameters:
      Name  Flags
      o     

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.eclipse.core.internal.jobs.Queue this
        start local 1 // java.lang.Object o
         0: .line 97
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.head:I
            istore 2 /* index */
        start local 2 // int index
         1: .line 99
            goto 5
         2: .line 100
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            iload 2 /* index */
            aaload
            aload 1 /* o */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 4
         3: .line 101
            goto 6
         4: .line 102
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* index */
            invokevirtual org.eclipse.core.internal.jobs.Queue.increment:(I)I
            istore 2 /* index */
         5: .line 99
      StackMap locals:
      StackMap stack:
            iload 2 /* index */
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.tail:I
            if_icmpne 2
         6: .line 105
      StackMap locals:
      StackMap stack:
            iload 2 /* index */
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.tail:I
            if_icmpne 8
         7: .line 106
            iconst_0
            ireturn
         8: .line 108
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            iload 2 /* index */
            aaload
            astore 3 /* toRemove */
        start local 3 // java.lang.Object toRemove
         9: .line 109
            iconst_m1
            istore 4 /* nextIndex */
        start local 4 // int nextIndex
        10: .line 110
            goto 15
        11: .line 111
      StackMap locals: java.lang.Object int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* index */
            invokevirtual org.eclipse.core.internal.jobs.Queue.increment:(I)I
            istore 4 /* nextIndex */
        12: .line 112
            iload 4 /* nextIndex */
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.tail:I
            if_icmpeq 14
        13: .line 113
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            iload 2 /* index */
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            iload 4 /* nextIndex */
            aaload
            aastore
        14: .line 115
      StackMap locals:
      StackMap stack:
            iload 4 /* nextIndex */
            istore 2 /* index */
        15: .line 110
      StackMap locals:
      StackMap stack:
            iload 2 /* index */
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.tail:I
            if_icmpne 11
        16: .line 118
            aload 0 /* this */
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.tail:I
            invokevirtual org.eclipse.core.internal.jobs.Queue.decrement:(I)I
            putfield org.eclipse.core.internal.jobs.Queue.tail:I
        17: .line 122
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.tail:I
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.reuse:Z
            ifeq 18
            aload 3 /* toRemove */
            goto 19
      StackMap locals: org.eclipse.core.internal.jobs.Queue java.lang.Object int java.lang.Object int
      StackMap stack: java.lang.Object[] int
        18: aconst_null
      StackMap locals: org.eclipse.core.internal.jobs.Queue java.lang.Object int java.lang.Object int
      StackMap stack: java.lang.Object[] int java.lang.Object
        19: aastore
        20: .line 123
            iconst_1
            ireturn
        end local 4 // int nextIndex
        end local 3 // java.lang.Object toRemove
        end local 2 // int index
        end local 1 // java.lang.Object o
        end local 0 // org.eclipse.core.internal.jobs.Queue this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   21     0       this  Lorg/eclipse/core/internal/jobs/Queue;
            0   21     1          o  Ljava/lang/Object;
            1   21     2      index  I
            9   21     3   toRemove  Ljava/lang/Object;
           10   21     4  nextIndex  I
    MethodParameters:
      Name  Flags
      o     

  protected void grow();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=4, args_size=1
        start local 0 // org.eclipse.core.internal.jobs.Queue this
         0: .line 127
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            arraylength
            i2d
            ldc 1.5
            dmul
            d2i
            istore 1 /* newSize */
        start local 1 // int newSize
         1: .line 128
            iload 1 /* newSize */
            anewarray java.lang.Object
            astore 2 /* newElements */
        start local 2 // java.lang.Object[] newElements
         2: .line 129
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.tail:I
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.head:I
            if_icmplt 4
         3: .line 130
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.head:I
            aload 2 /* newElements */
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.head:I
            aload 0 /* this */
            invokevirtual org.eclipse.core.internal.jobs.Queue.size:()I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
            goto 8
         4: .line 132
      StackMap locals: int java.lang.Object[]
      StackMap stack:
            iload 1 /* newSize */
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            arraylength
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.head:I
            isub
            isub
            istore 3 /* newHead */
        start local 3 // int newHead
         5: .line 133
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            iconst_0
            aload 2 /* newElements */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.tail:I
            iconst_1
            iadd
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 134
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.head:I
            aload 2 /* newElements */
            iload 3 /* newHead */
            iload 1 /* newSize */
            iload 3 /* newHead */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 135
            aload 0 /* this */
            iload 3 /* newHead */
            putfield org.eclipse.core.internal.jobs.Queue.head:I
        end local 3 // int newHead
         8: .line 137
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* newElements */
            putfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
         9: .line 138
            return
        end local 2 // java.lang.Object[] newElements
        end local 1 // int newSize
        end local 0 // org.eclipse.core.internal.jobs.Queue this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   10     0         this  Lorg/eclipse/core/internal/jobs/Queue;
            1   10     1      newSize  I
            2   10     2  newElements  [Ljava/lang/Object;
            5    8     3      newHead  I

  public int increment(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.core.internal.jobs.Queue this
        start local 1 // int index
         0: .line 145
            iload 1 /* index */
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            arraylength
            iconst_1
            isub
            if_icmpne 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iload 1 /* index */
            iconst_1
            iadd
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 1 // int index
        end local 0 // org.eclipse.core.internal.jobs.Queue this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/core/internal/jobs/Queue;
            0    3     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.core.internal.jobs.Queue this
         0: .line 149
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.tail:I
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.head:I
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.eclipse.core.internal.jobs.Queue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/core/internal/jobs/Queue;

  public java.lang.Object peek();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.core.internal.jobs.Queue this
         0: .line 153
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.head:I
            aaload
            areturn
        end local 0 // org.eclipse.core.internal.jobs.Queue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/core/internal/jobs/Queue;

  public java.lang.Object dequeue();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.core.internal.jobs.Queue this
         0: .line 160
            aload 0 /* this */
            invokevirtual org.eclipse.core.internal.jobs.Queue.isEmpty:()Z
            ifeq 2
         1: .line 161
            aconst_null
            areturn
         2: .line 162
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.core.internal.jobs.Queue.peek:()Ljava/lang/Object;
            astore 1 /* result */
        start local 1 // java.lang.Object result
         3: .line 163
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.reuse:Z
            ifne 5
         4: .line 164
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.head:I
            aconst_null
            aastore
         5: .line 165
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.head:I
            invokevirtual org.eclipse.core.internal.jobs.Queue.increment:(I)I
            putfield org.eclipse.core.internal.jobs.Queue.head:I
         6: .line 166
            aload 1 /* result */
            areturn
        end local 1 // java.lang.Object result
        end local 0 // org.eclipse.core.internal.jobs.Queue this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/eclipse/core/internal/jobs/Queue;
            3    7     1  result  Ljava/lang/Object;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.core.internal.jobs.Queue this
         0: .line 170
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.tail:I
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.head:I
            if_icmple 1
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.tail:I
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.head:I
            isub
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.elements:[Ljava/lang/Object;
            arraylength
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.head:I
            isub
            aload 0 /* this */
            getfield org.eclipse.core.internal.jobs.Queue.tail:I
            iadd
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // org.eclipse.core.internal.jobs.Queue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/core/internal/jobs/Queue;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.eclipse.core.internal.jobs.Queue this
         0: .line 175
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuilder sb
         1: .line 176
            aload 1 /* sb */
            ldc "["
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 177
            aload 0 /* this */
            invokevirtual org.eclipse.core.internal.jobs.Queue.isEmpty:()Z
            ifne 8
         3: .line 178
            aload 0 /* this */
            invokevirtual org.eclipse.core.internal.jobs.Queue.elements:()Ljava/util/Iterator;
            astore 2 /* it */
        start local 2 // java.util.Iterator it
         4: .line 180
      StackMap locals: java.lang.StringBuilder java.util.Iterator
      StackMap stack:
            aload 1 /* sb */
            aload 2 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
         5: .line 181
            aload 2 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifeq 8
         6: .line 182
            aload 1 /* sb */
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         7: .line 179
            goto 4
        end local 2 // java.util.Iterator it
         8: .line 187
      StackMap locals:
      StackMap stack:
            aload 1 /* sb */
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         9: .line 188
            aload 1 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder sb
        end local 0 // org.eclipse.core.internal.jobs.Queue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/eclipse/core/internal/jobs/Queue;
            1   10     1    sb  Ljava/lang/StringBuilder;
            4    8     2    it  Ljava/util/Iterator;
}
SourceFile: "Queue.java"