public final class org.eclipse.jdt.internal.compiler.util.HashtableOfObject implements java.lang.Cloneable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.jdt.internal.compiler.util.HashtableOfObject
  super_class: java.lang.Object
{
  public char[][] keyTable;
    descriptor: [[C
    flags: (0x0001) ACC_PUBLIC

  public java.lang.Object[] valueTable;
    descriptor: [Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC

  public int elementSize;
    descriptor: I
    flags: (0x0001) ACC_PUBLIC

  int threshold;
    descriptor: I
    flags: (0x0000) 

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

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
        start local 1 // int size
         0: .line 34
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 36
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.elementSize:I
         2: .line 37
            aload 0 /* this */
            iload 1 /* size */
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.threshold:I
         3: .line 38
            iload 1 /* size */
            i2f
            ldc 1.75
            fmul
            f2i
            istore 2 /* extraRoom */
        start local 2 // int extraRoom
         4: .line 39
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.threshold:I
            iload 2 /* extraRoom */
            if_icmpne 6
         5: .line 40
            iinc 2 /* extraRoom */ 1
         6: .line 41
      StackMap locals: org.eclipse.jdt.internal.compiler.util.HashtableOfObject int int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* extraRoom */
            anewarray char[]
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
         7: .line 42
            aload 0 /* this */
            iload 2 /* extraRoom */
            anewarray java.lang.Object
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.valueTable:[Ljava/lang/Object;
         8: .line 43
            return
        end local 2 // int extraRoom
        end local 1 // int size
        end local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfObject;
            0    9     1       size  I
            4    9     2  extraRoom  I
    MethodParameters:
      Name  Flags
      size  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
         0: .line 46
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            arraylength
            istore 1 /* i */
        start local 1 // int i
         1: goto 4
         2: .line 47
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            iload 1 /* i */
            aconst_null
            aastore
         3: .line 48
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.valueTable:[Ljava/lang/Object;
            iload 1 /* i */
            aconst_null
            aastore
         4: .line 46
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ -1
            iload 1 /* i */
            ifge 2
        end local 1 // int i
         5: .line 50
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.elementSize:I
         6: .line 51
            return
        end local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfObject;
            1    5     1     i  I

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
         0: .line 55
            aload 0 /* this */
            invokespecial java.lang.Object.clone:()Ljava/lang/Object;
            checkcast org.eclipse.jdt.internal.compiler.util.HashtableOfObject
            astore 1 /* result */
        start local 1 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject result
         1: .line 56
            aload 1 /* result */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.elementSize:I
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.elementSize:I
         2: .line 57
            aload 1 /* result */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.threshold:I
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.threshold:I
         3: .line 59
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            arraylength
            istore 2 /* length */
        start local 2 // int length
         4: .line 60
            aload 1 /* result */
            iload 2 /* length */
            anewarray char[]
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
         5: .line 61
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            iconst_0
            aload 1 /* result */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            iconst_0
            iload 2 /* length */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 63
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.valueTable:[Ljava/lang/Object;
            arraylength
            istore 2 /* length */
         7: .line 64
            aload 1 /* result */
            iload 2 /* length */
            anewarray java.lang.Object
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.valueTable:[Ljava/lang/Object;
         8: .line 65
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.valueTable:[Ljava/lang/Object;
            iconst_0
            aload 1 /* result */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.valueTable:[Ljava/lang/Object;
            iconst_0
            iload 2 /* length */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 66
            aload 1 /* result */
            areturn
        end local 2 // int length
        end local 1 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject result
        end local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfObject;
            1   10     1  result  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfObject;
            4   10     2  length  I
    Exceptions:
      throws java.lang.CloneNotSupportedException

  public boolean containsKey(char[]);
    descriptor: ([C)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
        start local 1 // char[] key
         0: .line 70
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            arraylength
            istore 2 /* length */
        start local 2 // int length
         1: .line 71
            aload 1 /* key */
            invokestatic org.eclipse.jdt.core.compiler.CharOperation.hashCode:([C)I
            iload 2 /* length */
            irem
            istore 3 /* index */
        start local 3 // int index
         2: .line 72
            aload 1 /* key */
            arraylength
            istore 4 /* keyLength */
        start local 4 // int keyLength
         3: .line 74
            goto 8
        start local 5 // char[] currentKey
         4: .line 75
      StackMap locals: org.eclipse.jdt.internal.compiler.util.HashtableOfObject char[] int int int char[]
      StackMap stack:
            aload 5 /* currentKey */
            arraylength
            iload 4 /* keyLength */
            if_icmpne 6
            aload 5 /* currentKey */
            aload 1 /* key */
            invokestatic org.eclipse.jdt.core.compiler.CharOperation.equals:([C[C)Z
            ifeq 6
         5: .line 76
            iconst_1
            ireturn
         6: .line 77
      StackMap locals:
      StackMap stack:
            iinc 3 /* index */ 1
            iload 3 /* index */
            iload 2 /* length */
            if_icmpne 8
         7: .line 78
            iconst_0
            istore 3 /* index */
        end local 5 // char[] currentKey
         8: .line 74
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            iload 3 /* index */
            aaload
            dup
            astore 5 /* currentKey */
        start local 5 // char[] currentKey
         9: ifnonnull 4
        10: .line 81
            iconst_0
            ireturn
        end local 5 // char[] currentKey
        end local 4 // int keyLength
        end local 3 // int index
        end local 2 // int length
        end local 1 // char[] key
        end local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0        this  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfObject;
            0   11     1         key  [C
            1   11     2      length  I
            2   11     3       index  I
            3   11     4   keyLength  I
            4    8     5  currentKey  [C
            9   11     5  currentKey  [C
    MethodParameters:
      Name  Flags
      key   

  public java.lang.Object get(char[]);
    descriptor: ([C)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
        start local 1 // char[] key
         0: .line 85
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            arraylength
            istore 2 /* length */
        start local 2 // int length
         1: .line 86
            aload 1 /* key */
            invokestatic org.eclipse.jdt.core.compiler.CharOperation.hashCode:([C)I
            iload 2 /* length */
            irem
            istore 3 /* index */
        start local 3 // int index
         2: .line 87
            aload 1 /* key */
            arraylength
            istore 4 /* keyLength */
        start local 4 // int keyLength
         3: .line 89
            goto 8
        start local 5 // char[] currentKey
         4: .line 90
      StackMap locals: org.eclipse.jdt.internal.compiler.util.HashtableOfObject char[] int int int char[]
      StackMap stack:
            aload 5 /* currentKey */
            arraylength
            iload 4 /* keyLength */
            if_icmpne 6
            aload 5 /* currentKey */
            aload 1 /* key */
            invokestatic org.eclipse.jdt.core.compiler.CharOperation.equals:([C[C)Z
            ifeq 6
         5: .line 91
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.valueTable:[Ljava/lang/Object;
            iload 3 /* index */
            aaload
            areturn
         6: .line 92
      StackMap locals:
      StackMap stack:
            iinc 3 /* index */ 1
            iload 3 /* index */
            iload 2 /* length */
            if_icmpne 8
         7: .line 93
            iconst_0
            istore 3 /* index */
        end local 5 // char[] currentKey
         8: .line 89
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            iload 3 /* index */
            aaload
            dup
            astore 5 /* currentKey */
        start local 5 // char[] currentKey
         9: ifnonnull 4
        10: .line 96
            aconst_null
            areturn
        end local 5 // char[] currentKey
        end local 4 // int keyLength
        end local 3 // int index
        end local 2 // int length
        end local 1 // char[] key
        end local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0        this  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfObject;
            0   11     1         key  [C
            1   11     2      length  I
            2   11     3       index  I
            3   11     4   keyLength  I
            4    8     5  currentKey  [C
            9   11     5  currentKey  [C
    MethodParameters:
      Name  Flags
      key   

  public java.lang.Object put(char[], java.lang.Object);
    descriptor: ([CLjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
        start local 1 // char[] key
        start local 2 // java.lang.Object value
         0: .line 100
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            arraylength
            istore 3 /* length */
        start local 3 // int length
         1: .line 101
            aload 1 /* key */
            invokestatic org.eclipse.jdt.core.compiler.CharOperation.hashCode:([C)I
            iload 3 /* length */
            irem
            istore 4 /* index */
        start local 4 // int index
         2: .line 102
            aload 1 /* key */
            arraylength
            istore 5 /* keyLength */
        start local 5 // int keyLength
         3: .line 104
            goto 8
        start local 6 // char[] currentKey
         4: .line 105
      StackMap locals: org.eclipse.jdt.internal.compiler.util.HashtableOfObject char[] java.lang.Object int int int char[]
      StackMap stack:
            aload 6 /* currentKey */
            arraylength
            iload 5 /* keyLength */
            if_icmpne 6
            aload 6 /* currentKey */
            aload 1 /* key */
            invokestatic org.eclipse.jdt.core.compiler.CharOperation.equals:([C[C)Z
            ifeq 6
         5: .line 106
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.valueTable:[Ljava/lang/Object;
            iload 4 /* index */
            aload 2 /* value */
            dup_x2
            aastore
            areturn
         6: .line 107
      StackMap locals:
      StackMap stack:
            iinc 4 /* index */ 1
            iload 4 /* index */
            iload 3 /* length */
            if_icmpne 8
         7: .line 108
            iconst_0
            istore 4 /* index */
        end local 6 // char[] currentKey
         8: .line 104
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            iload 4 /* index */
            aaload
            dup
            astore 6 /* currentKey */
        start local 6 // char[] currentKey
         9: ifnonnull 4
        10: .line 111
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            iload 4 /* index */
            aload 1 /* key */
            aastore
        11: .line 112
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.valueTable:[Ljava/lang/Object;
            iload 4 /* index */
            aload 2 /* value */
            aastore
        12: .line 115
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.elementSize:I
            iconst_1
            iadd
            dup_x1
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.elementSize:I
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.threshold:I
            if_icmple 14
        13: .line 116
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.compiler.util.HashtableOfObject.rehash:()V
        14: .line 117
      StackMap locals: char[]
      StackMap stack:
            aload 2 /* value */
            areturn
        end local 6 // char[] currentKey
        end local 5 // int keyLength
        end local 4 // int index
        end local 3 // int length
        end local 2 // java.lang.Object value
        end local 1 // char[] key
        end local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   15     0        this  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfObject;
            0   15     1         key  [C
            0   15     2       value  Ljava/lang/Object;
            1   15     3      length  I
            2   15     4       index  I
            3   15     5   keyLength  I
            4    8     6  currentKey  [C
            9   15     6  currentKey  [C
    MethodParameters:
       Name  Flags
      key    
      value  

  public void putUnsafely(char[], java.lang.Object);
    descriptor: ([CLjava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
        start local 1 // char[] key
        start local 2 // java.lang.Object value
         0: .line 130
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            arraylength
            istore 3 /* length */
        start local 3 // int length
         1: .line 131
            aload 1 /* key */
            invokestatic org.eclipse.jdt.core.compiler.CharOperation.hashCode:([C)I
            iload 3 /* length */
            irem
            istore 4 /* index */
        start local 4 // int index
         2: .line 132
            goto 5
         3: .line 133
      StackMap locals: int int
      StackMap stack:
            iinc 4 /* index */ 1
            iload 4 /* index */
            iload 3 /* length */
            if_icmpne 5
         4: .line 134
            iconst_0
            istore 4 /* index */
         5: .line 132
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            iload 4 /* index */
            aaload
            ifnonnull 3
         6: .line 137
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            iload 4 /* index */
            aload 1 /* key */
            aastore
         7: .line 138
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.valueTable:[Ljava/lang/Object;
            iload 4 /* index */
            aload 2 /* value */
            aastore
         8: .line 141
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.elementSize:I
            iconst_1
            iadd
            dup_x1
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.elementSize:I
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.threshold:I
            if_icmple 10
         9: .line 142
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.compiler.util.HashtableOfObject.rehash:()V
        10: .line 144
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int index
        end local 3 // int length
        end local 2 // java.lang.Object value
        end local 1 // char[] key
        end local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfObject;
            0   11     1     key  [C
            0   11     2   value  Ljava/lang/Object;
            1   11     3  length  I
            2   11     4   index  I
    MethodParameters:
       Name  Flags
      key    
      value  

  public java.lang.Object removeKey(char[]);
    descriptor: ([C)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
        start local 1 // char[] key
         0: .line 147
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            arraylength
            istore 2 /* length */
        start local 2 // int length
         1: .line 148
            aload 1 /* key */
            invokestatic org.eclipse.jdt.core.compiler.CharOperation.hashCode:([C)I
            iload 2 /* length */
            irem
            istore 3 /* index */
        start local 3 // int index
         2: .line 149
            aload 1 /* key */
            arraylength
            istore 4 /* keyLength */
        start local 4 // int keyLength
         3: .line 151
            goto 13
        start local 5 // char[] currentKey
         4: .line 152
      StackMap locals: org.eclipse.jdt.internal.compiler.util.HashtableOfObject char[] int int int char[]
      StackMap stack:
            aload 5 /* currentKey */
            arraylength
            iload 4 /* keyLength */
            if_icmpne 11
            aload 5 /* currentKey */
            aload 1 /* key */
            invokestatic org.eclipse.jdt.core.compiler.CharOperation.equals:([C[C)Z
            ifeq 11
         5: .line 153
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.valueTable:[Ljava/lang/Object;
            iload 3 /* index */
            aaload
            astore 6 /* value */
        start local 6 // java.lang.Object value
         6: .line 154
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.elementSize:I
            iconst_1
            isub
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.elementSize:I
         7: .line 155
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            iload 3 /* index */
            aconst_null
            aastore
         8: .line 156
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.valueTable:[Ljava/lang/Object;
            iload 3 /* index */
            aconst_null
            aastore
         9: .line 157
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.compiler.util.HashtableOfObject.rehash:()V
        10: .line 158
            aload 6 /* value */
            areturn
        end local 6 // java.lang.Object value
        11: .line 160
      StackMap locals:
      StackMap stack:
            iinc 3 /* index */ 1
            iload 3 /* index */
            iload 2 /* length */
            if_icmpne 13
        12: .line 161
            iconst_0
            istore 3 /* index */
        end local 5 // char[] currentKey
        13: .line 151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            iload 3 /* index */
            aaload
            dup
            astore 5 /* currentKey */
        start local 5 // char[] currentKey
        14: ifnonnull 4
        15: .line 164
            aconst_null
            areturn
        end local 5 // char[] currentKey
        end local 4 // int keyLength
        end local 3 // int index
        end local 2 // int length
        end local 1 // char[] key
        end local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   16     0        this  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfObject;
            0   16     1         key  [C
            1   16     2      length  I
            2   16     3       index  I
            3   16     4   keyLength  I
            4   13     5  currentKey  [C
           14   16     5  currentKey  [C
            6   11     6       value  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   

  private void rehash();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
         0: .line 169
            new org.eclipse.jdt.internal.compiler.util.HashtableOfObject
            dup
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.elementSize:I
            iconst_2
            imul
            invokespecial org.eclipse.jdt.internal.compiler.util.HashtableOfObject.<init>:(I)V
            astore 1 /* newHashtable */
        start local 1 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject newHashtable
         1: .line 171
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            arraylength
            istore 3 /* i */
        start local 3 // int i
         2: goto 6
         3: .line 172
      StackMap locals: org.eclipse.jdt.internal.compiler.util.HashtableOfObject org.eclipse.jdt.internal.compiler.util.HashtableOfObject top int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            iload 3 /* i */
            aaload
            dup
            astore 2 /* currentKey */
        start local 2 // char[] currentKey
         4: ifnull 6
         5: .line 173
            aload 1 /* newHashtable */
            aload 2 /* currentKey */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.valueTable:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokevirtual org.eclipse.jdt.internal.compiler.util.HashtableOfObject.putUnsafely:([CLjava/lang/Object;)V
        end local 2 // char[] currentKey
         6: .line 171
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ -1
            iload 3 /* i */
            ifge 3
        end local 3 // int i
         7: .line 175
            aload 0 /* this */
            aload 1 /* newHashtable */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
         8: .line 176
            aload 0 /* this */
            aload 1 /* newHashtable */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.valueTable:[Ljava/lang/Object;
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.valueTable:[Ljava/lang/Object;
         9: .line 177
            aload 0 /* this */
            aload 1 /* newHashtable */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.threshold:I
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.threshold:I
        10: .line 178
            return
        end local 1 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject newHashtable
        end local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   11     0          this  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfObject;
            1   11     1  newHashtable  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfObject;
            4    6     2    currentKey  [C
            2    7     3             i  I

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
         0: .line 181
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.elementSize:I
            ireturn
        end local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfObject;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
         0: .line 186
            ldc ""
            astore 1 /* s */
        start local 1 // java.lang.String s
         1: .line 188
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.valueTable:[Ljava/lang/Object;
            arraylength
            istore 4 /* length */
        start local 4 // int length
         3: goto 8
         4: .line 189
      StackMap locals: org.eclipse.jdt.internal.compiler.util.HashtableOfObject java.lang.String top int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.valueTable:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            dup
            astore 2 /* object */
        start local 2 // java.lang.Object object
         5: ifnull 7
         6: .line 190
            new java.lang.StringBuilder
            dup
            aload 1 /* s */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            new java.lang.String
            dup
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfObject.keyTable:[[C
            iload 3 /* i */
            aaload
            invokespecial java.lang.String.<init>:([C)V
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " -> "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* object */
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 1 /* s */
         7: .line 188
      StackMap locals: org.eclipse.jdt.internal.compiler.util.HashtableOfObject java.lang.String java.lang.Object int int
      StackMap stack:
            iinc 3 /* i */ 1
        end local 2 // java.lang.Object object
      StackMap locals: org.eclipse.jdt.internal.compiler.util.HashtableOfObject java.lang.String top int int
      StackMap stack:
         8: iload 3 /* i */
            iload 4 /* length */
            if_icmplt 4
        end local 4 // int length
        end local 3 // int i
         9: .line 191
            aload 1 /* s */
            areturn
        end local 1 // java.lang.String s
        end local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfObject this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfObject;
            1   10     1       s  Ljava/lang/String;
            5    8     2  object  Ljava/lang/Object;
            2    9     3       i  I
            3    9     4  length  I
}
SourceFile: "HashtableOfObject.java"