public class org.jruby.util.collections.IntHashMap<V>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jruby.util.collections.IntHashMap
  super_class: java.lang.Object
{
  private org.jruby.util.collections.IntHashMap$Entry<V>[] table;
    descriptor: [Lorg/jruby/util/collections/IntHashMap$Entry;
    flags: (0x0002) ACC_PRIVATE
    Signature: [Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;

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

  volatile transient java.util.Set<java.lang.Integer> keySet;
    descriptor: Ljava/util/Set;
    flags: (0x00c0) ACC_VOLATILE, ACC_TRANSIENT
    Signature: Ljava/util/Set<Ljava/lang/Integer;>;

  volatile transient java.util.Collection<V> values;
    descriptor: Ljava/util/Collection;
    flags: (0x00c0) ACC_VOLATILE, ACC_TRANSIENT
    Signature: Ljava/util/Collection<TV;>;

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

  private final float loadFactor;
    descriptor: F
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private transient java.util.Set<org.jruby.util.collections.IntHashMap$Entry<V>> entrySet;
    descriptor: Ljava/util/Set;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT
    Signature: Ljava/util/Set<Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.jruby.util.collections.IntHashMap this
         0: .line 45
            aload 0 /* this */
            bipush 20
            ldc 0.75
            invokespecial org.jruby.util.collections.IntHashMap.<init>:(IF)V
         1: .line 46
            return
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jruby/util/collections/IntHashMap<TV;>;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.jruby.util.collections.IntHashMap this
        start local 1 // int initialCapacity
         0: .line 49
            aload 0 /* this */
            iload 1 /* initialCapacity */
            ldc 0.75
            invokespecial org.jruby.util.collections.IntHashMap.<init>:(IF)V
         1: .line 50
            return
        end local 1 // int initialCapacity
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/jruby/util/collections/IntHashMap<TV;>;
            0    2     1  initialCapacity  I
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public void <init>(int, float);
    descriptor: (IF)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.jruby.util.collections.IntHashMap this
        start local 1 // int initialCapacity
        start local 2 // float loadFactor
         0: .line 54
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 15
            aload 0 /* this */
            aconst_null
            putfield org.jruby.util.collections.IntHashMap.keySet:Ljava/util/Set;
         2: .line 16
            aload 0 /* this */
            aconst_null
            putfield org.jruby.util.collections.IntHashMap.values:Ljava/util/Collection;
         3: .line 283
            aload 0 /* this */
            aconst_null
            putfield org.jruby.util.collections.IntHashMap.entrySet:Ljava/util/Set;
         4: .line 55
            iload 1 /* initialCapacity */
            ifge 6
         5: .line 56
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Illegal Capacity: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* initialCapacity */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 58
      StackMap locals: org.jruby.util.collections.IntHashMap int float
      StackMap stack:
            fload 2 /* loadFactor */
            fconst_0
            fcmpg
            ifgt 8
         7: .line 59
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Illegal Load: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            fload 2 /* loadFactor */
            invokevirtual java.lang.StringBuilder.append:(F)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 61
      StackMap locals:
      StackMap stack:
            iload 1 /* initialCapacity */
            ifne 9
            iconst_1
            istore 1 /* initialCapacity */
         9: .line 63
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            fload 2 /* loadFactor */
            putfield org.jruby.util.collections.IntHashMap.loadFactor:F
        10: .line 64
            aload 0 /* this */
            iload 1 /* initialCapacity */
            i2f
            fload 2 /* loadFactor */
            fmul
            f2i
            putfield org.jruby.util.collections.IntHashMap.threshold:I
        11: .line 65
            aload 0 /* this */
            iload 1 /* initialCapacity */
            anewarray org.jruby.util.collections.IntHashMap$Entry
            putfield org.jruby.util.collections.IntHashMap.table:[Lorg/jruby/util/collections/IntHashMap$Entry;
        12: .line 66
            return
        end local 2 // float loadFactor
        end local 1 // int initialCapacity
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   13     0             this  Lorg/jruby/util/collections/IntHashMap<TV;>;
            0   13     1  initialCapacity  I
            0   13     2       loadFactor  F
    MethodParameters:
                 Name  Flags
      initialCapacity  
      loadFactor       

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.util.collections.IntHashMap this
         0: .line 69
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.count:I
            ireturn
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/util/collections/IntHashMap<TV;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jruby.util.collections.IntHashMap this
         0: .line 73
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.count:I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/jruby/util/collections/IntHashMap<TV;>;

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.jruby.util.collections.IntHashMap this
        start local 1 // java.lang.Object value
         0: .line 77
            aload 1 /* value */
            ifnonnull 2
         1: .line 78
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 81
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.table:[Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 2 /* tab */
        start local 2 // org.jruby.util.collections.IntHashMap$Entry[] tab
         3: .line 82
            aload 2 /* tab */
            arraylength
            istore 3 /* i */
        start local 3 // int i
         4: goto 11
         5: .line 83
      StackMap locals: org.jruby.util.collections.IntHashMap$Entry[] int
      StackMap stack:
            aload 2 /* tab */
            iload 3 /* i */
            aaload
            astore 4 /* e */
        start local 4 // org.jruby.util.collections.IntHashMap$Entry e
         6: goto 10
         7: .line 84
      StackMap locals: org.jruby.util.collections.IntHashMap$Entry
      StackMap stack:
            aload 4 /* e */
            getfield org.jruby.util.collections.IntHashMap$Entry.value:Ljava/lang/Object;
            aload 1 /* value */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 9
         8: .line 85
            iconst_1
            ireturn
         9: .line 83
      StackMap locals:
      StackMap stack:
            aload 4 /* e */
            getfield org.jruby.util.collections.IntHashMap$Entry.next:Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 4 /* e */
      StackMap locals:
      StackMap stack:
        10: aload 4 /* e */
            ifnonnull 7
        end local 4 // org.jruby.util.collections.IntHashMap$Entry e
        11: .line 82
      StackMap locals:
      StackMap stack:
            iload 3 /* i */
            iinc 3 /* i */ -1
            ifgt 5
        end local 3 // int i
        12: .line 89
            iconst_0
            ireturn
        end local 2 // org.jruby.util.collections.IntHashMap$Entry[] tab
        end local 1 // java.lang.Object value
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Lorg/jruby/util/collections/IntHashMap<TV;>;
            0   13     1  value  Ljava/lang/Object;
            3   13     2    tab  [Lorg/jruby/util/collections/IntHashMap$Entry;
            4   12     3      i  I
            6   11     4      e  Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;
    MethodParameters:
       Name  Flags
      value  

  public boolean containsValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jruby.util.collections.IntHashMap this
        start local 1 // java.lang.Object value
         0: .line 93
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual org.jruby.util.collections.IntHashMap.contains:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object value
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/jruby/util/collections/IntHashMap<TV;>;
            0    1     1  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      value  

  public boolean containsKey(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.jruby.util.collections.IntHashMap this
        start local 1 // int key
         0: .line 97
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.table:[Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 2 /* tab */
        start local 2 // org.jruby.util.collections.IntHashMap$Entry[] tab
         1: .line 98
            iload 1 /* key */
            istore 3 /* hash */
        start local 3 // int hash
         2: .line 99
            iload 3 /* hash */
            ldc 2147483647
            iand
            aload 2 /* tab */
            arraylength
            irem
            istore 4 /* index */
        start local 4 // int index
         3: .line 100
            aload 2 /* tab */
            iload 4 /* index */
            aaload
            astore 5 /* e */
        start local 5 // org.jruby.util.collections.IntHashMap$Entry e
         4: goto 8
         5: .line 101
      StackMap locals: org.jruby.util.collections.IntHashMap int org.jruby.util.collections.IntHashMap$Entry[] int int org.jruby.util.collections.IntHashMap$Entry
      StackMap stack:
            aload 5 /* e */
            getfield org.jruby.util.collections.IntHashMap$Entry.hash:I
            iload 3 /* hash */
            if_icmpne 7
         6: .line 102
            iconst_1
            ireturn
         7: .line 100
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            getfield org.jruby.util.collections.IntHashMap$Entry.next:Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 5 /* e */
      StackMap locals:
      StackMap stack:
         8: aload 5 /* e */
            ifnonnull 5
        end local 5 // org.jruby.util.collections.IntHashMap$Entry e
         9: .line 105
            iconst_0
            ireturn
        end local 4 // int index
        end local 3 // int hash
        end local 2 // org.jruby.util.collections.IntHashMap$Entry[] tab
        end local 1 // int key
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/jruby/util/collections/IntHashMap<TV;>;
            0   10     1    key  I
            1   10     2    tab  [Lorg/jruby/util/collections/IntHashMap$Entry;
            2   10     3   hash  I
            3   10     4  index  I
            4    9     5      e  Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;
    MethodParameters:
      Name  Flags
      key   

  public V get();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.jruby.util.collections.IntHashMap this
        start local 1 // int key
         0: .line 109
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.table:[Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 2 /* tab */
        start local 2 // org.jruby.util.collections.IntHashMap$Entry[] tab
         1: .line 110
            iload 1 /* key */
            istore 3 /* hash */
        start local 3 // int hash
         2: .line 111
            iload 3 /* hash */
            ldc 2147483647
            iand
            aload 2 /* tab */
            arraylength
            irem
            istore 4 /* index */
        start local 4 // int index
         3: .line 112
            aload 2 /* tab */
            iload 4 /* index */
            aaload
            astore 5 /* e */
        start local 5 // org.jruby.util.collections.IntHashMap$Entry e
         4: goto 8
         5: .line 113
      StackMap locals: org.jruby.util.collections.IntHashMap int org.jruby.util.collections.IntHashMap$Entry[] int int org.jruby.util.collections.IntHashMap$Entry
      StackMap stack:
            aload 5 /* e */
            getfield org.jruby.util.collections.IntHashMap$Entry.hash:I
            iload 3 /* hash */
            if_icmpne 7
         6: .line 114
            aload 5 /* e */
            getfield org.jruby.util.collections.IntHashMap$Entry.value:Ljava/lang/Object;
            areturn
         7: .line 112
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            getfield org.jruby.util.collections.IntHashMap$Entry.next:Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 5 /* e */
      StackMap locals:
      StackMap stack:
         8: aload 5 /* e */
            ifnonnull 5
        end local 5 // org.jruby.util.collections.IntHashMap$Entry e
         9: .line 117
            aconst_null
            areturn
        end local 4 // int index
        end local 3 // int hash
        end local 2 // org.jruby.util.collections.IntHashMap$Entry[] tab
        end local 1 // int key
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/jruby/util/collections/IntHashMap<TV;>;
            0   10     1    key  I
            1   10     2    tab  [Lorg/jruby/util/collections/IntHashMap$Entry;
            2   10     3   hash  I
            3   10     4  index  I
            4    9     5      e  Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;
    Signature: (I)TV;
    MethodParameters:
      Name  Flags
      key   

  protected void rehash();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=9, args_size=1
        start local 0 // org.jruby.util.collections.IntHashMap this
         0: .line 121
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.table:[Lorg/jruby/util/collections/IntHashMap$Entry;
            arraylength
            istore 1 /* oldCapacity */
        start local 1 // int oldCapacity
         1: .line 122
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.table:[Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 2 /* oldMap */
        start local 2 // org.jruby.util.collections.IntHashMap$Entry[] oldMap
         2: .line 124
            iload 1 /* oldCapacity */
            iconst_2
            imul
            iconst_1
            iadd
            istore 3 /* newCapacity */
        start local 3 // int newCapacity
         3: .line 126
            iload 3 /* newCapacity */
            anewarray org.jruby.util.collections.IntHashMap$Entry
            astore 4 /* newMap */
        start local 4 // org.jruby.util.collections.IntHashMap$Entry[] newMap
         4: .line 128
            aload 0 /* this */
            iload 3 /* newCapacity */
            i2f
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.loadFactor:F
            fmul
            f2i
            putfield org.jruby.util.collections.IntHashMap.threshold:I
         5: .line 129
            aload 0 /* this */
            aload 4 /* newMap */
            putfield org.jruby.util.collections.IntHashMap.table:[Lorg/jruby/util/collections/IntHashMap$Entry;
         6: .line 131
            iload 1 /* oldCapacity */
            istore 5 /* i */
        start local 5 // int i
         7: goto 16
         8: .line 132
      StackMap locals: org.jruby.util.collections.IntHashMap int org.jruby.util.collections.IntHashMap$Entry[] int org.jruby.util.collections.IntHashMap$Entry[] int
      StackMap stack:
            aload 2 /* oldMap */
            iload 5 /* i */
            aaload
            astore 6 /* old */
        start local 6 // org.jruby.util.collections.IntHashMap$Entry old
         9: goto 15
        10: .line 133
      StackMap locals: org.jruby.util.collections.IntHashMap$Entry
      StackMap stack:
            aload 6 /* old */
            astore 7 /* e */
        start local 7 // org.jruby.util.collections.IntHashMap$Entry e
        11: .line 134
            aload 6 /* old */
            getfield org.jruby.util.collections.IntHashMap$Entry.next:Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 6 /* old */
        12: .line 136
            aload 7 /* e */
            getfield org.jruby.util.collections.IntHashMap$Entry.hash:I
            ldc 2147483647
            iand
            iload 3 /* newCapacity */
            irem
            istore 8 /* index */
        start local 8 // int index
        13: .line 137
            aload 7 /* e */
            aload 4 /* newMap */
            iload 8 /* index */
            aaload
            putfield org.jruby.util.collections.IntHashMap$Entry.next:Lorg/jruby/util/collections/IntHashMap$Entry;
        14: .line 138
            aload 4 /* newMap */
            iload 8 /* index */
            aload 7 /* e */
            aastore
        end local 8 // int index
        end local 7 // org.jruby.util.collections.IntHashMap$Entry e
        15: .line 132
      StackMap locals:
      StackMap stack:
            aload 6 /* old */
            ifnonnull 10
        end local 6 // org.jruby.util.collections.IntHashMap$Entry old
        16: .line 131
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            iinc 5 /* i */ -1
            ifgt 8
        end local 5 // int i
        17: .line 141
            return
        end local 4 // org.jruby.util.collections.IntHashMap$Entry[] newMap
        end local 3 // int newCapacity
        end local 2 // org.jruby.util.collections.IntHashMap$Entry[] oldMap
        end local 1 // int oldCapacity
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   18     0         this  Lorg/jruby/util/collections/IntHashMap<TV;>;
            1   18     1  oldCapacity  I
            2   18     2       oldMap  [Lorg/jruby/util/collections/IntHashMap$Entry;
            3   18     3  newCapacity  I
            4   18     4       newMap  [Lorg/jruby/util/collections/IntHashMap$Entry;
            7   17     5            i  I
            9   16     6          old  Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;
           11   15     7            e  Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;
           13   15     8        index  I

  org.jruby.util.collections.IntHashMap$Entry<V> getEntry(int);
    descriptor: (I)Lorg/jruby/util/collections/IntHashMap$Entry;
    flags: (0x0000) 
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.jruby.util.collections.IntHashMap this
        start local 1 // int key
         0: .line 144
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.table:[Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 2 /* tab */
        start local 2 // org.jruby.util.collections.IntHashMap$Entry[] tab
         1: .line 145
            iload 1 /* key */
            istore 3 /* hash */
        start local 3 // int hash
         2: .line 146
            iload 3 /* hash */
            ldc 2147483647
            iand
            aload 2 /* tab */
            arraylength
            irem
            istore 4 /* index */
        start local 4 // int index
         3: .line 147
            aload 2 /* tab */
            iload 4 /* index */
            aaload
            astore 5 /* e */
        start local 5 // org.jruby.util.collections.IntHashMap$Entry e
         4: goto 8
         5: .line 148
      StackMap locals: org.jruby.util.collections.IntHashMap int org.jruby.util.collections.IntHashMap$Entry[] int int org.jruby.util.collections.IntHashMap$Entry
      StackMap stack:
            aload 5 /* e */
            getfield org.jruby.util.collections.IntHashMap$Entry.hash:I
            iload 3 /* hash */
            if_icmpne 7
         6: .line 149
            aload 5 /* e */
            areturn
         7: .line 147
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            getfield org.jruby.util.collections.IntHashMap$Entry.next:Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 5 /* e */
      StackMap locals:
      StackMap stack:
         8: aload 5 /* e */
            ifnonnull 5
        end local 5 // org.jruby.util.collections.IntHashMap$Entry e
         9: .line 152
            aconst_null
            areturn
        end local 4 // int index
        end local 3 // int hash
        end local 2 // org.jruby.util.collections.IntHashMap$Entry[] tab
        end local 1 // int key
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/jruby/util/collections/IntHashMap<TV;>;
            0   10     1    key  I
            1   10     2    tab  [Lorg/jruby/util/collections/IntHashMap$Entry;
            2   10     3   hash  I
            3   10     4  index  I
            4    9     5      e  Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;
    Signature: (I)Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;
    MethodParameters:
      Name  Flags
      key   

  public V put(int, );
    descriptor: (ILjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=8, args_size=3
        start local 0 // org.jruby.util.collections.IntHashMap this
        start local 1 // int key
        start local 2 // java.lang.Object value
         0: .line 157
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.table:[Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 3 /* tab */
        start local 3 // org.jruby.util.collections.IntHashMap$Entry[] tab
         1: .line 158
            iload 1 /* key */
            istore 4 /* hash */
        start local 4 // int hash
         2: .line 159
            iload 4 /* hash */
            ldc 2147483647
            iand
            aload 3 /* tab */
            arraylength
            irem
            istore 5 /* index */
        start local 5 // int index
         3: .line 160
            aload 3 /* tab */
            iload 5 /* index */
            aaload
            astore 6 /* e */
        start local 6 // org.jruby.util.collections.IntHashMap$Entry e
         4: goto 10
         5: .line 161
      StackMap locals: org.jruby.util.collections.IntHashMap int java.lang.Object org.jruby.util.collections.IntHashMap$Entry[] int int org.jruby.util.collections.IntHashMap$Entry
      StackMap stack:
            aload 6 /* e */
            getfield org.jruby.util.collections.IntHashMap$Entry.hash:I
            iload 4 /* hash */
            if_icmpne 9
         6: .line 162
            aload 6 /* e */
            getfield org.jruby.util.collections.IntHashMap$Entry.value:Ljava/lang/Object;
            astore 7 /* old */
        start local 7 // java.lang.Object old
         7: .line 163
            aload 6 /* e */
            aload 2 /* value */
            putfield org.jruby.util.collections.IntHashMap$Entry.value:Ljava/lang/Object;
         8: .line 164
            aload 7 /* old */
            areturn
        end local 7 // java.lang.Object old
         9: .line 160
      StackMap locals:
      StackMap stack:
            aload 6 /* e */
            getfield org.jruby.util.collections.IntHashMap$Entry.next:Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 6 /* e */
      StackMap locals:
      StackMap stack:
        10: aload 6 /* e */
            ifnonnull 5
        end local 6 // org.jruby.util.collections.IntHashMap$Entry e
        11: .line 168
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.count:I
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.threshold:I
            if_icmplt 15
        12: .line 170
            aload 0 /* this */
            invokevirtual org.jruby.util.collections.IntHashMap.rehash:()V
        13: .line 172
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.table:[Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 3 /* tab */
        14: .line 173
            iload 4 /* hash */
            ldc 2147483647
            iand
            aload 3 /* tab */
            arraylength
            irem
            istore 5 /* index */
        15: .line 177
      StackMap locals:
      StackMap stack:
            new org.jruby.util.collections.IntHashMap$Entry
            dup
            iload 4 /* hash */
            iload 1 /* key */
            aload 2 /* value */
            aload 3 /* tab */
            iload 5 /* index */
            aaload
            invokespecial org.jruby.util.collections.IntHashMap$Entry.<init>:(IILjava/lang/Object;Lorg/jruby/util/collections/IntHashMap$Entry;)V
            astore 6 /* e */
        start local 6 // org.jruby.util.collections.IntHashMap$Entry e
        16: .line 178
            aload 3 /* tab */
            iload 5 /* index */
            aload 6 /* e */
            aastore
        17: .line 179
            aload 0 /* this */
            dup
            getfield org.jruby.util.collections.IntHashMap.count:I
            iconst_1
            iadd
            putfield org.jruby.util.collections.IntHashMap.count:I
        18: .line 180
            aconst_null
            areturn
        end local 6 // org.jruby.util.collections.IntHashMap$Entry e
        end local 5 // int index
        end local 4 // int hash
        end local 3 // org.jruby.util.collections.IntHashMap$Entry[] tab
        end local 2 // java.lang.Object value
        end local 1 // int key
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   19     0   this  Lorg/jruby/util/collections/IntHashMap<TV;>;
            0   19     1    key  I
            0   19     2  value  TV;
            1   19     3    tab  [Lorg/jruby/util/collections/IntHashMap$Entry;
            2   19     4   hash  I
            3   19     5  index  I
            4   11     6      e  Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;
            7    9     7    old  TV;
           16   19     6      e  Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;
    Signature: (ITV;)TV;
    MethodParameters:
       Name  Flags
      key    
      value  

  public V remove();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=2
        start local 0 // org.jruby.util.collections.IntHashMap this
        start local 1 // int key
         0: .line 184
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.table:[Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 2 /* tab */
        start local 2 // org.jruby.util.collections.IntHashMap$Entry[] tab
         1: .line 185
            iload 1 /* key */
            istore 3 /* hash */
        start local 3 // int hash
         2: .line 186
            iload 3 /* hash */
            ldc 2147483647
            iand
            aload 2 /* tab */
            arraylength
            irem
            istore 4 /* index */
        start local 4 // int index
         3: .line 187
            aload 2 /* tab */
            iload 4 /* index */
            aaload
            astore 5 /* e */
        start local 5 // org.jruby.util.collections.IntHashMap$Entry e
         4: aconst_null
            astore 6 /* prev */
        start local 6 // org.jruby.util.collections.IntHashMap$Entry prev
         5: goto 16
         6: .line 188
      StackMap locals: org.jruby.util.collections.IntHashMap int org.jruby.util.collections.IntHashMap$Entry[] int int org.jruby.util.collections.IntHashMap$Entry org.jruby.util.collections.IntHashMap$Entry
      StackMap stack:
            aload 5 /* e */
            getfield org.jruby.util.collections.IntHashMap$Entry.hash:I
            iload 3 /* hash */
            if_icmpne 15
         7: .line 189
            aload 6 /* prev */
            ifnull 10
         8: .line 190
            aload 6 /* prev */
            aload 5 /* e */
            getfield org.jruby.util.collections.IntHashMap$Entry.next:Lorg/jruby/util/collections/IntHashMap$Entry;
            putfield org.jruby.util.collections.IntHashMap$Entry.next:Lorg/jruby/util/collections/IntHashMap$Entry;
         9: .line 191
            goto 11
        10: .line 192
      StackMap locals:
      StackMap stack:
            aload 2 /* tab */
            iload 4 /* index */
            aload 5 /* e */
            getfield org.jruby.util.collections.IntHashMap$Entry.next:Lorg/jruby/util/collections/IntHashMap$Entry;
            aastore
        11: .line 194
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.jruby.util.collections.IntHashMap.count:I
            iconst_1
            isub
            putfield org.jruby.util.collections.IntHashMap.count:I
        12: .line 195
            aload 5 /* e */
            getfield org.jruby.util.collections.IntHashMap$Entry.value:Ljava/lang/Object;
            astore 7 /* oldValue */
        start local 7 // java.lang.Object oldValue
        13: .line 196
            aload 5 /* e */
            aconst_null
            putfield org.jruby.util.collections.IntHashMap$Entry.value:Ljava/lang/Object;
        14: .line 197
            aload 7 /* oldValue */
            areturn
        end local 7 // java.lang.Object oldValue
        15: .line 187
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            astore 6 /* prev */
            aload 5 /* e */
            getfield org.jruby.util.collections.IntHashMap$Entry.next:Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 5 /* e */
      StackMap locals:
      StackMap stack:
        16: aload 5 /* e */
            ifnonnull 6
        end local 6 // org.jruby.util.collections.IntHashMap$Entry prev
        end local 5 // org.jruby.util.collections.IntHashMap$Entry e
        17: .line 200
            aconst_null
            areturn
        end local 4 // int index
        end local 3 // int hash
        end local 2 // org.jruby.util.collections.IntHashMap$Entry[] tab
        end local 1 // int key
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lorg/jruby/util/collections/IntHashMap<TV;>;
            0   18     1       key  I
            1   18     2       tab  [Lorg/jruby/util/collections/IntHashMap$Entry;
            2   18     3      hash  I
            3   18     4     index  I
            4   17     5         e  Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;
            5   17     6      prev  Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;
           13   15     7  oldValue  TV;
    Signature: (I)TV;
    MethodParameters:
      Name  Flags
      key   

  public synchronized void clear();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.jruby.util.collections.IntHashMap this
         0: .line 204
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.table:[Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 1 /* tab */
        start local 1 // org.jruby.util.collections.IntHashMap$Entry[] tab
         1: .line 205
            aload 1 /* tab */
            arraylength
            istore 2 /* index */
        start local 2 // int index
         2: goto 4
         3: .line 206
      StackMap locals: org.jruby.util.collections.IntHashMap$Entry[] int
      StackMap stack:
            aload 1 /* tab */
            iload 2 /* index */
            aconst_null
            aastore
         4: .line 205
      StackMap locals:
      StackMap stack:
            iinc 2 /* index */ -1
            iload 2 /* index */
            ifge 3
        end local 2 // int index
         5: .line 208
            aload 0 /* this */
            iconst_0
            putfield org.jruby.util.collections.IntHashMap.count:I
         6: .line 209
            return
        end local 1 // org.jruby.util.collections.IntHashMap$Entry[] tab
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/jruby/util/collections/IntHashMap<TV;>;
            1    7     1    tab  [Lorg/jruby/util/collections/IntHashMap$Entry;
            2    5     2  index  I

  java.util.Iterator<java.lang.Integer> newKeyIterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.jruby.util.collections.IntHashMap this
         0: .line 272
            new org.jruby.util.collections.IntHashMap$KeyIterator
            dup
            aload 0 /* this */
            invokespecial org.jruby.util.collections.IntHashMap$KeyIterator.<init>:(Lorg/jruby/util/collections/IntHashMap;)V
            areturn
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/util/collections/IntHashMap<TV;>;
    Signature: ()Ljava/util/Iterator<Ljava/lang/Integer;>;

  java.util.Iterator<V> newValueIterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.jruby.util.collections.IntHashMap this
         0: .line 276
            new org.jruby.util.collections.IntHashMap$ValueIterator
            dup
            aload 0 /* this */
            invokespecial org.jruby.util.collections.IntHashMap$ValueIterator.<init>:(Lorg/jruby/util/collections/IntHashMap;)V
            areturn
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/util/collections/IntHashMap<TV;>;
    Signature: ()Ljava/util/Iterator<TV;>;

  java.util.Iterator<org.jruby.util.collections.IntHashMap$Entry<V>> newEntryIterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.jruby.util.collections.IntHashMap this
         0: .line 280
            new org.jruby.util.collections.IntHashMap$EntryIterator
            dup
            aload 0 /* this */
            invokespecial org.jruby.util.collections.IntHashMap$EntryIterator.<init>:(Lorg/jruby/util/collections/IntHashMap;)V
            areturn
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jruby/util/collections/IntHashMap<TV;>;
    Signature: ()Ljava/util/Iterator<Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;>;

  public java.util.Set<java.lang.Integer> keySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.jruby.util.collections.IntHashMap this
         0: .line 286
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.keySet:Ljava/util/Set;
            astore 1 /* ks */
        start local 1 // java.util.Set ks
         1: .line 287
            aload 1 /* ks */
            ifnull 2
            aload 1 /* ks */
            goto 3
      StackMap locals: java.util.Set
      StackMap stack:
         2: aload 0 /* this */
            new org.jruby.util.collections.IntHashMap$KeySet
            dup
            aload 0 /* this */
            invokespecial org.jruby.util.collections.IntHashMap$KeySet.<init>:(Lorg/jruby/util/collections/IntHashMap;)V
            dup_x1
            putfield org.jruby.util.collections.IntHashMap.keySet:Ljava/util/Set;
      StackMap locals:
      StackMap stack: java.util.Set
         3: areturn
        end local 1 // java.util.Set ks
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/jruby/util/collections/IntHashMap<TV;>;
            1    4     1    ks  Ljava/util/Set<Ljava/lang/Integer;>;
    Signature: ()Ljava/util/Set<Ljava/lang/Integer;>;

  public java.util.Collection<V> values();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.jruby.util.collections.IntHashMap this
         0: .line 320
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.values:Ljava/util/Collection;
            astore 1 /* vs */
        start local 1 // java.util.Collection vs
         1: .line 321
            aload 1 /* vs */
            ifnull 2
            aload 1 /* vs */
            goto 3
      StackMap locals: java.util.Collection
      StackMap stack:
         2: aload 0 /* this */
            new org.jruby.util.collections.IntHashMap$Values
            dup
            aload 0 /* this */
            invokespecial org.jruby.util.collections.IntHashMap$Values.<init>:(Lorg/jruby/util/collections/IntHashMap;)V
            dup_x1
            putfield org.jruby.util.collections.IntHashMap.values:Ljava/util/Collection;
      StackMap locals:
      StackMap stack: java.util.Collection
         3: areturn
        end local 1 // java.util.Collection vs
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/jruby/util/collections/IntHashMap<TV;>;
            1    4     1    vs  Ljava/util/Collection<TV;>;
    Signature: ()Ljava/util/Collection<TV;>;

  public java.util.Set<org.jruby.util.collections.IntHashMap$Entry<V>> entrySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.jruby.util.collections.IntHashMap this
         0: .line 346
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.entrySet:Ljava/util/Set;
            astore 1 /* es */
        start local 1 // java.util.Set es
         1: .line 347
            aload 1 /* es */
            ifnull 2
            aload 1 /* es */
            goto 3
      StackMap locals: java.util.Set
      StackMap stack:
         2: aload 0 /* this */
            new org.jruby.util.collections.IntHashMap$EntrySet
            dup
            aload 0 /* this */
            invokespecial org.jruby.util.collections.IntHashMap$EntrySet.<init>:(Lorg/jruby/util/collections/IntHashMap;)V
            dup_x1
            putfield org.jruby.util.collections.IntHashMap.entrySet:Ljava/util/Set;
      StackMap locals:
      StackMap stack: java.util.Set
         3: areturn
        end local 1 // java.util.Set es
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/jruby/util/collections/IntHashMap<TV;>;
            1    4     1    es  Ljava/util/Set<Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;>;
    Signature: ()Ljava/util/Set<Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;>;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // org.jruby.util.collections.IntHashMap this
         0: .line 384
            aload 0 /* this */
            invokevirtual org.jruby.util.collections.IntHashMap.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 1 /* i */
        start local 1 // java.util.Iterator i
         1: .line 385
            aload 1 /* i */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
            ldc "{}"
            areturn
         2: .line 387
      StackMap locals: java.util.Iterator
      StackMap stack:
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 2 /* sb */
        start local 2 // java.lang.StringBuilder sb
         3: .line 388
            aload 2 /* sb */
            bipush 123
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         4: .line 390
      StackMap locals: java.lang.StringBuilder
      StackMap stack:
            aload 1 /* i */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.jruby.util.collections.IntHashMap$Entry
            astore 3 /* e */
        start local 3 // org.jruby.util.collections.IntHashMap$Entry e
         5: .line 391
            aload 3 /* e */
            invokevirtual org.jruby.util.collections.IntHashMap$Entry.getValue:()Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
         6: .line 392
            aload 2 /* sb */
            aload 3 /* e */
            invokevirtual org.jruby.util.collections.IntHashMap$Entry.getKey:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
         7: .line 393
            aload 2 /* sb */
            bipush 61
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         8: .line 394
            aload 2 /* sb */
            aload 4 /* value */
            aload 0 /* this */
            if_acmpne 9
            ldc "(this IntHashMap)"
            goto 10
      StackMap locals: org.jruby.util.collections.IntHashMap java.util.Iterator java.lang.StringBuilder org.jruby.util.collections.IntHashMap$Entry java.lang.Object
      StackMap stack: java.lang.StringBuilder
         9: aload 4 /* value */
      StackMap locals: org.jruby.util.collections.IntHashMap java.util.Iterator java.lang.StringBuilder org.jruby.util.collections.IntHashMap$Entry java.lang.Object
      StackMap stack: java.lang.StringBuilder java.lang.Object
        10: invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
        11: .line 395
            aload 1 /* i */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 12
            aload 2 /* sb */
            bipush 125
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        12: .line 396
      StackMap locals:
      StackMap stack:
            aload 2 /* sb */
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        end local 4 // java.lang.Object value
        end local 3 // org.jruby.util.collections.IntHashMap$Entry e
        13: .line 389
            goto 4
        end local 2 // java.lang.StringBuilder sb
        end local 1 // java.util.Iterator i
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Lorg/jruby/util/collections/IntHashMap<TV;>;
            1   14     1      i  Ljava/util/Iterator<Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;>;
            3   14     2     sb  Ljava/lang/StringBuilder;
            5   13     3      e  Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;
            6   13     4  value  TV;

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.jruby.util.collections.IntHashMap this
         0: .line 402
            new org.jruby.util.collections.IntHashMap
            dup
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.table:[Lorg/jruby/util/collections/IntHashMap$Entry;
            arraylength
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.loadFactor:F
            invokespecial org.jruby.util.collections.IntHashMap.<init>:(IF)V
            astore 1 /* newMap */
        start local 1 // org.jruby.util.collections.IntHashMap newMap
         1: .line 403
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 9
         3: .line 404
      StackMap locals: org.jruby.util.collections.IntHashMap int
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.table:[Lorg/jruby/util/collections/IntHashMap$Entry;
            iload 2 /* i */
            aaload
            astore 3 /* entry */
        start local 3 // org.jruby.util.collections.IntHashMap$Entry entry
         4: .line 405
            goto 7
         5: .line 406
      StackMap locals: org.jruby.util.collections.IntHashMap$Entry
      StackMap stack:
            aload 1 /* newMap */
            aload 3 /* entry */
            invokevirtual org.jruby.util.collections.IntHashMap$Entry.getKey:()I
            aload 3 /* entry */
            invokevirtual org.jruby.util.collections.IntHashMap$Entry.getValue:()Ljava/lang/Object;
            invokevirtual org.jruby.util.collections.IntHashMap.put:(ILjava/lang/Object;)Ljava/lang/Object;
            pop
         6: .line 407
            aload 3 /* entry */
            getfield org.jruby.util.collections.IntHashMap$Entry.next:Lorg/jruby/util/collections/IntHashMap$Entry;
            astore 3 /* entry */
         7: .line 405
      StackMap locals:
      StackMap stack:
            aload 3 /* entry */
            ifnonnull 5
        end local 3 // org.jruby.util.collections.IntHashMap$Entry entry
         8: .line 403
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 2 /* i */
            aload 0 /* this */
            getfield org.jruby.util.collections.IntHashMap.table:[Lorg/jruby/util/collections/IntHashMap$Entry;
            arraylength
            if_icmplt 3
        end local 2 // int i
        10: .line 410
            aload 1 /* newMap */
            areturn
        end local 1 // org.jruby.util.collections.IntHashMap newMap
        end local 0 // org.jruby.util.collections.IntHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Lorg/jruby/util/collections/IntHashMap<TV;>;
            1   11     1  newMap  Lorg/jruby/util/collections/IntHashMap<TV;>;
            2   10     2       i  I
            4    8     3   entry  Lorg/jruby/util/collections/IntHashMap$Entry<TV;>;

  public static <U> org.jruby.util.collections.IntHashMap<U> nullMap();
    descriptor: ()Lorg/jruby/util/collections/IntHashMap;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 414
            getstatic org.jruby.util.collections.IntHashMap$NullMap.INSTANCE:Lorg/jruby/util/collections/IntHashMap$NullMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: <U:Ljava/lang/Object;>()Lorg/jruby/util/collections/IntHashMap<TU;>;
}
Signature: <V:Ljava/lang/Object;>Ljava/lang/Object;
SourceFile: "IntHashMap.java"
NestMembers:
  org.jruby.util.collections.IntHashMap$Entry  org.jruby.util.collections.IntHashMap$EntryIterator  org.jruby.util.collections.IntHashMap$EntrySet  org.jruby.util.collections.IntHashMap$HashIterator  org.jruby.util.collections.IntHashMap$KeyIterator  org.jruby.util.collections.IntHashMap$KeySet  org.jruby.util.collections.IntHashMap$NullMap  org.jruby.util.collections.IntHashMap$ValueIterator  org.jruby.util.collections.IntHashMap$Values
InnerClasses:
  public Entry = org.jruby.util.collections.IntHashMap$Entry of org.jruby.util.collections.IntHashMap
  private EntryIterator = org.jruby.util.collections.IntHashMap$EntryIterator of org.jruby.util.collections.IntHashMap
  private EntrySet = org.jruby.util.collections.IntHashMap$EntrySet of org.jruby.util.collections.IntHashMap
  private abstract HashIterator = org.jruby.util.collections.IntHashMap$HashIterator of org.jruby.util.collections.IntHashMap
  private KeyIterator = org.jruby.util.collections.IntHashMap$KeyIterator of org.jruby.util.collections.IntHashMap
  private KeySet = org.jruby.util.collections.IntHashMap$KeySet of org.jruby.util.collections.IntHashMap
  private final NullMap = org.jruby.util.collections.IntHashMap$NullMap of org.jruby.util.collections.IntHashMap
  private ValueIterator = org.jruby.util.collections.IntHashMap$ValueIterator of org.jruby.util.collections.IntHashMap
  private Values = org.jruby.util.collections.IntHashMap$Values of org.jruby.util.collections.IntHashMap