final class org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector
  super_class: java.lang.Object
{
  static int INITIAL_SIZE;
    descriptor: I
    flags: (0x0008) ACC_STATIC

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

  char[][] elements;
    descriptor: [[C
    flags: (0x0000) 

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 25
            bipush 10
            putstatic org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector.INITIAL_SIZE:I
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  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.lookup.SortedSimpleNameVector this
         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.lookup.SortedSimpleNameVector.size:I
         2: .line 32
            aload 0 /* this */
            getstatic org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector.INITIAL_SIZE:I
            anewarray char[]
            putfield org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector.elements:[[C
         3: .line 33
            return
        end local 0 // org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/jdt/internal/compiler/lookup/SortedSimpleNameVector;

  public boolean add(char[]);
    descriptor: ([C)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector this
        start local 1 // char[] newElement
         0: .line 36
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector.elements:[[C
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector.size:I
            aload 1 /* newElement */
            getstatic org.eclipse.jdt.internal.compiler.util.SortedCharArrays.CHAR_ARR_COMPARATOR:Ljava/util/Comparator;
            invokestatic java.util.Arrays.binarySearch:([Ljava/lang/Object;IILjava/lang/Object;Ljava/util/Comparator;)I
            istore 2 /* idx */
        start local 2 // int idx
         1: .line 37
            iload 2 /* idx */
            ifge 11
         2: .line 38
            aload 0 /* this */
         3: .line 39
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector.elements:[[C
         4: .line 40
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector.size:I
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector.elements:[[C
            arraylength
            if_icmpge 5
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector.elements:[[C
            goto 6
      StackMap locals: org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector char[] int
      StackMap stack: org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector char[][]
         5: aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector.elements:[[C
            arraylength
            iconst_2
            imul
            anewarray char[]
         6: .line 41
      StackMap locals: org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector char[] int
      StackMap stack: org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector char[][] char[][]
            aload 1 /* newElement */
         7: .line 42
            iload 2 /* idx */
            iconst_1
            iadd
            ineg
         8: .line 43
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector.size:I
            dup_x1
            iconst_1
            iadd
            putfield org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector.size:I
         9: .line 38
            invokestatic org.eclipse.jdt.internal.compiler.util.SortedCharArrays.insertIntoArray:([Ljava/lang/Object;[Ljava/lang/Object;Ljava/lang/Object;II)[Ljava/lang/Object;
            checkcast char[][]
            putfield org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector.elements:[[C
        10: .line 44
            iconst_1
            ireturn
        11: .line 46
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // int idx
        end local 1 // char[] newElement
        end local 0 // org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0        this  Lorg/eclipse/jdt/internal/compiler/lookup/SortedSimpleNameVector;
            0   12     1  newElement  [C
            1   12     2         idx  I
    MethodParameters:
            Name  Flags
      newElement  

  public char[] elementAt(int);
    descriptor: (I)[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector this
        start local 1 // int index
         0: .line 50
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector.elements:[[C
            iload 1 /* index */
            aaload
            areturn
        end local 1 // int index
        end local 0 // org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/eclipse/jdt/internal/compiler/lookup/SortedSimpleNameVector;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector this
         0: .line 55
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* buffer */
        start local 1 // java.lang.StringBuilder buffer
         1: .line 56
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 57
      StackMap locals: java.lang.StringBuilder int
      StackMap stack:
            aload 1 /* buffer */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector.elements:[[C
            iload 2 /* i */
            aaload
            invokevirtual java.lang.StringBuilder.append:([C)Ljava/lang/StringBuilder;
            ldc "\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         4: .line 56
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector.size:I
            if_icmplt 3
        end local 2 // int i
         6: .line 59
            aload 1 /* buffer */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder buffer
        end local 0 // org.eclipse.jdt.internal.compiler.lookup.SortedSimpleNameVector this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/eclipse/jdt/internal/compiler/lookup/SortedSimpleNameVector;
            1    7     1  buffer  Ljava/lang/StringBuilder;
            2    6     2       i  I
}
SourceFile: "SortedSimpleNameVector.java"