public abstract class org.eclipse.jdt.internal.core.OverflowingLRUCache<K, V> extends org.eclipse.jdt.internal.core.util.LRUCache<K, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.eclipse.jdt.internal.core.OverflowingLRUCache
  super_class: org.eclipse.jdt.internal.core.util.LRUCache
{
  protected int overflow;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

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

  protected double loadFactor;
    descriptor: D
    flags: (0x0004) ACC_PROTECTED

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
        start local 1 // int size
         0: .line 74
            aload 0 /* this */
            iload 1 /* size */
            iconst_0
            invokespecial org.eclipse.jdt.internal.core.OverflowingLRUCache.<init>:(II)V
         1: .line 75
            return
        end local 1 // int size
        end local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;
            0    2     1  size  I
    MethodParameters:
      Name  Flags
      size  

  public void <init>(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
        start local 1 // int size
        start local 2 // int overflow
         0: .line 82
            aload 0 /* this */
            iload 1 /* size */
            invokespecial org.eclipse.jdt.internal.core.util.LRUCache.<init>:(I)V
         1: .line 59
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jdt.internal.core.OverflowingLRUCache.overflow:I
         2: .line 63
            aload 0 /* this */
            iconst_1
            putfield org.eclipse.jdt.internal.core.OverflowingLRUCache.timestampsOn:Z
         3: .line 68
            aload 0 /* this */
            ldc 0.333
            putfield org.eclipse.jdt.internal.core.OverflowingLRUCache.loadFactor:D
         4: .line 83
            aload 0 /* this */
            iload 2 /* overflow */
            putfield org.eclipse.jdt.internal.core.OverflowingLRUCache.overflow:I
         5: .line 84
            return
        end local 2 // int overflow
        end local 1 // int size
        end local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;
            0    6     1      size  I
            0    6     2  overflow  I
    MethodParameters:
          Name  Flags
      size      
      overflow  

  public org.eclipse.jdt.internal.core.OverflowingLRUCache<K, V> clone();
    descriptor: ()Lorg/eclipse/jdt/internal/core/OverflowingLRUCache;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
         0: .line 93
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.spaceLimit:I
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.overflow:I
            invokevirtual org.eclipse.jdt.internal.core.OverflowingLRUCache.newInstance:(II)Lorg/eclipse/jdt/internal/core/util/LRUCache;
            checkcast org.eclipse.jdt.internal.core.OverflowingLRUCache
            astore 1 /* newCache */
        start local 1 // org.eclipse.jdt.internal.core.OverflowingLRUCache newCache
         1: .line 97
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.entryQueueTail:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            astore 2 /* qEntry */
        start local 2 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry qEntry
         2: .line 98
            goto 5
         3: .line 99
      StackMap locals: org.eclipse.jdt.internal.core.OverflowingLRUCache org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry
      StackMap stack:
            aload 1 /* newCache */
            aload 2 /* qEntry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.key:Ljava/lang/Object;
            aload 2 /* qEntry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.value:Ljava/lang/Object;
            aload 2 /* qEntry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.space:I
            invokevirtual org.eclipse.jdt.internal.core.OverflowingLRUCache.privateAdd:(Ljava/lang/Object;Ljava/lang/Object;I)V
         4: .line 100
            aload 2 /* qEntry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.previous:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            astore 2 /* qEntry */
         5: .line 98
      StackMap locals:
      StackMap stack:
            aload 2 /* qEntry */
            ifnonnull 3
         6: .line 102
            aload 1 /* newCache */
            areturn
        end local 2 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry qEntry
        end local 1 // org.eclipse.jdt.internal.core.OverflowingLRUCache newCache
        end local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;
            1    7     1  newCache  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;
            2    7     2    qEntry  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
    Signature: ()Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;

  protected abstract boolean close(org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry<K, V>);
    descriptor: (Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;)Z
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Signature: (Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;)Z
    MethodParameters:
       Name  Flags
      entry  

  public java.util.Enumeration<V> elements();
    descriptor: ()Ljava/util/Enumeration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
         0: .line 118
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.entryQueue:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            ifnonnull 2
         1: .line 119
            new org.eclipse.jdt.internal.core.LRUCacheEnumerator
            dup
            aconst_null
            invokespecial org.eclipse.jdt.internal.core.LRUCacheEnumerator.<init>:(Lorg/eclipse/jdt/internal/core/LRUCacheEnumerator$LRUEnumeratorElement;)V
            areturn
         2: .line 121
      StackMap locals:
      StackMap stack:
            new org.eclipse.jdt.internal.core.LRUCacheEnumerator$LRUEnumeratorElement
            dup
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.entryQueue:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.value:Ljava/lang/Object;
            invokespecial org.eclipse.jdt.internal.core.LRUCacheEnumerator$LRUEnumeratorElement.<init>:(Ljava/lang/Object;)V
         3: .line 120
            astore 1 /* head */
        start local 1 // org.eclipse.jdt.internal.core.LRUCacheEnumerator$LRUEnumeratorElement head
         4: .line 122
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.entryQueue:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.next:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            astore 2 /* currentEntry */
        start local 2 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry currentEntry
         5: .line 123
            aload 1 /* head */
            astore 3 /* currentElement */
        start local 3 // org.eclipse.jdt.internal.core.LRUCacheEnumerator$LRUEnumeratorElement currentElement
         6: .line 124
            goto 10
         7: .line 125
      StackMap locals: org.eclipse.jdt.internal.core.LRUCacheEnumerator$LRUEnumeratorElement org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry org.eclipse.jdt.internal.core.LRUCacheEnumerator$LRUEnumeratorElement
      StackMap stack:
            aload 3 /* currentElement */
            new org.eclipse.jdt.internal.core.LRUCacheEnumerator$LRUEnumeratorElement
            dup
            aload 2 /* currentEntry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.value:Ljava/lang/Object;
            invokespecial org.eclipse.jdt.internal.core.LRUCacheEnumerator$LRUEnumeratorElement.<init>:(Ljava/lang/Object;)V
            putfield org.eclipse.jdt.internal.core.LRUCacheEnumerator$LRUEnumeratorElement.next:Lorg/eclipse/jdt/internal/core/LRUCacheEnumerator$LRUEnumeratorElement;
         8: .line 126
            aload 3 /* currentElement */
            getfield org.eclipse.jdt.internal.core.LRUCacheEnumerator$LRUEnumeratorElement.next:Lorg/eclipse/jdt/internal/core/LRUCacheEnumerator$LRUEnumeratorElement;
            astore 3 /* currentElement */
         9: .line 128
            aload 2 /* currentEntry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.next:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            astore 2 /* currentEntry */
        10: .line 124
      StackMap locals:
      StackMap stack:
            aload 2 /* currentEntry */
            ifnonnull 7
        11: .line 130
            new org.eclipse.jdt.internal.core.LRUCacheEnumerator
            dup
            aload 1 /* head */
            invokespecial org.eclipse.jdt.internal.core.LRUCacheEnumerator.<init>:(Lorg/eclipse/jdt/internal/core/LRUCacheEnumerator$LRUEnumeratorElement;)V
            areturn
        end local 3 // org.eclipse.jdt.internal.core.LRUCacheEnumerator$LRUEnumeratorElement currentElement
        end local 2 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry currentEntry
        end local 1 // org.eclipse.jdt.internal.core.LRUCacheEnumerator$LRUEnumeratorElement head
        end local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   12     0            this  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;
            4   12     1            head  Lorg/eclipse/jdt/internal/core/LRUCacheEnumerator$LRUEnumeratorElement<TV;>;
            5   12     2    currentEntry  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
            6   12     3  currentElement  Lorg/eclipse/jdt/internal/core/LRUCacheEnumerator$LRUEnumeratorElement<TV;>;
    Signature: ()Ljava/util/Enumeration<TV;>;

  public double fillingRatio();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
         0: .line 135
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.currentSpace:I
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.overflow:I
            iadd
            i2d
            ldc 100.0
            dmul
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.spaceLimit:I
            i2d
            ddiv
            dreturn
        end local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;

  public java.util.Hashtable<K, org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry<K, V>> getEntryTable();
    descriptor: ()Ljava/util/Hashtable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
         0: .line 145
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.entryTable:Ljava/util/Hashtable;
            areturn
        end local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;
    Signature: ()Ljava/util/Hashtable<TK;Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;>;

  public double getLoadFactor();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
         0: .line 153
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.loadFactor:D
            dreturn
        end local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;

  public int getOverflow();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
         0: .line 159
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.overflow:I
            ireturn
        end local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;

  protected boolean makeSpace(int);
    descriptor: (I)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
        start local 1 // int space
         0: .line 173
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.spaceLimit:I
            istore 2 /* limit */
        start local 2 // int limit
         1: .line 174
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.overflow:I
            ifne 3
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.currentSpace:I
            iload 1 /* space */
            iadd
            iload 2 /* limit */
            if_icmpgt 3
         2: .line 176
            iconst_1
            ireturn
         3: .line 180
      StackMap locals: int
      StackMap stack:
            dconst_1
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.loadFactor:D
            dsub
            iload 2 /* limit */
            i2d
            dmul
            d2i
            istore 3 /* spaceNeeded */
        start local 3 // int spaceNeeded
         4: .line 181
            iload 3 /* spaceNeeded */
            iload 1 /* space */
            if_icmple 5
            iload 3 /* spaceNeeded */
            goto 6
      StackMap locals: int
      StackMap stack:
         5: iload 1 /* space */
      StackMap locals:
      StackMap stack: int
         6: istore 3 /* spaceNeeded */
         7: .line 182
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.entryQueueTail:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            astore 4 /* entry */
        start local 4 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
         8: .line 187
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jdt.internal.core.OverflowingLRUCache.timestampsOn:Z
         9: .line 189
            goto 12
        10: .line 190
      StackMap locals: org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry
      StackMap stack:
            aload 0 /* this */
            aload 4 /* entry */
            iconst_0
            iconst_0
            invokevirtual org.eclipse.jdt.internal.core.OverflowingLRUCache.privateRemoveEntry:(Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;ZZ)V
        11: .line 191
            aload 4 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.previous:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            astore 4 /* entry */
        12: .line 189
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.currentSpace:I
            iload 3 /* spaceNeeded */
            iadd
            iload 2 /* limit */
            if_icmple 17
            aload 4 /* entry */
            ifnonnull 10
        13: .line 193
            goto 17
      StackMap locals:
      StackMap stack: java.lang.Throwable
        14: astore 5
        15: .line 194
            aload 0 /* this */
            iconst_1
            putfield org.eclipse.jdt.internal.core.OverflowingLRUCache.timestampsOn:Z
        16: .line 195
            aload 5
            athrow
        17: .line 194
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.eclipse.jdt.internal.core.OverflowingLRUCache.timestampsOn:Z
        18: .line 198
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.currentSpace:I
            iload 1 /* space */
            iadd
            iload 2 /* limit */
            if_icmpgt 21
        19: .line 199
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jdt.internal.core.OverflowingLRUCache.overflow:I
        20: .line 200
            iconst_1
            ireturn
        21: .line 204
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.currentSpace:I
            iload 1 /* space */
            iadd
            iload 2 /* limit */
            isub
            putfield org.eclipse.jdt.internal.core.OverflowingLRUCache.overflow:I
        22: .line 205
            iconst_0
            ireturn
        end local 4 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
        end local 3 // int spaceNeeded
        end local 2 // int limit
        end local 1 // int space
        end local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   23     0         this  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;
            0   23     1        space  I
            1   23     2        limit  I
            4   23     3  spaceNeeded  I
            8   23     4        entry  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
      Exception table:
        from    to  target  type
           8    14      14  any
    MethodParameters:
       Name  Flags
      space  

  protected abstract org.eclipse.jdt.internal.core.util.LRUCache<K, V> newInstance(int, int);
    descriptor: (II)Lorg/eclipse/jdt/internal/core/util/LRUCache;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Signature: (II)Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
    MethodParameters:
             Name  Flags
      size         
      newOverflow  

  public void printStats();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=9, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
         0: .line 217
            iconst_0
            istore 1 /* forwardListLength */
        start local 1 // int forwardListLength
         1: .line 218
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.entryQueue:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            astore 2 /* entry */
        start local 2 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
         2: .line 219
            goto 5
         3: .line 220
      StackMap locals: int org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry
      StackMap stack:
            iinc 1 /* forwardListLength */ 1
         4: .line 221
            aload 2 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.next:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            astore 2 /* entry */
         5: .line 219
      StackMap locals:
      StackMap stack:
            aload 2 /* entry */
            ifnonnull 3
         6: .line 223
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Forward length: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* forwardListLength */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         7: .line 225
            iconst_0
            istore 3 /* backwardListLength */
        start local 3 // int backwardListLength
         8: .line 226
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.entryQueueTail:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            astore 2 /* entry */
         9: .line 227
            goto 12
        10: .line 228
      StackMap locals: int
      StackMap stack:
            iinc 3 /* backwardListLength */ 1
        11: .line 229
            aload 2 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.previous:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            astore 2 /* entry */
        12: .line 227
      StackMap locals:
      StackMap stack:
            aload 2 /* entry */
            ifnonnull 10
        13: .line 231
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "Backward length: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 3 /* backwardListLength */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        14: .line 245
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            astore 4 /* h */
        start local 4 // java.util.HashMap h
        15: .line 246
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.entryTable:Ljava/util/Hashtable;
            invokevirtual java.util.Hashtable.keySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 6
            goto 24
      StackMap locals: org.eclipse.jdt.internal.core.OverflowingLRUCache int org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry int java.util.HashMap top java.util.Iterator
      StackMap stack:
        16: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 5 /* k */
        start local 5 // java.lang.Object k
        17: .line 247
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.entryTable:Ljava/util/Hashtable;
            aload 5 /* k */
            invokevirtual java.util.Hashtable.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry
            astore 2 /* entry */
        18: .line 248
            aload 2 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.value:Ljava/lang/Object;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            astore 7 /* key */
        start local 7 // java.lang.Class key
        19: .line 249
            aload 4 /* h */
            aload 7 /* key */
            invokevirtual java.util.HashMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.eclipse.jdt.internal.core.OverflowingLRUCache$1Temp
            astore 8 /* t */
        start local 8 // org.eclipse.jdt.internal.core.OverflowingLRUCache$1Temp t
        20: .line 250
            aload 8 /* t */
            ifnonnull 23
        21: .line 251
            aload 4 /* h */
            aload 7 /* key */
            new org.eclipse.jdt.internal.core.OverflowingLRUCache$1Temp
            dup
            aload 0 /* this */
            aload 7 /* key */
            invokespecial org.eclipse.jdt.internal.core.OverflowingLRUCache$1Temp.<init>:(Lorg/eclipse/jdt/internal/core/OverflowingLRUCache;Ljava/lang/Class;)V
            invokevirtual java.util.HashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        22: .line 252
            goto 24
        23: .line 253
      StackMap locals: org.eclipse.jdt.internal.core.OverflowingLRUCache int org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry int java.util.HashMap java.lang.Object java.util.Iterator java.lang.Class org.eclipse.jdt.internal.core.OverflowingLRUCache$1Temp
      StackMap stack:
            aload 8 /* t */
            dup
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache$1Temp.count:I
            iconst_1
            iadd
            putfield org.eclipse.jdt.internal.core.OverflowingLRUCache$1Temp.count:I
        end local 8 // org.eclipse.jdt.internal.core.OverflowingLRUCache$1Temp t
        end local 7 // java.lang.Class key
        end local 5 // java.lang.Object k
        24: .line 246
      StackMap locals: org.eclipse.jdt.internal.core.OverflowingLRUCache int org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry int java.util.HashMap top java.util.Iterator
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 16
        25: .line 256
            aload 4 /* h */
            invokevirtual java.util.HashMap.values:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 6
            goto 28
      StackMap locals:
      StackMap stack:
        26: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.jdt.internal.core.OverflowingLRUCache$1Temp
            astore 5 /* temp */
        start local 5 // org.eclipse.jdt.internal.core.OverflowingLRUCache$1Temp temp
        27: .line 257
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            aload 5 /* temp */
            invokevirtual java.io.PrintStream.println:(Ljava/lang/Object;)V
        end local 5 // org.eclipse.jdt.internal.core.OverflowingLRUCache$1Temp temp
        28: .line 256
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 26
        29: .line 259
            return
        end local 4 // java.util.HashMap h
        end local 3 // int backwardListLength
        end local 2 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
        end local 1 // int forwardListLength
        end local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   30     0                this  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;
            1   30     1   forwardListLength  I
            2   30     2               entry  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
            8   30     3  backwardListLength  I
           15   30     4                   h  Ljava/util/HashMap<Ljava/lang/Class<*>;Lorg/eclipse/jdt/internal/core/OverflowingLRUCache$1Temp;>;
           17   24     5                   k  TK;
           19   24     7                 key  Ljava/lang/Class<*>;
           20   24     8                   t  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache$1Temp;
           27   28     5                temp  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache$1Temp;

  protected void privateRemoveEntry(org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry<K, V>, );
    descriptor: (Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;Z)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
        start local 1 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
        start local 2 // boolean shuffle
         0: .line 270
            aload 0 /* this */
            aload 1 /* entry */
            iload 2 /* shuffle */
            iconst_1
            invokevirtual org.eclipse.jdt.internal.core.OverflowingLRUCache.privateRemoveEntry:(Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;ZZ)V
         1: .line 271
            return
        end local 2 // boolean shuffle
        end local 1 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
        end local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;
            0    2     1    entry  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
            0    2     2  shuffle  Z
    Signature: (Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;Z)V
    MethodParameters:
         Name  Flags
      entry    
      shuffle  

  protected void privateRemoveEntry(org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry<K, V>, boolean, );
    descriptor: (Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;ZZ)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
        start local 1 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
        start local 2 // boolean shuffle
        start local 3 // boolean external
         0: .line 285
            iload 2 /* shuffle */
            ifne 10
         1: .line 286
            iload 3 /* external */
            ifeq 5
         2: .line 287
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.entryTable:Ljava/util/Hashtable;
            aload 1 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.key:Ljava/lang/Object;
            invokevirtual java.util.Hashtable.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 288
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.currentSpace:I
            aload 1 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.space:I
            isub
            putfield org.eclipse.jdt.internal.core.OverflowingLRUCache.currentSpace:I
         4: .line 289
            goto 10
         5: .line 290
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* entry */
            invokevirtual org.eclipse.jdt.internal.core.OverflowingLRUCache.close:(Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;)Z
            ifne 6
            return
         6: .line 293
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.entryTable:Ljava/util/Hashtable;
            aload 1 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.key:Ljava/lang/Object;
            invokevirtual java.util.Hashtable.get:(Ljava/lang/Object;)Ljava/lang/Object;
            ifnonnull 8
         7: .line 294
            return
         8: .line 297
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.entryTable:Ljava/util/Hashtable;
            aload 1 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.key:Ljava/lang/Object;
            invokevirtual java.util.Hashtable.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         9: .line 298
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.currentSpace:I
            aload 1 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.space:I
            isub
            putfield org.eclipse.jdt.internal.core.OverflowingLRUCache.currentSpace:I
        10: .line 302
      StackMap locals:
      StackMap stack:
            aload 1 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.previous:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            astore 4 /* previous */
        start local 4 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry previous
        11: .line 303
            aload 1 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.next:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            astore 5 /* next */
        start local 5 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry next
        12: .line 306
            aload 4 /* previous */
            ifnonnull 15
        13: .line 307
            aload 0 /* this */
            aload 5 /* next */
            putfield org.eclipse.jdt.internal.core.OverflowingLRUCache.entryQueue:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
        14: .line 308
            goto 16
        15: .line 309
      StackMap locals: org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry
      StackMap stack:
            aload 4 /* previous */
            aload 5 /* next */
            putfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.next:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
        16: .line 312
      StackMap locals:
      StackMap stack:
            aload 5 /* next */
            ifnonnull 19
        17: .line 313
            aload 0 /* this */
            aload 4 /* previous */
            putfield org.eclipse.jdt.internal.core.OverflowingLRUCache.entryQueueTail:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
        18: .line 314
            goto 20
        19: .line 315
      StackMap locals:
      StackMap stack:
            aload 5 /* next */
            aload 4 /* previous */
            putfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.previous:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
        20: .line 317
      StackMap locals:
      StackMap stack:
            return
        end local 5 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry next
        end local 4 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry previous
        end local 3 // boolean external
        end local 2 // boolean shuffle
        end local 1 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
        end local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   21     0      this  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;
            0   21     1     entry  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
            0   21     2   shuffle  Z
            0   21     3  external  Z
           11   21     4  previous  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
           12   21     5      next  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
    Signature: (Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;ZZ)V
    MethodParameters:
          Name  Flags
      entry     
      shuffle   
      external  

  public V put(K, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 322
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.overflow:I
            ifle 2
         1: .line 323
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.OverflowingLRUCache.shrink:()Z
            pop
         2: .line 326
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* value */
            invokevirtual org.eclipse.jdt.internal.core.OverflowingLRUCache.spaceFor:(Ljava/lang/Object;)I
            istore 3 /* newSpace */
        start local 3 // int newSpace
         3: .line 327
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.entryTable:Ljava/util/Hashtable;
            aload 1 /* key */
            invokevirtual java.util.Hashtable.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry
            astore 4 /* entry */
        start local 4 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
         4: .line 329
            aload 4 /* entry */
            ifnull 15
         5: .line 336
            aload 4 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.space:I
            istore 5 /* oldSpace */
        start local 5 // int oldSpace
         6: .line 337
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.currentSpace:I
            iload 5 /* oldSpace */
            isub
            iload 3 /* newSpace */
            iadd
            istore 6 /* newTotal */
        start local 6 // int newTotal
         7: .line 338
            iload 6 /* newTotal */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.spaceLimit:I
            if_icmpgt 14
         8: .line 339
            aload 0 /* this */
            aload 4 /* entry */
            invokevirtual org.eclipse.jdt.internal.core.OverflowingLRUCache.updateTimestamp:(Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;)V
         9: .line 340
            aload 4 /* entry */
            aload 2 /* value */
            putfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.value:Ljava/lang/Object;
        10: .line 341
            aload 4 /* entry */
            iload 3 /* newSpace */
            putfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.space:I
        11: .line 342
            aload 0 /* this */
            iload 6 /* newTotal */
            putfield org.eclipse.jdt.internal.core.OverflowingLRUCache.currentSpace:I
        12: .line 343
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jdt.internal.core.OverflowingLRUCache.overflow:I
        13: .line 344
            aload 2 /* value */
            areturn
        14: .line 346
      StackMap locals: org.eclipse.jdt.internal.core.OverflowingLRUCache java.lang.Object java.lang.Object int org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry int int
      StackMap stack:
            aload 0 /* this */
            aload 4 /* entry */
            iconst_0
            iconst_0
            invokevirtual org.eclipse.jdt.internal.core.OverflowingLRUCache.privateRemoveEntry:(Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;ZZ)V
        end local 6 // int newTotal
        end local 5 // int oldSpace
        15: .line 351
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* newSpace */
            invokevirtual org.eclipse.jdt.internal.core.OverflowingLRUCache.makeSpace:(I)Z
            pop
        16: .line 355
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* value */
            iload 3 /* newSpace */
            invokevirtual org.eclipse.jdt.internal.core.OverflowingLRUCache.privateAdd:(Ljava/lang/Object;Ljava/lang/Object;I)V
        17: .line 357
            aload 2 /* value */
            areturn
        end local 4 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
        end local 3 // int newSpace
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;
            0   18     1       key  TK;
            0   18     2     value  TV;
            3   18     3  newSpace  I
            4   18     4     entry  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
            6   15     5  oldSpace  I
            7   15     6  newTotal  I
    Signature: (TK;TV;)TV;
    MethodParameters:
       Name  Flags
      key    
      value  

  public V remove();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
        start local 1 // java.lang.Object key
         0: .line 367
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual org.eclipse.jdt.internal.core.OverflowingLRUCache.removeKey:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;
            0    1     1   key  TK;
    Signature: (TK;)TV;
    MethodParameters:
      Name  Flags
      key   

  public void setLoadFactor(double);
    descriptor: (D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
        start local 1 // double newLoadFactor
         0: .line 376
            dload 1 /* newLoadFactor */
            dconst_1
            dcmpg
            ifgt 2
            dload 1 /* newLoadFactor */
            dconst_0
            dcmpl
            ifle 2
         1: .line 377
            aload 0 /* this */
            dload 1 /* newLoadFactor */
            putfield org.eclipse.jdt.internal.core.OverflowingLRUCache.loadFactor:D
            goto 3
         2: .line 379
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            getstatic org.eclipse.jdt.internal.core.util.Messages.cache_invalidLoadFactor:Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 380
      StackMap locals:
      StackMap stack:
            return
        end local 1 // double newLoadFactor
        end local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;
            0    4     1  newLoadFactor  D
    Exceptions:
      throws java.lang.IllegalArgumentException
    MethodParameters:
               Name  Flags
      newLoadFactor  

  public void setSpaceLimit(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
        start local 1 // int limit
         0: .line 384
            iload 1 /* limit */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.spaceLimit:I
            if_icmpge 2
         1: .line 385
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.spaceLimit:I
            iload 1 /* limit */
            isub
            invokevirtual org.eclipse.jdt.internal.core.OverflowingLRUCache.makeSpace:(I)Z
            pop
         2: .line 387
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* limit */
            putfield org.eclipse.jdt.internal.core.OverflowingLRUCache.spaceLimit:I
         3: .line 388
            return
        end local 1 // int limit
        end local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;
            0    4     1  limit  I
    MethodParameters:
       Name  Flags
      limit  

  public boolean shrink();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
         0: .line 394
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.overflow:I
            ifle 2
         1: .line 395
            aload 0 /* this */
            iconst_0
            invokevirtual org.eclipse.jdt.internal.core.OverflowingLRUCache.makeSpace:(I)Z
            ireturn
         2: .line 396
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
         0: .line 405
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            ldc "OverflowingLRUCache "
            invokevirtual org.eclipse.jdt.internal.core.OverflowingLRUCache.toStringFillingRation:(Ljava/lang/String;)Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         1: .line 406
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.OverflowingLRUCache.toStringContents:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         2: .line 405
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 404
            areturn
        end local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;

  protected void updateTimestamp(org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry<K, V>);
    descriptor: (Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
        start local 1 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
         0: .line 416
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.timestampsOn:Z
            ifeq 5
         1: .line 417
            aload 1 /* entry */
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.timestampCounter:I
            dup_x1
            iconst_1
            iadd
            putfield org.eclipse.jdt.internal.core.OverflowingLRUCache.timestampCounter:I
            putfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.timestamp:I
         2: .line 418
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.OverflowingLRUCache.entryQueue:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            aload 1 /* entry */
            if_acmpeq 5
         3: .line 419
            aload 0 /* this */
            aload 1 /* entry */
            iconst_1
            invokevirtual org.eclipse.jdt.internal.core.OverflowingLRUCache.privateRemoveEntry:(Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;Z)V
         4: .line 420
            aload 0 /* this */
            aload 1 /* entry */
            iconst_1
            invokevirtual org.eclipse.jdt.internal.core.OverflowingLRUCache.privateAddEntry:(Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;Z)V
         5: .line 423
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
        end local 0 // org.eclipse.jdt.internal.core.OverflowingLRUCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/eclipse/jdt/internal/core/OverflowingLRUCache<TK;TV;>;
            0    6     1  entry  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
    Signature: (Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;)V
    MethodParameters:
       Name  Flags
      entry  

  public org.eclipse.jdt.internal.core.util.LRUCache clone();
    descriptor: ()Lorg/eclipse/jdt/internal/core/util/LRUCache;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.jdt.internal.core.OverflowingLRUCache.clone:()Lorg/eclipse/jdt/internal/core/OverflowingLRUCache;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.eclipse.jdt.internal.core.OverflowingLRUCache.clone:()Lorg/eclipse/jdt/internal/core/OverflowingLRUCache;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
SourceFile: "OverflowingLRUCache.java"
NestMembers:
  org.eclipse.jdt.internal.core.OverflowingLRUCache$1Temp
InnerClasses:
  public LRUEnumeratorElement = org.eclipse.jdt.internal.core.LRUCacheEnumerator$LRUEnumeratorElement of org.eclipse.jdt.internal.core.LRUCacheEnumerator
  Temp = org.eclipse.jdt.internal.core.OverflowingLRUCache$1Temp
  public LRUCacheEntry = org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry of org.eclipse.jdt.internal.core.util.LRUCache