public class org.eclipse.jdt.internal.core.util.LRUCache<K, V> implements java.lang.Cloneable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jdt.internal.core.util.LRUCache
  super_class: java.lang.Object
{
  protected int currentSpace;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

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

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

  protected java.util.Hashtable<K, org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry<K, V>> entryTable;
    descriptor: Ljava/util/Hashtable;
    flags: (0x0004) ACC_PROTECTED
    Signature: Ljava/util/Hashtable<TK;Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;>;

  protected org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry<K, V> entryQueue;
    descriptor: Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
    flags: (0x0004) ACC_PROTECTED
    Signature: Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;

  protected org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry<K, V> entryQueueTail;
    descriptor: Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
    flags: (0x0004) ACC_PROTECTED
    Signature: Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;

  protected static final int DEFAULT_SPACELIMIT;
    descriptor: I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 100

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
         0: .line 295
            aload 0 /* this */
            bipush 100
            invokespecial org.eclipse.jdt.internal.core.util.LRUCache.<init>:(I)V
         1: .line 296
            return
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
        start local 1 // int size
         0: .line 302
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 303
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield org.eclipse.jdt.internal.core.util.LRUCache.currentSpace:I
            putfield org.eclipse.jdt.internal.core.util.LRUCache.timestampCounter:I
         2: .line 304
            aload 0 /* this */
            aload 0 /* this */
            aconst_null
            dup_x1
            putfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueueTail:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            putfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueue:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
         3: .line 305
            aload 0 /* this */
            new java.util.Hashtable
            dup
            iload 1 /* size */
            invokespecial java.util.Hashtable.<init>:(I)V
            putfield org.eclipse.jdt.internal.core.util.LRUCache.entryTable:Ljava/util/Hashtable;
         4: .line 306
            aload 0 /* this */
            iload 1 /* size */
            putfield org.eclipse.jdt.internal.core.util.LRUCache.spaceLimit:I
         5: .line 307
            return
        end local 1 // int size
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
            0    6     1  size  I
    MethodParameters:
      Name  Flags
      size  

  public org.eclipse.jdt.internal.core.util.LRUCache<K, V> clone();
    descriptor: ()Lorg/eclipse/jdt/internal/core/util/LRUCache;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
         0: .line 316
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.spaceLimit:I
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.newInstance:(I)Lorg/eclipse/jdt/internal/core/util/LRUCache;
            astore 1 /* newCache */
        start local 1 // org.eclipse.jdt.internal.core.util.LRUCache newCache
         1: .line 320
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.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 321
            goto 5
         3: .line 322
      StackMap locals: org.eclipse.jdt.internal.core.util.LRUCache 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.util.LRUCache.privateAdd:(Ljava/lang/Object;Ljava/lang/Object;I)V
         4: .line 323
            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 321
      StackMap locals:
      StackMap stack:
            aload 2 /* qEntry */
            ifnonnull 3
         6: .line 325
            aload 1 /* newCache */
            areturn
        end local 2 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry qEntry
        end local 1 // org.eclipse.jdt.internal.core.util.LRUCache newCache
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
            1    7     1  newCache  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
            2    7     2    qEntry  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
    Signature: ()Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;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.util.LRUCache this
         0: .line 329
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.currentSpace:I
            i2d
            ldc 100.0
            dmul
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.spaceLimit:I
            i2d
            ddiv
            dreturn
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;

  public void flush();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
         0: .line 336
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jdt.internal.core.util.LRUCache.currentSpace:I
         1: .line 337
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueueTail:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            astore 1 /* entry */
        start local 1 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
         2: .line 338
            aload 0 /* this */
            new java.util.Hashtable
            dup
            invokespecial java.util.Hashtable.<init>:()V
            putfield org.eclipse.jdt.internal.core.util.LRUCache.entryTable:Ljava/util/Hashtable;
         3: .line 339
            aload 0 /* this */
            aload 0 /* this */
            aconst_null
            dup_x1
            putfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueueTail:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            putfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueue:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
         4: .line 340
            goto 6
         5: .line 341
      StackMap locals: org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry
      StackMap stack:
            aload 1 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.previous:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            astore 1 /* entry */
         6: .line 340
      StackMap locals:
      StackMap stack:
            aload 1 /* entry */
            ifnonnull 5
         7: .line 343
            return
        end local 1 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
            2    8     1  entry  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;

  public void flush();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
        start local 1 // java.lang.Object key
         0: .line 353
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.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 2 /* entry */
        start local 2 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
         1: .line 356
            aload 2 /* entry */
            ifnonnull 2
            return
         2: .line 358
      StackMap locals: org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry
      StackMap stack:
            aload 0 /* this */
            aload 2 /* entry */
            iconst_0
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.privateRemoveEntry:(Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;Z)V
         3: .line 359
            return
        end local 2 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
            0    4     1    key  TK;
            1    4     2  entry  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
    Signature: (TK;)V
    MethodParameters:
      Name  Flags
      key   

  public K getKey();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
        start local 1 // java.lang.Object key
         0: .line 366
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.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 2 /* entry */
        start local 2 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
         1: .line 367
            aload 2 /* entry */
            ifnonnull 3
         2: .line 368
            aload 1 /* key */
            areturn
         3: .line 370
      StackMap locals: org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry
      StackMap stack:
            aload 2 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.key:Ljava/lang/Object;
            areturn
        end local 2 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
            0    4     1    key  TK;
            1    4     2  entry  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
    Signature: (TK;)TK;
    MethodParameters:
      Name  Flags
      key   

  public V get();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
        start local 1 // java.lang.Object key
         0: .line 381
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.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 2 /* entry */
        start local 2 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
         1: .line 382
            aload 2 /* entry */
            ifnonnull 3
         2: .line 383
            aconst_null
            areturn
         3: .line 386
      StackMap locals: org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry
      StackMap stack:
            aload 0 /* this */
            aload 2 /* entry */
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.updateTimestamp:(Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;)V
         4: .line 387
            aload 2 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.value:Ljava/lang/Object;
            areturn
        end local 2 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
            0    5     1    key  TK;
            1    5     2  entry  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
    Signature: (TK;)TV;
    MethodParameters:
      Name  Flags
      key   

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

  public int getNewestTimestampCounter();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
         0: .line 401
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueue:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            ifnonnull 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueue:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.timestamp:I
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;

  public int getOldestTimestampCounter();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
         0: .line 408
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueueTail:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            ifnonnull 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueueTail:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.timestamp:I
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;

  public K getOldestElement();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
         0: .line 415
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueueTail:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            ifnonnull 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueueTail:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.key:Ljava/lang/Object;
      StackMap locals:
      StackMap stack: java.lang.Object
         2: areturn
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
    Signature: ()TK;

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

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

  public org.eclipse.jdt.internal.core.util.ICacheEnumeration<K, V> keysAndValues();
    descriptor: ()Lorg/eclipse/jdt/internal/core/util/ICacheEnumeration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
         0: .line 437
            new org.eclipse.jdt.internal.core.util.LRUCache$1
            dup
            aload 0 /* this */
            invokespecial org.eclipse.jdt.internal.core.util.LRUCache$1.<init>:(Lorg/eclipse/jdt/internal/core/util/LRUCache;)V
            areturn
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
    Signature: ()Lorg/eclipse/jdt/internal/core/util/ICacheEnumeration<TK;TV;>;

  protected boolean makeSpace(int);
    descriptor: (I)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
        start local 1 // int space
         0: .line 474
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.getSpaceLimit:()I
            istore 2 /* limit */
        start local 2 // int limit
         1: .line 477
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.currentSpace:I
            iload 1 /* space */
            iadd
            iload 2 /* limit */
            if_icmpgt 3
         2: .line 478
            iconst_1
            ireturn
         3: .line 482
      StackMap locals: int
      StackMap stack:
            iload 1 /* space */
            iload 2 /* limit */
            if_icmple 6
         4: .line 483
            iconst_0
            ireturn
         5: .line 488
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueueTail:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            iconst_0
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.privateRemoveEntry:(Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;Z)V
         6: .line 487
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.currentSpace:I
            iload 1 /* space */
            iadd
            iload 2 /* limit */
            if_icmple 7
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueueTail:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            ifnonnull 5
         7: .line 490
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // int limit
        end local 1 // int space
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
            0    8     1  space  I
            1    8     2  limit  I
    MethodParameters:
       Name  Flags
      space  

  protected org.eclipse.jdt.internal.core.util.LRUCache<K, V> newInstance(int);
    descriptor: (I)Lorg/eclipse/jdt/internal/core/util/LRUCache;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
        start local 1 // int size
         0: .line 497
            new org.eclipse.jdt.internal.core.util.LRUCache
            dup
            iload 1 /* size */
            invokespecial org.eclipse.jdt.internal.core.util.LRUCache.<init>:(I)V
            areturn
        end local 1 // int size
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
            0    1     1  size  I
    Signature: (I)Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
    MethodParameters:
      Name  Flags
      size  

  public V peek();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
        start local 1 // java.lang.Object key
         0: .line 507
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.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 2 /* entry */
        start local 2 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
         1: .line 508
            aload 2 /* entry */
            ifnonnull 3
         2: .line 509
            aconst_null
            areturn
         3: .line 511
      StackMap locals: org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry
      StackMap stack:
            aload 2 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.value:Ljava/lang/Object;
            areturn
        end local 2 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
            0    4     1    key  TK;
            1    4     2  entry  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
    Signature: (TK;)TV;
    MethodParameters:
      Name  Flags
      key   

  protected void privateAdd(K, V, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
        start local 3 // int space
         0: .line 519
            new org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry
            dup
            aload 1 /* key */
            aload 2 /* value */
            iload 3 /* space */
            invokespecial org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.<init>:(Ljava/lang/Object;Ljava/lang/Object;I)V
            astore 4 /* entry */
        start local 4 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
         1: .line 520
            aload 0 /* this */
            aload 4 /* entry */
            iconst_0
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.privateAddEntry:(Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;Z)V
         2: .line 521
            return
        end local 4 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
        end local 3 // int space
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
            0    3     1    key  TK;
            0    3     2  value  TV;
            0    3     3  space  I
            1    3     4  entry  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
    Signature: (TK;TV;I)V
    MethodParameters:
       Name  Flags
      key    
      value  
      space  

  protected void privateAddEntry(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=5, locals=3, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
        start local 1 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
        start local 2 // boolean shuffle
         0: .line 529
            iload 2 /* shuffle */
            ifne 3
         1: .line 530
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.entryTable:Ljava/util/Hashtable;
            aload 1 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.key:Ljava/lang/Object;
            aload 1 /* entry */
            invokevirtual java.util.Hashtable.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 531
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.core.util.LRUCache.currentSpace:I
            aload 1 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.space:I
            iadd
            putfield org.eclipse.jdt.internal.core.util.LRUCache.currentSpace:I
         3: .line 534
      StackMap locals:
      StackMap stack:
            aload 1 /* entry */
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.core.util.LRUCache.timestampCounter:I
            dup_x1
            iconst_1
            iadd
            putfield org.eclipse.jdt.internal.core.util.LRUCache.timestampCounter:I
            putfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.timestamp:I
         4: .line 535
            aload 1 /* entry */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueue:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            putfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.next:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
         5: .line 536
            aload 1 /* entry */
            aconst_null
            putfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.previous:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
         6: .line 538
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueue:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            ifnonnull 9
         7: .line 540
            aload 0 /* this */
            aload 1 /* entry */
            putfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueueTail:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
         8: .line 541
            goto 10
         9: .line 542
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueue:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            aload 1 /* entry */
            putfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.previous:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
        10: .line 545
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* entry */
            putfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueue:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
        11: .line 546
            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.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0     this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
            0   12     1    entry  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
            0   12     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>, );
    descriptor: (Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;Z)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
        start local 1 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
        start local 2 // boolean shuffle
         0: .line 556
            aload 1 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.previous:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            astore 3 /* previous */
        start local 3 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry previous
         1: .line 557
            aload 1 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.next:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            astore 4 /* next */
        start local 4 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry next
         2: .line 559
            iload 2 /* shuffle */
            ifne 5
         3: .line 560
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.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
         4: .line 561
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.core.util.LRUCache.currentSpace:I
            aload 1 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.space:I
            isub
            putfield org.eclipse.jdt.internal.core.util.LRUCache.currentSpace:I
         5: .line 565
      StackMap locals: org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry
      StackMap stack:
            aload 3 /* previous */
            ifnonnull 8
         6: .line 566
            aload 0 /* this */
            aload 4 /* next */
            putfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueue:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
         7: .line 567
            goto 9
         8: .line 568
      StackMap locals:
      StackMap stack:
            aload 3 /* previous */
            aload 4 /* next */
            putfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.next:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
         9: .line 572
      StackMap locals:
      StackMap stack:
            aload 4 /* next */
            ifnonnull 12
        10: .line 573
            aload 0 /* this */
            aload 3 /* previous */
            putfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueueTail:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
        11: .line 574
            goto 13
        12: .line 575
      StackMap locals:
      StackMap stack:
            aload 4 /* next */
            aload 3 /* previous */
            putfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.previous:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
        13: .line 577
      StackMap locals:
      StackMap stack:
            return
        end local 4 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry next
        end local 3 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry previous
        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.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
            0   14     1     entry  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
            0   14     2   shuffle  Z
            1   14     3  previous  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
            2   14     4      next  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
    Signature: (Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;Z)V
    MethodParameters:
         Name  Flags
      entry    
      shuffle  

  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.util.LRUCache this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 591
            aload 0 /* this */
            aload 2 /* value */
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.spaceFor:(Ljava/lang/Object;)I
            istore 3 /* newSpace */
        start local 3 // int newSpace
         1: .line 592
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.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 6 /* entry */
        start local 6 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
         2: .line 594
            aload 6 /* entry */
            ifnull 12
         3: .line 601
            aload 6 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.space:I
            istore 4 /* oldSpace */
        start local 4 // int oldSpace
         4: .line 602
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.getCurrentSpace:()I
            iload 4 /* oldSpace */
            isub
            iload 3 /* newSpace */
            iadd
            istore 5 /* newTotal */
        start local 5 // int newTotal
         5: .line 603
            iload 5 /* newTotal */
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.getSpaceLimit:()I
            if_icmpgt 11
         6: .line 604
            aload 0 /* this */
            aload 6 /* entry */
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.updateTimestamp:(Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;)V
         7: .line 605
            aload 6 /* entry */
            aload 2 /* value */
            putfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.value:Ljava/lang/Object;
         8: .line 606
            aload 6 /* entry */
            iload 3 /* newSpace */
            putfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.space:I
         9: .line 607
            aload 0 /* this */
            iload 5 /* newTotal */
            putfield org.eclipse.jdt.internal.core.util.LRUCache.currentSpace:I
        10: .line 608
            aload 2 /* value */
            areturn
        11: .line 610
      StackMap locals: org.eclipse.jdt.internal.core.util.LRUCache java.lang.Object java.lang.Object int int int org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry
      StackMap stack:
            aload 0 /* this */
            aload 6 /* entry */
            iconst_0
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.privateRemoveEntry:(Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;Z)V
        end local 5 // int newTotal
        end local 4 // int oldSpace
        12: .line 613
      StackMap locals: org.eclipse.jdt.internal.core.util.LRUCache java.lang.Object java.lang.Object int top top org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry
      StackMap stack:
            aload 0 /* this */
            iload 3 /* newSpace */
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.makeSpace:(I)Z
            ifeq 14
        13: .line 614
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* value */
            iload 3 /* newSpace */
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.privateAdd:(Ljava/lang/Object;Ljava/lang/Object;I)V
        14: .line 616
      StackMap locals:
      StackMap stack:
            aload 2 /* value */
            areturn
        end local 6 // 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.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   15     0      this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
            0   15     1       key  TK;
            0   15     2     value  TV;
            1   15     3  newSpace  I
            4   12     4  oldSpace  I
            5   12     5  newTotal  I
            2   15     6     entry  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
    Signature: (TK;TV;)TV;
    MethodParameters:
       Name  Flags
      key    
      value  

  public V removeKey();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
        start local 1 // java.lang.Object key
         0: .line 627
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.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 2 /* entry */
        start local 2 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
         1: .line 628
            aload 2 /* entry */
            ifnonnull 3
         2: .line 629
            aconst_null
            areturn
         3: .line 631
      StackMap locals: org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry
      StackMap stack:
            aload 2 /* entry */
            getfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.value:Ljava/lang/Object;
            astore 3 /* value */
        start local 3 // java.lang.Object value
         4: .line 632
            aload 0 /* this */
            aload 2 /* entry */
            iconst_0
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.privateRemoveEntry:(Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;Z)V
         5: .line 633
            aload 3 /* value */
            areturn
        end local 3 // java.lang.Object value
        end local 2 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
            0    6     1    key  TK;
            1    6     2  entry  Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry<TK;TV;>;
            4    6     3  value  TV;
    Signature: (TK;)TV;
    MethodParameters:
      Name  Flags
      key   

  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.util.LRUCache this
        start local 1 // int limit
         0: .line 642
            iload 1 /* limit */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.spaceLimit:I
            if_icmpge 2
         1: .line 643
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.spaceLimit:I
            iload 1 /* limit */
            isub
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.makeSpace:(I)Z
            pop
         2: .line 645
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* limit */
            putfield org.eclipse.jdt.internal.core.util.LRUCache.spaceLimit:I
         3: .line 646
            return
        end local 1 // int limit
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
            0    4     1  limit  I
    MethodParameters:
       Name  Flags
      limit  

  protected int spaceFor();
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
        start local 1 // java.lang.Object value
         0: .line 652
            aload 1 /* value */
            instanceof org.eclipse.jdt.internal.core.util.ILRUCacheable
            ifeq 2
         1: .line 653
            aload 1 /* value */
            checkcast org.eclipse.jdt.internal.core.util.ILRUCacheable
            invokeinterface org.eclipse.jdt.internal.core.util.ILRUCacheable.getCacheFootprint:()I
            ireturn
         2: .line 655
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 1 // java.lang.Object value
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
            0    3     1  value  TV;
    Signature: (TV;)I
    MethodParameters:
       Name  Flags
      value  

  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.util.LRUCache this
         0: .line 666
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            ldc "LRUCache"
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.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 667
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.toStringContents:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         2: .line 666
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 665
            areturn
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;

  protected java.lang.String toStringContents();
    descriptor: ()Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=8, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
         0: .line 675
            new java.lang.StringBuffer
            dup
            invokespecial java.lang.StringBuffer.<init>:()V
            astore 1 /* result */
        start local 1 // java.lang.StringBuffer result
         1: .line 676
            new org.eclipse.jdt.internal.core.util.ToStringSorter
            dup
            invokedynamic apply()Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  org/eclipse/jdt/internal/core/util/LRUCache.lambda$0(Ljava/lang/Object;)Ljava/lang/String; (6)
                  (Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.eclipse.jdt.internal.core.util.ToStringSorter.<init>:(Ljava/util/function/Function;)V
            astore 2 /* sorter */
        start local 2 // org.eclipse.jdt.internal.core.util.ToStringSorter sorter
         2: .line 677
            aload 2 /* sorter */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.entryTable:Ljava/util/Hashtable;
            invokevirtual java.util.Hashtable.keySet:()Ljava/util/Set;
            invokevirtual org.eclipse.jdt.internal.core.util.ToStringSorter.sort:(Ljava/util/Collection;)Ljava/util/List;
            astore 3 /* sortedObjects */
        start local 3 // java.util.List sortedObjects
         3: .line 678
            aload 3 /* sortedObjects */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 5
            goto 11
      StackMap locals: org.eclipse.jdt.internal.core.util.LRUCache java.lang.StringBuffer org.eclipse.jdt.internal.core.util.ToStringSorter java.util.List top java.util.Iterator
      StackMap stack:
         4: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.jdt.internal.core.util.ToStringSorter$Pair
            astore 4 /* pair */
        start local 4 // org.eclipse.jdt.internal.core.util.ToStringSorter$Pair pair
         5: .line 679
            aload 4 /* pair */
            getfield org.eclipse.jdt.internal.core.util.ToStringSorter$Pair.string:Ljava/lang/String;
            astore 6 /* toString */
        start local 6 // java.lang.String toString
         6: .line 680
            aload 0 /* this */
            aload 4 /* pair */
            getfield org.eclipse.jdt.internal.core.util.ToStringSorter$Pair.object:Ljava/lang/Object;
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 7 /* value */
        start local 7 // java.lang.Object value
         7: .line 681
            aload 1 /* result */
            aload 6 /* toString */
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         8: .line 682
            aload 1 /* result */
            ldc " -> "
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         9: .line 683
            aload 1 /* result */
            aload 7 /* value */
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/Object;)Ljava/lang/StringBuffer;
            pop
        10: .line 684
            aload 1 /* result */
            ldc "\n"
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        end local 7 // java.lang.Object value
        end local 6 // java.lang.String toString
        end local 4 // org.eclipse.jdt.internal.core.util.ToStringSorter$Pair pair
        11: .line 678
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
        12: .line 686
            aload 1 /* result */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            areturn
        end local 3 // java.util.List sortedObjects
        end local 2 // org.eclipse.jdt.internal.core.util.ToStringSorter sorter
        end local 1 // java.lang.StringBuffer result
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   13     0           this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
            1   13     1         result  Ljava/lang/StringBuffer;
            2   13     2         sorter  Lorg/eclipse/jdt/internal/core/util/ToStringSorter<TK;>;
            3   13     3  sortedObjects  Ljava/util/List<Lorg/eclipse/jdt/internal/core/util/ToStringSorter$Pair<TK;>;>;
            5   11     4           pair  Lorg/eclipse/jdt/internal/core/util/ToStringSorter$Pair<TK;>;
            6   11     6       toString  Ljava/lang/String;
            7   11     7          value  TV;

  public java.lang.String toStringFillingRation(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
        start local 1 // java.lang.String cacheName
         0: .line 690
            new java.lang.StringBuffer
            dup
            aload 1 /* cacheName */
            invokespecial java.lang.StringBuffer.<init>:(Ljava/lang/String;)V
            astore 2 /* buffer */
        start local 2 // java.lang.StringBuffer buffer
         1: .line 691
            aload 2 /* buffer */
            bipush 91
            invokevirtual java.lang.StringBuffer.append:(C)Ljava/lang/StringBuffer;
            pop
         2: .line 692
            aload 2 /* buffer */
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.getSpaceLimit:()I
            invokevirtual java.lang.StringBuffer.append:(I)Ljava/lang/StringBuffer;
            pop
         3: .line 693
            aload 2 /* buffer */
            ldc "]: "
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         4: .line 694
            aload 2 /* buffer */
            invokestatic java.text.NumberFormat.getInstance:()Ljava/text/NumberFormat;
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.fillingRatio:()D
            invokevirtual java.text.NumberFormat.format:(D)Ljava/lang/String;
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         5: .line 695
            aload 2 /* buffer */
            ldc "% full"
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         6: .line 696
            aload 2 /* buffer */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            areturn
        end local 2 // java.lang.StringBuffer buffer
        end local 1 // java.lang.String cacheName
        end local 0 // org.eclipse.jdt.internal.core.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
            0    7     1  cacheName  Ljava/lang/String;
            1    7     2     buffer  Ljava/lang/StringBuffer;
    MethodParameters:
           Name  Flags
      cacheName  

  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.util.LRUCache this
        start local 1 // org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry entry
         0: .line 704
            aload 1 /* entry */
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.core.util.LRUCache.timestampCounter:I
            dup_x1
            iconst_1
            iadd
            putfield org.eclipse.jdt.internal.core.util.LRUCache.timestampCounter:I
            putfield org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry.timestamp:I
         1: .line 705
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.util.LRUCache.entryQueue:Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;
            aload 1 /* entry */
            if_acmpeq 4
         2: .line 706
            aload 0 /* this */
            aload 1 /* entry */
            iconst_1
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.privateRemoveEntry:(Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;Z)V
         3: .line 707
            aload 0 /* this */
            aload 1 /* entry */
            iconst_1
            invokevirtual org.eclipse.jdt.internal.core.util.LRUCache.privateAddEntry:(Lorg/eclipse/jdt/internal/core/util/LRUCache$LRUCacheEntry;Z)V
         4: .line 709
      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.util.LRUCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/eclipse/jdt/internal/core/util/LRUCache<TK;TV;>;
            0    5     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 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.util.LRUCache.clone:()Lorg/eclipse/jdt/internal/core/util/LRUCache;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException

  private static java.lang.String lambda$0(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/String;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.lang.Object o
         0: .line 676
            aload 0 /* o */
            instanceof org.eclipse.jdt.internal.core.JavaElement
            ifeq 1
            aload 0 /* o */
            checkcast org.eclipse.jdt.internal.core.JavaElement
            invokevirtual org.eclipse.jdt.internal.core.JavaElement.getElementName:()Ljava/lang/String;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* o */
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
      StackMap locals:
      StackMap stack: java.lang.String
         2: areturn
        end local 0 // java.lang.Object o
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0     o  TK;
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/lang/Object;Ljava/lang/Cloneable;
SourceFile: "LRUCache.java"
NestMembers:
  org.eclipse.jdt.internal.core.util.LRUCache$1  org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry  org.eclipse.jdt.internal.core.util.LRUCache$Stats
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  org.eclipse.jdt.internal.core.util.LRUCache$1
  public LRUCacheEntry = org.eclipse.jdt.internal.core.util.LRUCache$LRUCacheEntry of org.eclipse.jdt.internal.core.util.LRUCache
  public Stats = org.eclipse.jdt.internal.core.util.LRUCache$Stats of org.eclipse.jdt.internal.core.util.LRUCache
  Pair = org.eclipse.jdt.internal.core.util.ToStringSorter$Pair of org.eclipse.jdt.internal.core.util.ToStringSorter