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

  public org.eclipse.jdt.internal.compiler.lookup.ModuleBinding[] valueTable;
    descriptor: [Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
    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.HashtableOfModule this
         0: .line 28
            aload 0 /* this */
            iconst_3
            invokespecial org.eclipse.jdt.internal.compiler.util.HashtableOfModule.<init>:(I)V
         1: .line 29
            return
        end local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfModule this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfModule;

  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.HashtableOfModule this
        start local 1 // int size
         0: .line 30
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 31
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.elementSize:I
         2: .line 32
            aload 0 /* this */
            iload 1 /* size */
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.threshold:I
         3: .line 33
            iload 1 /* size */
            i2f
            ldc 1.75
            fmul
            f2i
            istore 2 /* extraRoom */
        start local 2 // int extraRoom
         4: .line 34
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.threshold:I
            iload 2 /* extraRoom */
            if_icmpne 6
         5: .line 35
            iinc 2 /* extraRoom */ 1
         6: .line 36
      StackMap locals: org.eclipse.jdt.internal.compiler.util.HashtableOfModule int int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* extraRoom */
            anewarray char[]
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.keyTable:[[C
         7: .line 37
            aload 0 /* this */
            iload 2 /* extraRoom */
            anewarray org.eclipse.jdt.internal.compiler.lookup.ModuleBinding
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.valueTable:[Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
         8: .line 38
            return
        end local 2 // int extraRoom
        end local 1 // int size
        end local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfModule this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfModule;
            0    9     1       size  I
            4    9     2  extraRoom  I
    MethodParameters:
      Name  Flags
      size  

  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.HashtableOfModule this
        start local 1 // char[] key
         0: .line 40
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.keyTable:[[C
            arraylength
            istore 2 /* length */
        start local 2 // int length
         1: .line 41
            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 42
            aload 1 /* key */
            arraylength
            istore 4 /* keyLength */
        start local 4 // int keyLength
         3: .line 44
            goto 8
        start local 5 // char[] currentKey
         4: .line 45
      StackMap locals: org.eclipse.jdt.internal.compiler.util.HashtableOfModule 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 46
            iconst_1
            ireturn
         6: .line 47
      StackMap locals:
      StackMap stack:
            iinc 3 /* index */ 1
            iload 3 /* index */
            iload 2 /* length */
            if_icmpne 8
         7: .line 48
            iconst_0
            istore 3 /* index */
        end local 5 // char[] currentKey
         8: .line 44
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.keyTable:[[C
            iload 3 /* index */
            aaload
            dup
            astore 5 /* currentKey */
        start local 5 // char[] currentKey
         9: ifnonnull 4
        10: .line 51
            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.HashtableOfModule this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0        this  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfModule;
            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 org.eclipse.jdt.internal.compiler.lookup.ModuleBinding get(char[]);
    descriptor: ([C)Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfModule this
        start local 1 // char[] key
         0: .line 54
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.keyTable:[[C
            arraylength
            istore 2 /* length */
        start local 2 // int length
         1: .line 55
            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 56
            aload 1 /* key */
            arraylength
            istore 4 /* keyLength */
        start local 4 // int keyLength
         3: .line 58
            goto 8
        start local 5 // char[] currentKey
         4: .line 59
      StackMap locals: org.eclipse.jdt.internal.compiler.util.HashtableOfModule 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 60
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.valueTable:[Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
            iload 3 /* index */
            aaload
            areturn
         6: .line 61
      StackMap locals:
      StackMap stack:
            iinc 3 /* index */ 1
            iload 3 /* index */
            iload 2 /* length */
            if_icmpne 8
         7: .line 62
            iconst_0
            istore 3 /* index */
        end local 5 // char[] currentKey
         8: .line 58
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.keyTable:[[C
            iload 3 /* index */
            aaload
            dup
            astore 5 /* currentKey */
        start local 5 // char[] currentKey
         9: ifnonnull 4
        10: .line 65
            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.HashtableOfModule this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0        this  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfModule;
            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 org.eclipse.jdt.internal.compiler.lookup.ModuleBinding put(char[], org.eclipse.jdt.internal.compiler.lookup.ModuleBinding);
    descriptor: ([CLorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;)Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfModule this
        start local 1 // char[] key
        start local 2 // org.eclipse.jdt.internal.compiler.lookup.ModuleBinding value
         0: .line 68
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.keyTable:[[C
            arraylength
            istore 3 /* length */
        start local 3 // int length
         1: .line 69
            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 70
            aload 1 /* key */
            arraylength
            istore 5 /* keyLength */
        start local 5 // int keyLength
         3: .line 72
            goto 8
        start local 6 // char[] currentKey
         4: .line 73
      StackMap locals: org.eclipse.jdt.internal.compiler.util.HashtableOfModule char[] org.eclipse.jdt.internal.compiler.lookup.ModuleBinding 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 74
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.valueTable:[Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
            iload 4 /* index */
            aload 2 /* value */
            dup_x2
            aastore
            areturn
         6: .line 75
      StackMap locals:
      StackMap stack:
            iinc 4 /* index */ 1
            iload 4 /* index */
            iload 3 /* length */
            if_icmpne 8
         7: .line 76
            iconst_0
            istore 4 /* index */
        end local 6 // char[] currentKey
         8: .line 72
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.keyTable:[[C
            iload 4 /* index */
            aaload
            dup
            astore 6 /* currentKey */
        start local 6 // char[] currentKey
         9: ifnonnull 4
        10: .line 79
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.keyTable:[[C
            iload 4 /* index */
            aload 1 /* key */
            aastore
        11: .line 80
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.valueTable:[Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
            iload 4 /* index */
            aload 2 /* value */
            aastore
        12: .line 83
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.elementSize:I
            iconst_1
            iadd
            dup_x1
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.elementSize:I
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.threshold:I
            if_icmple 14
        13: .line 84
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.compiler.util.HashtableOfModule.rehash:()V
        14: .line 85
      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 // org.eclipse.jdt.internal.compiler.lookup.ModuleBinding value
        end local 1 // char[] key
        end local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfModule this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   15     0        this  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfModule;
            0   15     1         key  [C
            0   15     2       value  Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
            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  

  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.HashtableOfModule this
         0: .line 88
            new org.eclipse.jdt.internal.compiler.util.HashtableOfModule
            dup
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.elementSize:I
            iconst_2
            imul
            invokespecial org.eclipse.jdt.internal.compiler.util.HashtableOfModule.<init>:(I)V
            astore 1 /* newHashtable */
        start local 1 // org.eclipse.jdt.internal.compiler.util.HashtableOfModule newHashtable
         1: .line 90
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.keyTable:[[C
            arraylength
            istore 3 /* i */
        start local 3 // int i
         2: goto 6
         3: .line 91
      StackMap locals: org.eclipse.jdt.internal.compiler.util.HashtableOfModule org.eclipse.jdt.internal.compiler.util.HashtableOfModule top int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.keyTable:[[C
            iload 3 /* i */
            aaload
            dup
            astore 2 /* currentKey */
        start local 2 // char[] currentKey
         4: ifnull 6
         5: .line 92
            aload 1 /* newHashtable */
            aload 2 /* currentKey */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.valueTable:[Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
            iload 3 /* i */
            aaload
            invokevirtual org.eclipse.jdt.internal.compiler.util.HashtableOfModule.put:([CLorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;)Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
            pop
        end local 2 // char[] currentKey
         6: .line 90
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ -1
            iload 3 /* i */
            ifge 3
        end local 3 // int i
         7: .line 94
            aload 0 /* this */
            aload 1 /* newHashtable */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.keyTable:[[C
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.keyTable:[[C
         8: .line 95
            aload 0 /* this */
            aload 1 /* newHashtable */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.valueTable:[Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.valueTable:[Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
         9: .line 96
            aload 0 /* this */
            aload 1 /* newHashtable */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.threshold:I
            putfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.threshold:I
        10: .line 97
            return
        end local 1 // org.eclipse.jdt.internal.compiler.util.HashtableOfModule newHashtable
        end local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfModule this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   11     0          this  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfModule;
            1   11     1  newHashtable  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfModule;
            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.HashtableOfModule this
         0: .line 99
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.elementSize:I
            ireturn
        end local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfModule this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfModule;

  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.eclipse.jdt.internal.compiler.util.HashtableOfModule this
         0: .line 103
            ldc ""
            astore 1 /* s */
        start local 1 // java.lang.String s
         1: .line 105
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.valueTable:[Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
            arraylength
            istore 4 /* length */
        start local 4 // int length
         3: goto 8
         4: .line 106
      StackMap locals: org.eclipse.jdt.internal.compiler.util.HashtableOfModule java.lang.String top int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.util.HashtableOfModule.valueTable:[Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
            iload 3 /* i */
            aaload
            dup
            astore 2 /* pkg */
        start local 2 // org.eclipse.jdt.internal.compiler.lookup.ModuleBinding pkg
         5: ifnull 7
         6: .line 107
            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
            aload 2 /* pkg */
            invokevirtual org.eclipse.jdt.internal.compiler.lookup.ModuleBinding.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 105
      StackMap locals: org.eclipse.jdt.internal.compiler.util.HashtableOfModule java.lang.String org.eclipse.jdt.internal.compiler.lookup.ModuleBinding int int
      StackMap stack:
            iinc 3 /* i */ 1
        end local 2 // org.eclipse.jdt.internal.compiler.lookup.ModuleBinding pkg
      StackMap locals: org.eclipse.jdt.internal.compiler.util.HashtableOfModule 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 108
            aload 1 /* s */
            areturn
        end local 1 // java.lang.String s
        end local 0 // org.eclipse.jdt.internal.compiler.util.HashtableOfModule this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lorg/eclipse/jdt/internal/compiler/util/HashtableOfModule;
            1   10     1       s  Ljava/lang/String;
            5    8     2     pkg  Lorg/eclipse/jdt/internal/compiler/lookup/ModuleBinding;
            2    9     3       i  I
            3    9     4  length  I
}
SourceFile: "HashtableOfModule.java"