public class com.sun.tools.jdi.LinkedHashMap extends java.util.AbstractMap implements java.util.Map, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.tools.jdi.LinkedHashMap
  super_class: java.util.AbstractMap
{
  private transient com.sun.tools.jdi.LinkedHashMap$Entry[] table;
    descriptor: [Lcom/sun/tools/jdi/LinkedHashMap$Entry;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient com.sun.tools.jdi.LinkedHashMap$Entry header;
    descriptor: Lcom/sun/tools/jdi/LinkedHashMap$Entry;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient int count;
    descriptor: I
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

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

  private float loadFactor;
    descriptor: F
    flags: (0x0002) ACC_PRIVATE

  private transient int modCount;
    descriptor: I
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient java.util.Set keySet;
    descriptor: Ljava/util/Set;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient java.util.Set entries;
    descriptor: Ljava/util/Set;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient java.util.Collection values;
    descriptor: Ljava/util/Collection;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private static final int KEYS;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private static final int VALUES;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private static final int ENTRIES;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  public void <init>(int, float);
    descriptor: (IF)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=3, args_size=3
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
        start local 1 // int initialCapacity
        start local 2 // float loadFactor
         0: .line 141
            aload 0 /* this */
            invokespecial java.util.AbstractMap.<init>:()V
         1: .line 129
            aload 0 /* this */
            iconst_0
            putfield com.sun.tools.jdi.LinkedHashMap.modCount:I
         2: .line 541
            aload 0 /* this */
            aconst_null
            putfield com.sun.tools.jdi.LinkedHashMap.keySet:Ljava/util/Set;
         3: .line 542
            aload 0 /* this */
            aconst_null
            putfield com.sun.tools.jdi.LinkedHashMap.entries:Ljava/util/Set;
         4: .line 543
            aload 0 /* this */
            aconst_null
            putfield com.sun.tools.jdi.LinkedHashMap.values:Ljava/util/Collection;
         5: .line 142
            iload 1 /* initialCapacity */
            ifge 9
         6: .line 143
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Illegal Initial Capacity: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         7: .line 144
            iload 1 /* initialCapacity */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         8: .line 143
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 145
      StackMap locals: com.sun.tools.jdi.LinkedHashMap int float
      StackMap stack:
            fload 2 /* loadFactor */
            fconst_1
            fcmpl
            ifgt 10
            fload 2 /* loadFactor */
            fconst_0
            fcmpg
            ifgt 13
        10: .line 146
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Illegal Load factor: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        11: .line 147
            fload 2 /* loadFactor */
            invokevirtual java.lang.StringBuilder.append:(F)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        12: .line 146
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        13: .line 148
      StackMap locals:
      StackMap stack:
            iload 1 /* initialCapacity */
            ifne 15
        14: .line 149
            iconst_1
            istore 1 /* initialCapacity */
        15: .line 150
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            fload 2 /* loadFactor */
            putfield com.sun.tools.jdi.LinkedHashMap.loadFactor:F
        16: .line 151
            aload 0 /* this */
            iload 1 /* initialCapacity */
            anewarray com.sun.tools.jdi.LinkedHashMap$Entry
            putfield com.sun.tools.jdi.LinkedHashMap.table:[Lcom/sun/tools/jdi/LinkedHashMap$Entry;
        17: .line 152
            aload 0 /* this */
            iload 1 /* initialCapacity */
            i2f
            fload 2 /* loadFactor */
            fmul
            f2i
            putfield com.sun.tools.jdi.LinkedHashMap.threshold:I
        18: .line 153
            aload 0 /* this */
            new com.sun.tools.jdi.LinkedHashMap$Entry
            dup
            iconst_m1
            aconst_null
            aconst_null
            aconst_null
            invokespecial com.sun.tools.jdi.LinkedHashMap$Entry.<init>:(ILjava/lang/Object;Ljava/lang/Object;Lcom/sun/tools/jdi/LinkedHashMap$Entry;)V
            putfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
        19: .line 154
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            dup_x1
            putfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            putfield com.sun.tools.jdi.LinkedHashMap$Entry.before:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
        20: .line 155
            return
        end local 2 // float loadFactor
        end local 1 // int initialCapacity
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   21     0             this  Lcom/sun/tools/jdi/LinkedHashMap;
            0   21     1  initialCapacity  I
            0   21     2       loadFactor  F
    MethodParameters:
                 Name  Flags
      initialCapacity  
      loadFactor       

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
        start local 1 // int initialCapacity
         0: .line 164
            aload 0 /* this */
            iload 1 /* initialCapacity */
            ldc 0.75
            invokespecial com.sun.tools.jdi.LinkedHashMap.<init>:(IF)V
         1: .line 165
            return
        end local 1 // int initialCapacity
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lcom/sun/tools/jdi/LinkedHashMap;
            0    2     1  initialCapacity  I
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
         0: .line 172
            aload 0 /* this */
            bipush 101
            ldc 0.75
            invokespecial com.sun.tools.jdi.LinkedHashMap.<init>:(IF)V
         1: .line 173
            return
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/jdi/LinkedHashMap;

  public void <init>(java.util.Map);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
        start local 1 // java.util.Map t
         0: .line 182
            aload 0 /* this */
            iconst_3
            aload 1 /* t */
            invokeinterface java.util.Map.size:()I
            imul
            bipush 11
            invokestatic java.lang.Math.max:(II)I
            ldc 0.75
            invokespecial com.sun.tools.jdi.LinkedHashMap.<init>:(IF)V
         1: .line 183
            aload 0 /* this */
            aload 1 /* t */
            invokevirtual com.sun.tools.jdi.LinkedHashMap.putAll:(Ljava/util/Map;)V
         2: .line 184
            return
        end local 1 // java.util.Map t
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/tools/jdi/LinkedHashMap;
            0    3     1     t  Ljava/util/Map;
    MethodParameters:
      Name  Flags
      t     

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

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

  public boolean containsValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
        start local 1 // java.lang.Object value
         0: .line 207
            aload 1 /* value */
            ifnonnull 8
         1: .line 208
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 2 /* e */
        start local 2 // com.sun.tools.jdi.LinkedHashMap$Entry e
         2: goto 6
         3: .line 209
      StackMap locals: com.sun.tools.jdi.LinkedHashMap$Entry
      StackMap stack:
            aload 2 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.value:Ljava/lang/Object;
            ifnonnull 5
         4: .line 210
            iconst_1
            ireturn
         5: .line 208
      StackMap locals:
      StackMap stack:
            aload 2 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 2 /* e */
      StackMap locals:
      StackMap stack:
         6: aload 2 /* e */
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            if_acmpne 3
        end local 2 // com.sun.tools.jdi.LinkedHashMap$Entry e
         7: .line 211
            goto 14
         8: .line 212
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 2 /* e */
        start local 2 // com.sun.tools.jdi.LinkedHashMap$Entry e
         9: goto 13
        10: .line 213
      StackMap locals: com.sun.tools.jdi.LinkedHashMap$Entry
      StackMap stack:
            aload 1 /* value */
            aload 2 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.value:Ljava/lang/Object;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
        11: .line 214
            iconst_1
            ireturn
        12: .line 212
      StackMap locals:
      StackMap stack:
            aload 2 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 2 /* e */
      StackMap locals:
      StackMap stack:
        13: aload 2 /* e */
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            if_acmpne 10
        end local 2 // com.sun.tools.jdi.LinkedHashMap$Entry e
        14: .line 216
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object value
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   15     0   this  Lcom/sun/tools/jdi/LinkedHashMap;
            0   15     1  value  Ljava/lang/Object;
            2    7     2      e  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            9   14     2      e  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
    MethodParameters:
       Name  Flags
      value  

  public boolean containsKey(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
        start local 1 // java.lang.Object key
         0: .line 226
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.table:[Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 2 /* tab */
        start local 2 // com.sun.tools.jdi.LinkedHashMap$Entry[] tab
         1: .line 227
            aload 1 /* key */
            ifnull 11
         2: .line 228
            aload 1 /* key */
            invokevirtual java.lang.Object.hashCode:()I
            istore 3 /* hash */
        start local 3 // int hash
         3: .line 229
            iload 3 /* hash */
            ldc 2147483647
            iand
            aload 2 /* tab */
            arraylength
            irem
            istore 4 /* index */
        start local 4 // int index
         4: .line 230
            aload 2 /* tab */
            iload 4 /* index */
            aaload
            astore 5 /* e */
        start local 5 // com.sun.tools.jdi.LinkedHashMap$Entry e
         5: goto 9
         6: .line 231
      StackMap locals: com.sun.tools.jdi.LinkedHashMap java.lang.Object com.sun.tools.jdi.LinkedHashMap$Entry[] int int com.sun.tools.jdi.LinkedHashMap$Entry
      StackMap stack:
            aload 5 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.hash:I
            iload 3 /* hash */
            if_icmpne 8
            aload 5 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.key:Ljava/lang/Object;
            aload 1 /* key */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
         7: .line 232
            iconst_1
            ireturn
         8: .line 230
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.next:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 5 /* e */
      StackMap locals:
      StackMap stack:
         9: aload 5 /* e */
            ifnonnull 6
        end local 5 // com.sun.tools.jdi.LinkedHashMap$Entry e
        end local 4 // int index
        end local 3 // int hash
        10: .line 233
            goto 17
        11: .line 234
      StackMap locals:
      StackMap stack:
            aload 2 /* tab */
            iconst_0
            aaload
            astore 3 /* e */
        start local 3 // com.sun.tools.jdi.LinkedHashMap$Entry e
        12: goto 16
        13: .line 235
      StackMap locals: com.sun.tools.jdi.LinkedHashMap$Entry
      StackMap stack:
            aload 3 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.key:Ljava/lang/Object;
            ifnonnull 15
        14: .line 236
            iconst_1
            ireturn
        15: .line 234
      StackMap locals:
      StackMap stack:
            aload 3 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.next:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 3 /* e */
      StackMap locals:
      StackMap stack:
        16: aload 3 /* e */
            ifnonnull 13
        end local 3 // com.sun.tools.jdi.LinkedHashMap$Entry e
        17: .line 239
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // com.sun.tools.jdi.LinkedHashMap$Entry[] tab
        end local 1 // java.lang.Object key
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   18     0   this  Lcom/sun/tools/jdi/LinkedHashMap;
            0   18     1    key  Ljava/lang/Object;
            1   18     2    tab  [Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            3   10     3   hash  I
            4   10     4  index  I
            5   10     5      e  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
           12   17     3      e  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
    MethodParameters:
      Name  Flags
      key   

  public java.lang.Object get(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
        start local 1 // java.lang.Object key
         0: .line 253
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual com.sun.tools.jdi.LinkedHashMap.getEntry:(Ljava/lang/Object;)Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 2 /* e */
        start local 2 // com.sun.tools.jdi.LinkedHashMap$Entry e
         1: .line 254
            aload 2 /* e */
            ifnonnull 2
            aconst_null
            goto 3
      StackMap locals: com.sun.tools.jdi.LinkedHashMap$Entry
      StackMap stack:
         2: aload 2 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.value:Ljava/lang/Object;
      StackMap locals:
      StackMap stack: java.lang.Object
         3: areturn
        end local 2 // com.sun.tools.jdi.LinkedHashMap$Entry e
        end local 1 // java.lang.Object key
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/tools/jdi/LinkedHashMap;
            0    4     1   key  Ljava/lang/Object;
            1    4     2     e  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
    MethodParameters:
      Name  Flags
      key   

  private com.sun.tools.jdi.LinkedHashMap$Entry getEntry(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lcom/sun/tools/jdi/LinkedHashMap$Entry;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
        start local 1 // java.lang.Object key
         0: .line 262
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.table:[Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 2 /* tab */
        start local 2 // com.sun.tools.jdi.LinkedHashMap$Entry[] tab
         1: .line 264
            aload 1 /* key */
            ifnull 11
         2: .line 265
            aload 1 /* key */
            invokevirtual java.lang.Object.hashCode:()I
            istore 3 /* hash */
        start local 3 // int hash
         3: .line 266
            iload 3 /* hash */
            ldc 2147483647
            iand
            aload 2 /* tab */
            arraylength
            irem
            istore 4 /* index */
        start local 4 // int index
         4: .line 267
            aload 2 /* tab */
            iload 4 /* index */
            aaload
            astore 5 /* e */
        start local 5 // com.sun.tools.jdi.LinkedHashMap$Entry e
         5: goto 9
         6: .line 268
      StackMap locals: com.sun.tools.jdi.LinkedHashMap java.lang.Object com.sun.tools.jdi.LinkedHashMap$Entry[] int int com.sun.tools.jdi.LinkedHashMap$Entry
      StackMap stack:
            aload 5 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.hash:I
            iload 3 /* hash */
            if_icmpne 8
            aload 5 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.key:Ljava/lang/Object;
            aload 1 /* key */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
         7: .line 269
            aload 5 /* e */
            areturn
         8: .line 267
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.next:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 5 /* e */
      StackMap locals:
      StackMap stack:
         9: aload 5 /* e */
            ifnonnull 6
        end local 5 // com.sun.tools.jdi.LinkedHashMap$Entry e
        end local 4 // int index
        end local 3 // int hash
        10: .line 270
            goto 17
        11: .line 271
      StackMap locals:
      StackMap stack:
            aload 2 /* tab */
            iconst_0
            aaload
            astore 3 /* e */
        start local 3 // com.sun.tools.jdi.LinkedHashMap$Entry e
        12: goto 16
        13: .line 272
      StackMap locals: com.sun.tools.jdi.LinkedHashMap$Entry
      StackMap stack:
            aload 3 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.key:Ljava/lang/Object;
            ifnonnull 15
        14: .line 273
            aload 3 /* e */
            areturn
        15: .line 271
      StackMap locals:
      StackMap stack:
            aload 3 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.next:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 3 /* e */
      StackMap locals:
      StackMap stack:
        16: aload 3 /* e */
            ifnonnull 13
        end local 3 // com.sun.tools.jdi.LinkedHashMap$Entry e
        17: .line 276
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // com.sun.tools.jdi.LinkedHashMap$Entry[] tab
        end local 1 // java.lang.Object key
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   18     0   this  Lcom/sun/tools/jdi/LinkedHashMap;
            0   18     1    key  Ljava/lang/Object;
            1   18     2    tab  [Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            3   10     3   hash  I
            4   10     4  index  I
            5   10     5      e  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
           12   17     3      e  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
    MethodParameters:
      Name  Flags
      key   

  private void rehash();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
         0: .line 286
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.table:[Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            arraylength
            istore 1 /* oldCapacity */
        start local 1 // int oldCapacity
         1: .line 289
            iload 1 /* oldCapacity */
            iconst_2
            imul
            iconst_1
            iadd
            istore 2 /* newCapacity */
        start local 2 // int newCapacity
         2: .line 290
            iload 2 /* newCapacity */
            anewarray com.sun.tools.jdi.LinkedHashMap$Entry
            astore 3 /* newMap */
        start local 3 // com.sun.tools.jdi.LinkedHashMap$Entry[] newMap
         3: .line 292
            aload 0 /* this */
            dup
            getfield com.sun.tools.jdi.LinkedHashMap.modCount:I
            iconst_1
            iadd
            putfield com.sun.tools.jdi.LinkedHashMap.modCount:I
         4: .line 293
            aload 0 /* this */
            iload 2 /* newCapacity */
            i2f
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.loadFactor:F
            fmul
            f2i
            putfield com.sun.tools.jdi.LinkedHashMap.threshold:I
         5: .line 294
            aload 0 /* this */
            aload 3 /* newMap */
            putfield com.sun.tools.jdi.LinkedHashMap.table:[Lcom/sun/tools/jdi/LinkedHashMap$Entry;
         6: .line 296
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 4 /* e */
        start local 4 // com.sun.tools.jdi.LinkedHashMap$Entry e
         7: goto 12
         8: .line 297
      StackMap locals: com.sun.tools.jdi.LinkedHashMap int int com.sun.tools.jdi.LinkedHashMap$Entry[] com.sun.tools.jdi.LinkedHashMap$Entry
      StackMap stack:
            aload 4 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.hash:I
            ldc 2147483647
            iand
            iload 2 /* newCapacity */
            irem
            istore 5 /* index */
        start local 5 // int index
         9: .line 298
            aload 4 /* e */
            aload 3 /* newMap */
            iload 5 /* index */
            aaload
            putfield com.sun.tools.jdi.LinkedHashMap$Entry.next:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
        10: .line 299
            aload 3 /* newMap */
            iload 5 /* index */
            aload 4 /* e */
            aastore
        end local 5 // int index
        11: .line 296
            aload 4 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 4 /* e */
      StackMap locals:
      StackMap stack:
        12: aload 4 /* e */
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            if_acmpne 8
        end local 4 // com.sun.tools.jdi.LinkedHashMap$Entry e
        13: .line 301
            return
        end local 3 // com.sun.tools.jdi.LinkedHashMap$Entry[] newMap
        end local 2 // int newCapacity
        end local 1 // int oldCapacity
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   14     0         this  Lcom/sun/tools/jdi/LinkedHashMap;
            1   14     1  oldCapacity  I
            2   14     2  newCapacity  I
            3   14     3       newMap  [Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            7   13     4            e  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            9   11     5        index  I

  private void listRemove(com.sun.tools.jdi.LinkedHashMap$Entry);
    descriptor: (Lcom/sun/tools/jdi/LinkedHashMap$Entry;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
        start local 1 // com.sun.tools.jdi.LinkedHashMap$Entry entry
         0: .line 307
            aload 1 /* entry */
            ifnonnull 2
         1: .line 308
            return
         2: .line 310
      StackMap locals:
      StackMap stack:
            aload 1 /* entry */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.before:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            aload 1 /* entry */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            putfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
         3: .line 311
            aload 1 /* entry */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            aload 1 /* entry */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.before:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            putfield com.sun.tools.jdi.LinkedHashMap$Entry.before:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
         4: .line 312
            return
        end local 1 // com.sun.tools.jdi.LinkedHashMap$Entry entry
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lcom/sun/tools/jdi/LinkedHashMap;
            0    5     1  entry  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
    MethodParameters:
       Name  Flags
      entry  

  private void listAddBefore(com.sun.tools.jdi.LinkedHashMap$Entry, com.sun.tools.jdi.LinkedHashMap$Entry);
    descriptor: (Lcom/sun/tools/jdi/LinkedHashMap$Entry;Lcom/sun/tools/jdi/LinkedHashMap$Entry;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
        start local 1 // com.sun.tools.jdi.LinkedHashMap$Entry entry
        start local 2 // com.sun.tools.jdi.LinkedHashMap$Entry existEntry
         0: .line 319
            aload 1 /* entry */
            aload 2 /* existEntry */
            putfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
         1: .line 320
            aload 1 /* entry */
            aload 2 /* existEntry */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.before:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            putfield com.sun.tools.jdi.LinkedHashMap$Entry.before:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
         2: .line 321
            aload 1 /* entry */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.before:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            aload 1 /* entry */
            putfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
         3: .line 322
            aload 1 /* entry */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            aload 1 /* entry */
            putfield com.sun.tools.jdi.LinkedHashMap$Entry.before:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
         4: .line 323
            return
        end local 2 // com.sun.tools.jdi.LinkedHashMap$Entry existEntry
        end local 1 // com.sun.tools.jdi.LinkedHashMap$Entry entry
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/sun/tools/jdi/LinkedHashMap;
            0    5     1       entry  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            0    5     2  existEntry  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
    MethodParameters:
            Name  Flags
      entry       
      existEntry  

  public int indexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
        start local 1 // java.lang.Object key
         0: .line 333
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: .line 334
            aload 1 /* key */
            ifnonnull 9
         2: .line 335
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 3 /* e */
        start local 3 // com.sun.tools.jdi.LinkedHashMap$Entry e
         3: goto 7
         4: .line 336
      StackMap locals: int com.sun.tools.jdi.LinkedHashMap$Entry
      StackMap stack:
            aload 3 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.key:Ljava/lang/Object;
            ifnonnull 6
         5: .line 337
            iload 2 /* i */
            ireturn
         6: .line 335
      StackMap locals:
      StackMap stack:
            aload 3 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 3 /* e */
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: aload 3 /* e */
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            if_acmpne 4
        end local 3 // com.sun.tools.jdi.LinkedHashMap$Entry e
         8: .line 338
            goto 15
         9: .line 339
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 3 /* e */
        start local 3 // com.sun.tools.jdi.LinkedHashMap$Entry e
        10: goto 14
        11: .line 340
      StackMap locals: com.sun.tools.jdi.LinkedHashMap$Entry
      StackMap stack:
            aload 1 /* key */
            aload 3 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.key:Ljava/lang/Object;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 13
        12: .line 341
            iload 2 /* i */
            ireturn
        13: .line 339
      StackMap locals:
      StackMap stack:
            aload 3 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 3 /* e */
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: aload 3 /* e */
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            if_acmpne 11
        end local 3 // com.sun.tools.jdi.LinkedHashMap$Entry e
        15: .line 343
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 2 // int i
        end local 1 // java.lang.Object key
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Lcom/sun/tools/jdi/LinkedHashMap;
            0   16     1   key  Ljava/lang/Object;
            1   16     2     i  I
            3    8     3     e  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
           10   15     3     e  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
    MethodParameters:
      Name  Flags
      key   

  private java.lang.Object putAhead(java.lang.Object, java.lang.Object, com.sun.tools.jdi.LinkedHashMap$Entry);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Lcom/sun/tools/jdi/LinkedHashMap$Entry;)Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=9, args_size=4
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
        start local 3 // com.sun.tools.jdi.LinkedHashMap$Entry existEntry
         0: .line 359
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.table:[Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 4 /* tab */
        start local 4 // com.sun.tools.jdi.LinkedHashMap$Entry[] tab
         1: .line 360
            iconst_0
            istore 5 /* hash */
        start local 5 // int hash
         2: .line 361
            iconst_0
            istore 6 /* index */
        start local 6 // int index
         3: .line 363
            aload 1 /* key */
            ifnull 15
         4: .line 364
            aload 1 /* key */
            invokevirtual java.lang.Object.hashCode:()I
            istore 5 /* hash */
         5: .line 365
            iload 5 /* hash */
            ldc 2147483647
            iand
            aload 4 /* tab */
            arraylength
            irem
            istore 6 /* index */
         6: .line 366
            aload 4 /* tab */
            iload 6 /* index */
            aaload
            astore 7 /* e */
        start local 7 // com.sun.tools.jdi.LinkedHashMap$Entry e
         7: goto 13
         8: .line 367
      StackMap locals: com.sun.tools.jdi.LinkedHashMap java.lang.Object java.lang.Object com.sun.tools.jdi.LinkedHashMap$Entry com.sun.tools.jdi.LinkedHashMap$Entry[] int int com.sun.tools.jdi.LinkedHashMap$Entry
      StackMap stack:
            aload 7 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.hash:I
            iload 5 /* hash */
            if_icmpne 12
            aload 7 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.key:Ljava/lang/Object;
            aload 1 /* key */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
         9: .line 368
            aload 7 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.value:Ljava/lang/Object;
            astore 8 /* old */
        start local 8 // java.lang.Object old
        10: .line 369
            aload 7 /* e */
            aload 2 /* value */
            putfield com.sun.tools.jdi.LinkedHashMap$Entry.value:Ljava/lang/Object;
        11: .line 370
            aload 8 /* old */
            areturn
        end local 8 // java.lang.Object old
        12: .line 366
      StackMap locals:
      StackMap stack:
            aload 7 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.next:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 7 /* e */
      StackMap locals:
      StackMap stack:
        13: aload 7 /* e */
            ifnonnull 8
        end local 7 // com.sun.tools.jdi.LinkedHashMap$Entry e
        14: .line 373
            goto 23
        15: .line 374
      StackMap locals:
      StackMap stack:
            aload 4 /* tab */
            iconst_0
            aaload
            astore 7 /* e */
        start local 7 // com.sun.tools.jdi.LinkedHashMap$Entry e
        16: goto 22
        17: .line 375
      StackMap locals: com.sun.tools.jdi.LinkedHashMap$Entry
      StackMap stack:
            aload 7 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.key:Ljava/lang/Object;
            ifnonnull 21
        18: .line 376
            aload 7 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.value:Ljava/lang/Object;
            astore 8 /* old */
        start local 8 // java.lang.Object old
        19: .line 377
            aload 7 /* e */
            aload 2 /* value */
            putfield com.sun.tools.jdi.LinkedHashMap$Entry.value:Ljava/lang/Object;
        20: .line 378
            aload 8 /* old */
            areturn
        end local 8 // java.lang.Object old
        21: .line 374
      StackMap locals:
      StackMap stack:
            aload 7 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.next:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 7 /* e */
      StackMap locals:
      StackMap stack:
        22: aload 7 /* e */
            ifnonnull 17
        end local 7 // com.sun.tools.jdi.LinkedHashMap$Entry e
        23: .line 383
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.sun.tools.jdi.LinkedHashMap.modCount:I
            iconst_1
            iadd
            putfield com.sun.tools.jdi.LinkedHashMap.modCount:I
        24: .line 384
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.count:I
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.threshold:I
            if_icmplt 28
        25: .line 386
            aload 0 /* this */
            invokevirtual com.sun.tools.jdi.LinkedHashMap.rehash:()V
        26: .line 387
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.table:[Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 4 /* tab */
        27: .line 388
            iload 5 /* hash */
            ldc 2147483647
            iand
            aload 4 /* tab */
            arraylength
            irem
            istore 6 /* index */
        28: .line 392
      StackMap locals:
      StackMap stack:
            new com.sun.tools.jdi.LinkedHashMap$Entry
            dup
            iload 5 /* hash */
            aload 1 /* key */
            aload 2 /* value */
            aload 4 /* tab */
            iload 6 /* index */
            aaload
            invokespecial com.sun.tools.jdi.LinkedHashMap$Entry.<init>:(ILjava/lang/Object;Ljava/lang/Object;Lcom/sun/tools/jdi/LinkedHashMap$Entry;)V
            astore 7 /* e */
        start local 7 // com.sun.tools.jdi.LinkedHashMap$Entry e
        29: .line 393
            aload 4 /* tab */
            iload 6 /* index */
            aload 7 /* e */
            aastore
        30: .line 394
            aload 0 /* this */
            aload 7 /* e */
            aload 3 /* existEntry */
            invokevirtual com.sun.tools.jdi.LinkedHashMap.listAddBefore:(Lcom/sun/tools/jdi/LinkedHashMap$Entry;Lcom/sun/tools/jdi/LinkedHashMap$Entry;)V
        31: .line 395
            aload 0 /* this */
            dup
            getfield com.sun.tools.jdi.LinkedHashMap.count:I
            iconst_1
            iadd
            putfield com.sun.tools.jdi.LinkedHashMap.count:I
        32: .line 396
            aconst_null
            areturn
        end local 7 // com.sun.tools.jdi.LinkedHashMap$Entry e
        end local 6 // int index
        end local 5 // int hash
        end local 4 // com.sun.tools.jdi.LinkedHashMap$Entry[] tab
        end local 3 // com.sun.tools.jdi.LinkedHashMap$Entry existEntry
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   33     0        this  Lcom/sun/tools/jdi/LinkedHashMap;
            0   33     1         key  Ljava/lang/Object;
            0   33     2       value  Ljava/lang/Object;
            0   33     3  existEntry  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            1   33     4         tab  [Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            2   33     5        hash  I
            3   33     6       index  I
            7   14     7           e  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
           10   12     8         old  Ljava/lang/Object;
           16   23     7           e  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
           19   21     8         old  Ljava/lang/Object;
           29   33     7           e  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
    MethodParameters:
            Name  Flags
      key         
      value       
      existEntry  

  public java.lang.Object put(int, java.lang.Object, java.lang.Object);
    descriptor: (ILjava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
        start local 1 // int index
        start local 2 // java.lang.Object key
        start local 3 // java.lang.Object value
         0: .line 417
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.count:I
            if_icmple 2
         1: .line 418
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 419
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 4 /* e */
        start local 4 // com.sun.tools.jdi.LinkedHashMap$Entry e
         3: .line 420
            iload 1 /* index */
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.count:I
            if_icmpne 5
         4: .line 421
            aload 0 /* this */
            aload 2 /* key */
            aload 3 /* value */
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            invokevirtual com.sun.tools.jdi.LinkedHashMap.putAhead:(Ljava/lang/Object;Ljava/lang/Object;Lcom/sun/tools/jdi/LinkedHashMap$Entry;)Ljava/lang/Object;
            areturn
         5: .line 423
      StackMap locals: com.sun.tools.jdi.LinkedHashMap$Entry
      StackMap stack:
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         6: goto 9
         7: .line 424
      StackMap locals: int
      StackMap stack:
            aload 4 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 4 /* e */
         8: .line 423
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 5 /* i */
            iload 1 /* index */
            if_icmplt 7
        end local 5 // int i
        10: .line 425
            aload 0 /* this */
            aload 2 /* key */
            aload 3 /* value */
            aload 4 /* e */
            invokevirtual com.sun.tools.jdi.LinkedHashMap.putAhead:(Ljava/lang/Object;Ljava/lang/Object;Lcom/sun/tools/jdi/LinkedHashMap$Entry;)Ljava/lang/Object;
            areturn
        end local 4 // com.sun.tools.jdi.LinkedHashMap$Entry e
        end local 3 // java.lang.Object value
        end local 2 // java.lang.Object key
        end local 1 // int index
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lcom/sun/tools/jdi/LinkedHashMap;
            0   11     1  index  I
            0   11     2    key  Ljava/lang/Object;
            0   11     3  value  Ljava/lang/Object;
            3   11     4      e  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            6   10     5      i  I
    MethodParameters:
       Name  Flags
      index  
      key    
      value  

  public java.lang.Object put(java.lang.Object, java.lang.Object);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 444
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* value */
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            invokevirtual com.sun.tools.jdi.LinkedHashMap.putAhead:(Ljava/lang/Object;Ljava/lang/Object;Lcom/sun/tools/jdi/LinkedHashMap$Entry;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/tools/jdi/LinkedHashMap;
            0    1     1    key  Ljava/lang/Object;
            0    1     2  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      key    
      value  

  public java.lang.Object remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=2
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
        start local 1 // java.lang.Object key
         0: .line 458
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.table:[Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 2 /* tab */
        start local 2 // com.sun.tools.jdi.LinkedHashMap$Entry[] tab
         1: .line 460
            aload 1 /* key */
            ifnull 20
         2: .line 461
            aload 1 /* key */
            invokevirtual java.lang.Object.hashCode:()I
            istore 3 /* hash */
        start local 3 // int hash
         3: .line 462
            iload 3 /* hash */
            ldc 2147483647
            iand
            aload 2 /* tab */
            arraylength
            irem
            istore 4 /* index */
        start local 4 // int index
         4: .line 464
            aload 2 /* tab */
            iload 4 /* index */
            aaload
            astore 5 /* e */
        start local 5 // com.sun.tools.jdi.LinkedHashMap$Entry e
         5: aconst_null
            astore 6 /* prev */
        start local 6 // com.sun.tools.jdi.LinkedHashMap$Entry prev
         6: goto 18
         7: .line 466
      StackMap locals: com.sun.tools.jdi.LinkedHashMap java.lang.Object com.sun.tools.jdi.LinkedHashMap$Entry[] int int com.sun.tools.jdi.LinkedHashMap$Entry com.sun.tools.jdi.LinkedHashMap$Entry
      StackMap stack:
            aload 5 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.hash:I
            iload 3 /* hash */
            if_icmpne 17
            aload 5 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.key:Ljava/lang/Object;
            aload 1 /* key */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 17
         8: .line 467
            aload 0 /* this */
            dup
            getfield com.sun.tools.jdi.LinkedHashMap.modCount:I
            iconst_1
            iadd
            putfield com.sun.tools.jdi.LinkedHashMap.modCount:I
         9: .line 468
            aload 6 /* prev */
            ifnull 11
        10: .line 469
            aload 6 /* prev */
            aload 5 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.next:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            putfield com.sun.tools.jdi.LinkedHashMap$Entry.next:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            goto 12
        11: .line 471
      StackMap locals:
      StackMap stack:
            aload 2 /* tab */
            iload 4 /* index */
            aload 5 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.next:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            aastore
        12: .line 473
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.sun.tools.jdi.LinkedHashMap.count:I
            iconst_1
            isub
            putfield com.sun.tools.jdi.LinkedHashMap.count:I
        13: .line 474
            aload 5 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.value:Ljava/lang/Object;
            astore 7 /* oldValue */
        start local 7 // java.lang.Object oldValue
        14: .line 475
            aload 5 /* e */
            aconst_null
            putfield com.sun.tools.jdi.LinkedHashMap$Entry.value:Ljava/lang/Object;
        15: .line 477
            aload 0 /* this */
            aload 5 /* e */
            invokevirtual com.sun.tools.jdi.LinkedHashMap.listRemove:(Lcom/sun/tools/jdi/LinkedHashMap$Entry;)V
        16: .line 478
            aload 7 /* oldValue */
            areturn
        end local 7 // java.lang.Object oldValue
        17: .line 465
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            astore 6 /* prev */
            aload 5 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.next:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 5 /* e */
        18: .line 464
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            ifnonnull 7
        end local 6 // com.sun.tools.jdi.LinkedHashMap$Entry prev
        end local 5 // com.sun.tools.jdi.LinkedHashMap$Entry e
        end local 4 // int index
        end local 3 // int hash
        19: .line 481
            goto 35
        20: .line 482
      StackMap locals: com.sun.tools.jdi.LinkedHashMap java.lang.Object com.sun.tools.jdi.LinkedHashMap$Entry[]
      StackMap stack:
            aload 2 /* tab */
            iconst_0
            aaload
            astore 3 /* e */
        start local 3 // com.sun.tools.jdi.LinkedHashMap$Entry e
        21: aconst_null
            astore 4 /* prev */
        start local 4 // com.sun.tools.jdi.LinkedHashMap$Entry prev
        22: goto 34
        23: .line 484
      StackMap locals: com.sun.tools.jdi.LinkedHashMap$Entry com.sun.tools.jdi.LinkedHashMap$Entry
      StackMap stack:
            aload 3 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.key:Ljava/lang/Object;
            ifnonnull 33
        24: .line 485
            aload 0 /* this */
            dup
            getfield com.sun.tools.jdi.LinkedHashMap.modCount:I
            iconst_1
            iadd
            putfield com.sun.tools.jdi.LinkedHashMap.modCount:I
        25: .line 486
            aload 4 /* prev */
            ifnull 27
        26: .line 487
            aload 4 /* prev */
            aload 3 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.next:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            putfield com.sun.tools.jdi.LinkedHashMap$Entry.next:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            goto 28
        27: .line 489
      StackMap locals:
      StackMap stack:
            aload 2 /* tab */
            iconst_0
            aload 3 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.next:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            aastore
        28: .line 491
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.sun.tools.jdi.LinkedHashMap.count:I
            iconst_1
            isub
            putfield com.sun.tools.jdi.LinkedHashMap.count:I
        29: .line 492
            aload 3 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.value:Ljava/lang/Object;
            astore 5 /* oldValue */
        start local 5 // java.lang.Object oldValue
        30: .line 493
            aload 3 /* e */
            aconst_null
            putfield com.sun.tools.jdi.LinkedHashMap$Entry.value:Ljava/lang/Object;
        31: .line 495
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual com.sun.tools.jdi.LinkedHashMap.listRemove:(Lcom/sun/tools/jdi/LinkedHashMap$Entry;)V
        32: .line 496
            aload 5 /* oldValue */
            areturn
        end local 5 // java.lang.Object oldValue
        33: .line 483
      StackMap locals:
      StackMap stack:
            aload 3 /* e */
            astore 4 /* prev */
            aload 3 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.next:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 3 /* e */
        34: .line 482
      StackMap locals:
      StackMap stack:
            aload 3 /* e */
            ifnonnull 23
        end local 4 // com.sun.tools.jdi.LinkedHashMap$Entry prev
        end local 3 // com.sun.tools.jdi.LinkedHashMap$Entry e
        35: .line 501
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // com.sun.tools.jdi.LinkedHashMap$Entry[] tab
        end local 1 // java.lang.Object key
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   36     0      this  Lcom/sun/tools/jdi/LinkedHashMap;
            0   36     1       key  Ljava/lang/Object;
            1   36     2       tab  [Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            3   19     3      hash  I
            4   19     4     index  I
            5   19     5         e  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            6   19     6      prev  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
           14   17     7  oldValue  Ljava/lang/Object;
           21   35     3         e  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
           22   35     4      prev  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
           30   33     5  oldValue  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   

  public void putAll(java.util.Map);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
        start local 1 // java.util.Map t
         0: .line 512
            aload 1 /* t */
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 2 /* i */
        start local 2 // java.util.Iterator i
         1: .line 513
            goto 4
         2: .line 514
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 2 /* i */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 3 /* e */
        start local 3 // java.util.Map$Entry e
         3: .line 515
            aload 0 /* this */
            aload 3 /* e */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            aload 3 /* e */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            invokevirtual com.sun.tools.jdi.LinkedHashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 3 // java.util.Map$Entry e
         4: .line 513
      StackMap locals:
      StackMap stack:
            aload 2 /* i */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 517
            return
        end local 2 // java.util.Iterator i
        end local 1 // java.util.Map t
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/sun/tools/jdi/LinkedHashMap;
            0    6     1     t  Ljava/util/Map;
            1    6     2     i  Ljava/util/Iterator;
            3    4     3     e  Ljava/util/Map$Entry;
    MethodParameters:
      Name  Flags
      t     

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
         0: .line 523
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.table:[Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 1 /* tab */
        start local 1 // com.sun.tools.jdi.LinkedHashMap$Entry[] tab
         1: .line 524
            aload 0 /* this */
            dup
            getfield com.sun.tools.jdi.LinkedHashMap.modCount:I
            iconst_1
            iadd
            putfield com.sun.tools.jdi.LinkedHashMap.modCount:I
         2: .line 525
            aload 1 /* tab */
            arraylength
            istore 2 /* index */
        start local 2 // int index
         3: goto 5
         4: .line 526
      StackMap locals: com.sun.tools.jdi.LinkedHashMap$Entry[] int
      StackMap stack:
            aload 1 /* tab */
            iload 2 /* index */
            aconst_null
            aastore
         5: .line 525
      StackMap locals:
      StackMap stack:
            iinc 2 /* index */ -1
            iload 2 /* index */
            ifge 4
        end local 2 // int index
         6: .line 527
            aload 0 /* this */
            iconst_0
            putfield com.sun.tools.jdi.LinkedHashMap.count:I
         7: .line 528
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            dup_x1
            putfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            putfield com.sun.tools.jdi.LinkedHashMap$Entry.before:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
         8: .line 529
            return
        end local 1 // com.sun.tools.jdi.LinkedHashMap$Entry[] tab
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lcom/sun/tools/jdi/LinkedHashMap;
            1    9     1    tab  [Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            3    6     2  index  I

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
         0: .line 536
            new com.sun.tools.jdi.LinkedHashMap
            dup
            aload 0 /* this */
            invokespecial com.sun.tools.jdi.LinkedHashMap.<init>:(Ljava/util/Map;)V
            areturn
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/jdi/LinkedHashMap;

  public java.util.Set keySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
         0: .line 554
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.keySet:Ljava/util/Set;
            ifnonnull 2
         1: .line 555
            aload 0 /* this */
            new com.sun.tools.jdi.LinkedHashMap$1
            dup
            aload 0 /* this */
            invokespecial com.sun.tools.jdi.LinkedHashMap$1.<init>:(Lcom/sun/tools/jdi/LinkedHashMap;)V
            putfield com.sun.tools.jdi.LinkedHashMap.keySet:Ljava/util/Set;
         2: .line 573
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.keySet:Ljava/util/Set;
            areturn
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/tools/jdi/LinkedHashMap;

  public java.util.Collection values();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
         0: .line 586
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.values:Ljava/util/Collection;
            ifnonnull 2
         1: .line 587
            aload 0 /* this */
            new com.sun.tools.jdi.LinkedHashMap$2
            dup
            aload 0 /* this */
            invokespecial com.sun.tools.jdi.LinkedHashMap$2.<init>:(Lcom/sun/tools/jdi/LinkedHashMap;)V
            putfield com.sun.tools.jdi.LinkedHashMap.values:Ljava/util/Collection;
         2: .line 602
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.values:Ljava/util/Collection;
            areturn
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/tools/jdi/LinkedHashMap;

  public java.util.Set entrySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
         0: .line 618
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.entries:Ljava/util/Set;
            ifnonnull 2
         1: .line 619
            aload 0 /* this */
            new com.sun.tools.jdi.LinkedHashMap$3
            dup
            aload 0 /* this */
            invokespecial com.sun.tools.jdi.LinkedHashMap$3.<init>:(Lcom/sun/tools/jdi/LinkedHashMap;)V
            putfield com.sun.tools.jdi.LinkedHashMap.entries:Ljava/util/Set;
         2: .line 676
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.entries:Ljava/util/Set;
            areturn
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/tools/jdi/LinkedHashMap;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=11, args_size=2
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
        start local 1 // java.lang.Object o
         0: .line 703
            aload 1 /* o */
            aload 0 /* this */
            if_acmpne 2
         1: .line 704
            iconst_1
            ireturn
         2: .line 706
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            instanceof com.sun.tools.jdi.LinkedHashMap
            ifne 4
         3: .line 707
            iconst_0
            ireturn
         4: .line 708
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast com.sun.tools.jdi.LinkedHashMap
            astore 2 /* t */
        start local 2 // com.sun.tools.jdi.LinkedHashMap t
         5: .line 709
            aload 2 /* t */
            invokevirtual com.sun.tools.jdi.LinkedHashMap.size:()I
            aload 0 /* this */
            invokevirtual com.sun.tools.jdi.LinkedHashMap.size:()I
            if_icmpeq 7
         6: .line 710
            iconst_0
            ireturn
         7: .line 712
      StackMap locals: com.sun.tools.jdi.LinkedHashMap
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.tools.jdi.LinkedHashMap.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 3 /* i1 */
        start local 3 // java.util.Iterator i1
         8: .line 713
            aload 2 /* t */
            invokevirtual com.sun.tools.jdi.LinkedHashMap.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 4 /* i2 */
        start local 4 // java.util.Iterator i2
         9: .line 715
            goto 22
        10: .line 716
      StackMap locals: java.util.Iterator java.util.Iterator
      StackMap stack:
            aload 3 /* i1 */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.sun.tools.jdi.LinkedHashMap$Entry
            astore 5 /* e1 */
        start local 5 // com.sun.tools.jdi.LinkedHashMap$Entry e1
        11: .line 717
            aload 4 /* i2 */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.sun.tools.jdi.LinkedHashMap$Entry
            astore 6 /* e2 */
        start local 6 // com.sun.tools.jdi.LinkedHashMap$Entry e2
        12: .line 719
            aload 5 /* e1 */
            invokevirtual com.sun.tools.jdi.LinkedHashMap$Entry.getKey:()Ljava/lang/Object;
            astore 7 /* key1 */
        start local 7 // java.lang.Object key1
        13: .line 720
            aload 5 /* e1 */
            invokevirtual com.sun.tools.jdi.LinkedHashMap$Entry.getValue:()Ljava/lang/Object;
            astore 8 /* value1 */
        start local 8 // java.lang.Object value1
        14: .line 721
            aload 6 /* e2 */
            invokevirtual com.sun.tools.jdi.LinkedHashMap$Entry.getKey:()Ljava/lang/Object;
            astore 9 /* key2 */
        start local 9 // java.lang.Object key2
        15: .line 722
            aload 6 /* e2 */
            invokevirtual com.sun.tools.jdi.LinkedHashMap$Entry.getValue:()Ljava/lang/Object;
            astore 10 /* value2 */
        start local 10 // java.lang.Object value2
        16: .line 724
            aload 7 /* key1 */
            ifnonnull 17
            aload 9 /* key2 */
            ifnonnull 21
            goto 18
      StackMap locals: com.sun.tools.jdi.LinkedHashMap java.lang.Object com.sun.tools.jdi.LinkedHashMap java.util.Iterator java.util.Iterator com.sun.tools.jdi.LinkedHashMap$Entry com.sun.tools.jdi.LinkedHashMap$Entry java.lang.Object java.lang.Object java.lang.Object java.lang.Object
      StackMap stack:
        17: aload 7 /* key1 */
            aload 9 /* key2 */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 21
        18: .line 725
      StackMap locals:
      StackMap stack:
            aload 8 /* value1 */
            ifnonnull 19
            aload 10 /* value2 */
            ifnonnull 21
            goto 22
      StackMap locals:
      StackMap stack:
        19: aload 8 /* value1 */
            aload 10 /* value2 */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 21
        20: .line 726
            goto 22
        21: .line 728
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 10 // java.lang.Object value2
        end local 9 // java.lang.Object key2
        end local 8 // java.lang.Object value1
        end local 7 // java.lang.Object key1
        end local 6 // com.sun.tools.jdi.LinkedHashMap$Entry e2
        end local 5 // com.sun.tools.jdi.LinkedHashMap$Entry e1
        22: .line 715
      StackMap locals: com.sun.tools.jdi.LinkedHashMap java.lang.Object com.sun.tools.jdi.LinkedHashMap java.util.Iterator java.util.Iterator
      StackMap stack:
            aload 3 /* i1 */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 10
        23: .line 731
            iconst_1
            ireturn
        end local 4 // java.util.Iterator i2
        end local 3 // java.util.Iterator i1
        end local 2 // com.sun.tools.jdi.LinkedHashMap t
        end local 1 // java.lang.Object o
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   24     0    this  Lcom/sun/tools/jdi/LinkedHashMap;
            0   24     1       o  Ljava/lang/Object;
            5   24     2       t  Lcom/sun/tools/jdi/LinkedHashMap;
            8   24     3      i1  Ljava/util/Iterator;
            9   24     4      i2  Ljava/util/Iterator;
           11   22     5      e1  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
           12   22     6      e2  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
           13   22     7    key1  Ljava/lang/Object;
           14   22     8  value1  Ljava/lang/Object;
           15   22     9    key2  Ljava/lang/Object;
           16   22    10  value2  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  private void writeObject(java.io.ObjectOutputStream);
    descriptor: (Ljava/io/ObjectOutputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
        start local 1 // java.io.ObjectOutputStream s
         0: .line 863
            aload 1 /* s */
            invokevirtual java.io.ObjectOutputStream.defaultWriteObject:()V
         1: .line 866
            aload 1 /* s */
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.table:[Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            arraylength
            invokevirtual java.io.ObjectOutputStream.writeInt:(I)V
         2: .line 869
            aload 1 /* s */
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.count:I
            invokevirtual java.io.ObjectOutputStream.writeInt:(I)V
         3: .line 872
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 2 /* e */
        start local 2 // com.sun.tools.jdi.LinkedHashMap$Entry e
         4: goto 8
         5: .line 873
      StackMap locals: com.sun.tools.jdi.LinkedHashMap$Entry
      StackMap stack:
            aload 1 /* s */
            aload 2 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.key:Ljava/lang/Object;
            invokevirtual java.io.ObjectOutputStream.writeObject:(Ljava/lang/Object;)V
         6: .line 874
            aload 1 /* s */
            aload 2 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.value:Ljava/lang/Object;
            invokevirtual java.io.ObjectOutputStream.writeObject:(Ljava/lang/Object;)V
         7: .line 872
            aload 2 /* e */
            getfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            astore 2 /* e */
      StackMap locals:
      StackMap stack:
         8: aload 2 /* e */
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            if_acmpne 5
        end local 2 // com.sun.tools.jdi.LinkedHashMap$Entry e
         9: .line 876
            return
        end local 1 // java.io.ObjectOutputStream s
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lcom/sun/tools/jdi/LinkedHashMap;
            0   10     1     s  Ljava/io/ObjectOutputStream;
            4    9     2     e  Lcom/sun/tools/jdi/LinkedHashMap$Entry;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      s     

  private void readObject(java.io.ObjectInputStream);
    descriptor: (Ljava/io/ObjectInputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=7, args_size=2
        start local 0 // com.sun.tools.jdi.LinkedHashMap this
        start local 1 // java.io.ObjectInputStream s
         0: .line 885
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.defaultReadObject:()V
         1: .line 888
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.readInt:()I
            istore 2 /* numBuckets */
        start local 2 // int numBuckets
         2: .line 889
            aload 0 /* this */
            iload 2 /* numBuckets */
            anewarray com.sun.tools.jdi.LinkedHashMap$Entry
            putfield com.sun.tools.jdi.LinkedHashMap.table:[Lcom/sun/tools/jdi/LinkedHashMap$Entry;
         3: .line 890
            aload 0 /* this */
            new com.sun.tools.jdi.LinkedHashMap$Entry
            dup
            iconst_m1
            aconst_null
            aconst_null
            aconst_null
            invokespecial com.sun.tools.jdi.LinkedHashMap$Entry.<init>:(ILjava/lang/Object;Ljava/lang/Object;Lcom/sun/tools/jdi/LinkedHashMap$Entry;)V
            putfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
         4: .line 891
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            putfield com.sun.tools.jdi.LinkedHashMap$Entry.before:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
         5: .line 892
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            aload 0 /* this */
            getfield com.sun.tools.jdi.LinkedHashMap.header:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
            putfield com.sun.tools.jdi.LinkedHashMap$Entry.after:Lcom/sun/tools/jdi/LinkedHashMap$Entry;
         6: .line 895
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.readInt:()I
            istore 3 /* size */
        start local 3 // int size
         7: .line 898
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         8: goto 13
         9: .line 899
      StackMap locals: int int int
      StackMap stack:
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.readObject:()Ljava/lang/Object;
            astore 5 /* key */
        start local 5 // java.lang.Object key
        10: .line 900
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.readObject:()Ljava/lang/Object;
            astore 6 /* value */
        start local 6 // java.lang.Object value
        11: .line 901
            aload 0 /* this */
            aload 5 /* key */
            aload 6 /* value */
            invokevirtual com.sun.tools.jdi.LinkedHashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 6 // java.lang.Object value
        end local 5 // java.lang.Object key
        12: .line 898
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 4 /* i */
            iload 3 /* size */
            if_icmplt 9
        end local 4 // int i
        14: .line 903
            return
        end local 3 // int size
        end local 2 // int numBuckets
        end local 1 // java.io.ObjectInputStream s
        end local 0 // com.sun.tools.jdi.LinkedHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   15     0        this  Lcom/sun/tools/jdi/LinkedHashMap;
            0   15     1           s  Ljava/io/ObjectInputStream;
            2   15     2  numBuckets  I
            7   15     3        size  I
            8   14     4           i  I
           10   12     5         key  Ljava/lang/Object;
           11   12     6       value  Ljava/lang/Object;
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      s     
}
SourceFile: "LinkedHashMap.java"
NestMembers:
  com.sun.tools.jdi.LinkedHashMap$1  com.sun.tools.jdi.LinkedHashMap$2  com.sun.tools.jdi.LinkedHashMap$3  com.sun.tools.jdi.LinkedHashMap$Entry  com.sun.tools.jdi.LinkedHashMap$HashIterator
InnerClasses:
  com.sun.tools.jdi.LinkedHashMap$1
  com.sun.tools.jdi.LinkedHashMap$2
  com.sun.tools.jdi.LinkedHashMap$3
  private Entry = com.sun.tools.jdi.LinkedHashMap$Entry of com.sun.tools.jdi.LinkedHashMap
  private HashIterator = com.sun.tools.jdi.LinkedHashMap$HashIterator of com.sun.tools.jdi.LinkedHashMap
  public abstract Entry = java.util.Map$Entry of java.util.Map