public class com.oracle.objectfile.ElementList implements java.util.List<com.oracle.objectfile.ObjectFile$Element>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.objectfile.ElementList
  super_class: java.lang.Object
{
  private java.util.List<com.oracle.objectfile.ObjectFile$Element> entries;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lcom/oracle/objectfile/ObjectFile$Element;>;

  protected final java.util.Map<java.lang.String, com.oracle.objectfile.ObjectFile$Element> elementForName;
    descriptor: Ljava/util/Map;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/String;Lcom/oracle/objectfile/ObjectFile$Element;>;

  private java.util.NavigableSet<java.lang.Integer> nonSectionElementIndices;
    descriptor: Ljava/util/NavigableSet;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/NavigableSet<Ljava/lang/Integer;>;

  private java.util.NavigableSet<java.lang.Integer> sectionElementIndices;
    descriptor: Ljava/util/NavigableSet;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/NavigableSet<Ljava/lang/Integer;>;

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 46
            ldc Lcom/oracle/objectfile/ElementList;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic com.oracle.objectfile.ElementList.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.objectfile.ElementList this
         0: .line 46
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 53
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
         2: .line 56
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield com.oracle.objectfile.ElementList.elementForName:Ljava/util/Map;
         3: .line 73
            aload 0 /* this */
            new java.util.TreeSet
            dup
            invokespecial java.util.TreeSet.<init>:()V
            putfield com.oracle.objectfile.ElementList.nonSectionElementIndices:Ljava/util/NavigableSet;
         4: .line 74
            aload 0 /* this */
            new java.util.TreeSet
            dup
            invokespecial java.util.TreeSet.<init>:()V
            putfield com.oracle.objectfile.ElementList.sectionElementIndices:Ljava/util/NavigableSet;
         5: .line 46
            return
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/oracle/objectfile/ElementList;

  public com.oracle.objectfile.ObjectFile$Element forName(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/oracle/objectfile/ObjectFile$Element;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // java.lang.String name
         0: .line 61
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.elementForName:Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.oracle.objectfile.ObjectFile$Element
            areturn
        end local 1 // java.lang.String name
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/ElementList;
            0    1     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public int elementIndexToSectionIndex(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // int i
         0: .line 78
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.nonSectionElementIndices:Ljava/util/NavigableSet;
            iload 1 /* i */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.NavigableSet.headSet:(Ljava/lang/Object;)Ljava/util/SortedSet;
            astore 2 /* lowerNonSectionElements */
        start local 2 // java.util.SortedSet lowerNonSectionElements
         1: .line 79
            iload 1 /* i */
            aload 2 /* lowerNonSectionElements */
            invokeinterface java.util.SortedSet.size:()I
            isub
            ireturn
        end local 2 // java.util.SortedSet lowerNonSectionElements
        end local 1 // int i
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0    2     0                     this  Lcom/oracle/objectfile/ElementList;
            0    2     1                        i  I
            1    2     2  lowerNonSectionElements  Ljava/util/SortedSet<Ljava/lang/Integer;>;
    MethodParameters:
      Name  Flags
      i     

  public int sectionIndexToElementIndex(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=2
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // int sectionIndex
         0: .line 87
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.sectionElementIndices:Ljava/util/NavigableSet;
            invokeinterface java.util.NavigableSet.first:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.sectionElementIndices:Ljava/util/NavigableSet;
            invokeinterface java.util.NavigableSet.last:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            iadd
            iconst_2
            idiv
            istore 2 /* pivot */
        start local 2 // int pivot
         1: .line 88
            iconst_0
            istore 3 /* leftOffset */
        start local 3 // int leftOffset
         2: .line 89
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.sectionElementIndices:Ljava/util/NavigableSet;
            iload 2 /* pivot */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.NavigableSet.headSet:(Ljava/lang/Object;)Ljava/util/SortedSet;
            astore 4 /* leftSet */
        start local 4 // java.util.SortedSet leftSet
         3: .line 90
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.sectionElementIndices:Ljava/util/NavigableSet;
            iload 2 /* pivot */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.NavigableSet.tailSet:(Ljava/lang/Object;)Ljava/util/SortedSet;
            astore 5 /* rightSet */
        start local 5 // java.util.SortedSet rightSet
         4: .line 92
            iload 3 /* leftOffset */
            aload 4 /* leftSet */
            invokeinterface java.util.SortedSet.size:()I
            iadd
            istore 6 /* rightHeadIndex */
        start local 6 // int rightHeadIndex
         5: .line 93
            goto 26
         6: .line 94
      StackMap locals: com.oracle.objectfile.ElementList int int int java.util.SortedSet java.util.SortedSet int
      StackMap stack:
            iload 6 /* rightHeadIndex */
            iload 1 /* sectionIndex */
            if_icmple 16
         7: .line 96
            aload 4 /* leftSet */
            invokeinterface java.util.SortedSet.size:()I
            ifne 9
         8: .line 97
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         9: .line 99
      StackMap locals:
      StackMap stack:
            aload 4 /* leftSet */
            invokeinterface java.util.SortedSet.first:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            aload 4 /* leftSet */
            invokeinterface java.util.SortedSet.last:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            iadd
            i2d
            ldc 2.0
            ddiv
            invokestatic java.lang.Math.floor:(D)D
            d2i
            istore 2 /* pivot */
        10: .line 100
            aload 4 /* leftSet */
            iload 2 /* pivot */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.SortedSet.headSet:(Ljava/lang/Object;)Ljava/util/SortedSet;
            astore 7 /* newLeftSet */
        start local 7 // java.util.SortedSet newLeftSet
        11: .line 101
            aload 4 /* leftSet */
            iload 2 /* pivot */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.SortedSet.tailSet:(Ljava/lang/Object;)Ljava/util/SortedSet;
            astore 8 /* newRightSet */
        start local 8 // java.util.SortedSet newRightSet
        12: .line 103
            getstatic com.oracle.objectfile.ElementList.$assertionsDisabled:Z
            ifne 13
            aload 4 /* leftSet */
            aload 7 /* newLeftSet */
            invokeinterface java.util.SortedSet.equals:(Ljava/lang/Object;)Z
            ifeq 13
            aload 5 /* rightSet */
            aload 8 /* newRightSet */
            invokeinterface java.util.SortedSet.equals:(Ljava/lang/Object;)Z
            ifeq 13
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        13: .line 104
      StackMap locals: java.util.SortedSet java.util.SortedSet
      StackMap stack:
            aload 7 /* newLeftSet */
            astore 4 /* leftSet */
        14: .line 105
            aload 8 /* newRightSet */
            astore 5 /* rightSet */
        end local 8 // java.util.SortedSet newRightSet
        end local 7 // java.util.SortedSet newLeftSet
        15: .line 106
            goto 25
        16: .line 108
      StackMap locals:
      StackMap stack:
            aload 5 /* rightSet */
            invokeinterface java.util.SortedSet.size:()I
            ifne 18
        17: .line 109
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
        18: .line 111
      StackMap locals:
      StackMap stack:
            aload 5 /* rightSet */
            invokeinterface java.util.SortedSet.first:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            aload 5 /* rightSet */
            invokeinterface java.util.SortedSet.last:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            iadd
            i2d
            ldc 2.0
            ddiv
            invokestatic java.lang.Math.ceil:(D)D
            d2i
            istore 2 /* pivot */
        19: .line 112
            iload 3 /* leftOffset */
            aload 4 /* leftSet */
            invokeinterface java.util.SortedSet.size:()I
            iadd
            istore 3 /* leftOffset */
        20: .line 113
            aload 5 /* rightSet */
            iload 2 /* pivot */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.SortedSet.headSet:(Ljava/lang/Object;)Ljava/util/SortedSet;
            astore 7 /* newLeftSet */
        start local 7 // java.util.SortedSet newLeftSet
        21: .line 114
            aload 5 /* rightSet */
            iload 2 /* pivot */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.SortedSet.tailSet:(Ljava/lang/Object;)Ljava/util/SortedSet;
            astore 8 /* newRightSet */
        start local 8 // java.util.SortedSet newRightSet
        22: .line 116
            getstatic com.oracle.objectfile.ElementList.$assertionsDisabled:Z
            ifne 23
            aload 4 /* leftSet */
            aload 7 /* newLeftSet */
            invokeinterface java.util.SortedSet.equals:(Ljava/lang/Object;)Z
            ifeq 23
            aload 5 /* rightSet */
            aload 8 /* newRightSet */
            invokeinterface java.util.SortedSet.equals:(Ljava/lang/Object;)Z
            ifeq 23
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        23: .line 117
      StackMap locals: java.util.SortedSet java.util.SortedSet
      StackMap stack:
            aload 7 /* newLeftSet */
            astore 4 /* leftSet */
        24: .line 118
            aload 8 /* newRightSet */
            astore 5 /* rightSet */
        end local 8 // java.util.SortedSet newRightSet
        end local 7 // java.util.SortedSet newLeftSet
        25: .line 120
      StackMap locals:
      StackMap stack:
            iload 3 /* leftOffset */
            aload 4 /* leftSet */
            invokeinterface java.util.SortedSet.size:()I
            iadd
            istore 6 /* rightHeadIndex */
        26: .line 93
      StackMap locals:
      StackMap stack:
            aload 4 /* leftSet */
            invokeinterface java.util.SortedSet.size:()I
            aload 5 /* rightSet */
            invokeinterface java.util.SortedSet.size:()I
            iadd
            iconst_1
            if_icmpgt 6
        27: .line 122
            iload 6 /* rightHeadIndex */
            iload 1 /* sectionIndex */
            if_icmple 28
            aload 4 /* leftSet */
            invokeinterface java.util.SortedSet.size:()I
            ifeq 29
      StackMap locals:
      StackMap stack:
        28: iload 6 /* rightHeadIndex */
            iload 1 /* sectionIndex */
            if_icmpgt 30
            aload 5 /* rightSet */
            invokeinterface java.util.SortedSet.size:()I
            ifne 30
        29: .line 123
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
        30: .line 125
      StackMap locals:
      StackMap stack:
            iload 6 /* rightHeadIndex */
            iload 1 /* sectionIndex */
            if_icmple 31
            aload 4 /* leftSet */
            invokeinterface java.util.SortedSet.last:()Ljava/lang/Object;
            checkcast java.lang.Integer
            goto 32
      StackMap locals:
      StackMap stack:
        31: aload 5 /* rightSet */
            invokeinterface java.util.SortedSet.first:()Ljava/lang/Object;
            checkcast java.lang.Integer
      StackMap locals:
      StackMap stack: java.lang.Integer
        32: invokevirtual java.lang.Integer.intValue:()I
            istore 7 /* toReturn */
        start local 7 // int toReturn
        33: .line 126
            getstatic com.oracle.objectfile.ElementList.$assertionsDisabled:Z
            ifne 34
            iload 7 /* toReturn */
            aload 0 /* this */
            iload 1 /* sectionIndex */
            invokevirtual com.oracle.objectfile.ElementList.sectionIndexToElementIndexNaive:(I)I
            if_icmpeq 34
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        34: .line 127
      StackMap locals: int
      StackMap stack:
            iload 7 /* toReturn */
            ireturn
        end local 7 // int toReturn
        end local 6 // int rightHeadIndex
        end local 5 // java.util.SortedSet rightSet
        end local 4 // java.util.SortedSet leftSet
        end local 3 // int leftOffset
        end local 2 // int pivot
        end local 1 // int sectionIndex
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   35     0            this  Lcom/oracle/objectfile/ElementList;
            0   35     1    sectionIndex  I
            1   35     2           pivot  I
            2   35     3      leftOffset  I
            3   35     4         leftSet  Ljava/util/SortedSet<Ljava/lang/Integer;>;
            4   35     5        rightSet  Ljava/util/SortedSet<Ljava/lang/Integer;>;
            5   35     6  rightHeadIndex  I
           11   15     7      newLeftSet  Ljava/util/SortedSet<Ljava/lang/Integer;>;
           12   15     8     newRightSet  Ljava/util/SortedSet<Ljava/lang/Integer;>;
           21   25     7      newLeftSet  Ljava/util/SortedSet<Ljava/lang/Integer;>;
           22   25     8     newRightSet  Ljava/util/SortedSet<Ljava/lang/Integer;>;
           33   35     7        toReturn  I
    MethodParameters:
              Name  Flags
      sectionIndex  

  com.oracle.objectfile.ObjectFile$Section getSection(int);
    descriptor: (I)Lcom/oracle/objectfile/ObjectFile$Section;
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // int sectionIndex
         0: .line 131
            aload 0 /* this */
            iload 1 /* sectionIndex */
            invokevirtual com.oracle.objectfile.ElementList.sectionIndexToElementIndex:(I)I
            istore 2 /* elementIndex */
        start local 2 // int elementIndex
         1: .line 132
            iload 2 /* elementIndex */
            iconst_m1
            if_icmpne 3
         2: .line 133
            aconst_null
            areturn
         3: .line 135
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* elementIndex */
            invokevirtual com.oracle.objectfile.ElementList.get:(I)Lcom/oracle/objectfile/ObjectFile$Element;
            astore 3 /* found */
        start local 3 // com.oracle.objectfile.ObjectFile$Element found
         4: .line 136
            getstatic com.oracle.objectfile.ElementList.$assertionsDisabled:Z
            ifne 5
            aload 3 /* found */
            instanceof com.oracle.objectfile.ObjectFile$Section
            ifne 5
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         5: .line 137
      StackMap locals: com.oracle.objectfile.ObjectFile$Element
      StackMap stack:
            aload 3 /* found */
            checkcast com.oracle.objectfile.ObjectFile$Section
            areturn
        end local 3 // com.oracle.objectfile.ObjectFile$Element found
        end local 2 // int elementIndex
        end local 1 // int sectionIndex
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lcom/oracle/objectfile/ElementList;
            0    6     1  sectionIndex  I
            1    6     2  elementIndex  I
            4    6     3         found  Lcom/oracle/objectfile/ObjectFile$Element;
    MethodParameters:
              Name  Flags
      sectionIndex  

  public int sectionIndexToElementIndexNaive(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // int i
         0: .line 154
            aconst_null
            astore 2 /* s */
        start local 2 // com.oracle.objectfile.ObjectFile$Section s
         1: .line 155
            iconst_m1
            istore 3 /* si */
        start local 3 // int si
         2: .line 156
            aload 0 /* this */
            invokevirtual com.oracle.objectfile.ElementList.sectionsIterator:()Ljava/util/Iterator;
            astore 4 /* iter */
        start local 4 // java.util.Iterator iter
         3: .line 157
            goto 9
         4: .line 159
      StackMap locals: com.oracle.objectfile.ObjectFile$Section int java.util.Iterator
      StackMap stack:
            aload 4 /* iter */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.oracle.objectfile.ObjectFile$Section
            astore 5 /* cur */
        start local 5 // com.oracle.objectfile.ObjectFile$Section cur
         5: .line 160
            iinc 3 /* si */ 1
         6: .line 161
            iload 1 /* i */
            iload 3 /* si */
            if_icmpne 9
         7: .line 162
            aload 5 /* cur */
            astore 2 /* s */
         8: .line 163
            goto 10
        end local 5 // com.oracle.objectfile.ObjectFile$Section cur
         9: .line 157
      StackMap locals:
      StackMap stack:
            aload 4 /* iter */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
        10: .line 166
      StackMap locals:
      StackMap stack:
            aload 2 /* s */
            ifnonnull 13
        11: .line 172
            getstatic com.oracle.objectfile.ElementList.$assertionsDisabled:Z
            ifne 12
            iload 1 /* i */
            aload 0 /* this */
            invokevirtual com.oracle.objectfile.ElementList.sectionsCount:()I
            if_icmpeq 12
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        12: .line 173
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.objectfile.ElementList.size:()I
            ireturn
        13: .line 175
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.objectfile.ElementList.$assertionsDisabled:Z
            ifne 14
            aload 2 /* s */
            ifnonnull 14
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        14: .line 176
      StackMap locals:
      StackMap stack:
            iload 3 /* si */
            istore 5 /* ei */
        start local 5 // int ei
        15: .line 177
            goto 17
        16: .line 178
      StackMap locals: int
      StackMap stack:
            iinc 5 /* ei */ 1
        17: .line 177
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* ei */
            invokevirtual com.oracle.objectfile.ElementList.get:(I)Lcom/oracle/objectfile/ObjectFile$Element;
            aload 2 /* s */
            if_acmpne 16
        18: .line 180
            iload 5 /* ei */
            ireturn
        end local 5 // int ei
        end local 4 // java.util.Iterator iter
        end local 3 // int si
        end local 2 // com.oracle.objectfile.ObjectFile$Section s
        end local 1 // int i
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   19     0  this  Lcom/oracle/objectfile/ElementList;
            0   19     1     i  I
            1   19     2     s  Lcom/oracle/objectfile/ObjectFile$Section;
            2   19     3    si  I
            3   19     4  iter  Ljava/util/Iterator<Lcom/oracle/objectfile/ObjectFile$Section;>;
            5    9     5   cur  Lcom/oracle/objectfile/ObjectFile$Section;
           15   19     5    ei  I
    MethodParameters:
      Name  Flags
      i     

  public java.util.Iterator<com.oracle.objectfile.ObjectFile$Section> sectionsIterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.objectfile.ElementList this
         0: .line 184
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            invokeinterface java.util.List.stream:()Ljava/util/stream/Stream;
            invokedynamic test()Ljava/util/function/Predicate;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Z
                  com/oracle/objectfile/ElementList.lambda$0(Lcom/oracle/objectfile/ObjectFile$Element;)Z (6)
                  (Lcom/oracle/objectfile/ObjectFile$Element;)Z
            invokeinterface java.util.stream.Stream.filter:(Ljava/util/function/Predicate;)Ljava/util/stream/Stream;
            invokedynamic apply()Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  com/oracle/objectfile/ElementList.lambda$1(Lcom/oracle/objectfile/ObjectFile$Element;)Lcom/oracle/objectfile/ObjectFile$Section; (6)
                  (Lcom/oracle/objectfile/ObjectFile$Element;)Lcom/oracle/objectfile/ObjectFile$Section;
            invokeinterface java.util.stream.Stream.map:(Ljava/util/function/Function;)Ljava/util/stream/Stream;
            invokeinterface java.util.stream.Stream.iterator:()Ljava/util/Iterator;
            areturn
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/ElementList;
    Signature: ()Ljava/util/Iterator<Lcom/oracle/objectfile/ObjectFile$Section;>;

  public int sectionsCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.objectfile.ElementList this
         0: .line 188
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.sectionElementIndices:Ljava/util/NavigableSet;
            invokeinterface java.util.NavigableSet.size:()I
            ireturn
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/ElementList;

  public int nonSectionsCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.objectfile.ElementList this
         0: .line 192
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.nonSectionElementIndices:Ljava/util/NavigableSet;
            invokeinterface java.util.NavigableSet.size:()I
            ireturn
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/ElementList;

  private void decrementSectionCounters(com.oracle.objectfile.ObjectFile$Element, int);
    descriptor: (Lcom/oracle/objectfile/ObjectFile$Element;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // com.oracle.objectfile.ObjectFile$Element removed
        start local 2 // int pos
         0: .line 196
            aload 1 /* removed */
            instanceof com.oracle.objectfile.ObjectFile$Section
            ifeq 3
         1: .line 197
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.sectionElementIndices:Ljava/util/NavigableSet;
            iload 2 /* pos */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.NavigableSet.remove:(Ljava/lang/Object;)Z
            pop
         2: .line 198
            goto 4
         3: .line 199
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.nonSectionElementIndices:Ljava/util/NavigableSet;
            iload 2 /* pos */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.NavigableSet.remove:(Ljava/lang/Object;)Z
            pop
         4: .line 201
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int pos
        end local 1 // com.oracle.objectfile.ObjectFile$Element removed
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lcom/oracle/objectfile/ElementList;
            0    5     1  removed  Lcom/oracle/objectfile/ObjectFile$Element;
            0    5     2      pos  I
    MethodParameters:
         Name  Flags
      removed  
      pos      

  private void incrementSectionCounters(com.oracle.objectfile.ObjectFile$Element, int);
    descriptor: (Lcom/oracle/objectfile/ObjectFile$Element;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // com.oracle.objectfile.ObjectFile$Element added
        start local 2 // int pos
         0: .line 204
            aload 1 /* added */
            instanceof com.oracle.objectfile.ObjectFile$Section
            ifeq 3
         1: .line 205
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.sectionElementIndices:Ljava/util/NavigableSet;
            iload 2 /* pos */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.NavigableSet.add:(Ljava/lang/Object;)Z
            pop
         2: .line 206
            goto 4
         3: .line 207
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.nonSectionElementIndices:Ljava/util/NavigableSet;
            iload 2 /* pos */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.NavigableSet.add:(Ljava/lang/Object;)Z
            pop
         4: .line 209
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int pos
        end local 1 // com.oracle.objectfile.ObjectFile$Element added
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lcom/oracle/objectfile/ElementList;
            0    5     1  added  Lcom/oracle/objectfile/ObjectFile$Element;
            0    5     2    pos  I
    MethodParameters:
       Name  Flags
      added  
      pos    

  public boolean add(com.oracle.objectfile.ObjectFile$Element);
    descriptor: (Lcom/oracle/objectfile/ObjectFile$Element;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // com.oracle.objectfile.ObjectFile$Element arg
         0: .line 213
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.elementForName:Ljava/util/Map;
            aload 1 /* arg */
            invokevirtual com.oracle.objectfile.ObjectFile$Element.getName:()Ljava/lang/String;
            aload 1 /* arg */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 214
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            aload 1 /* arg */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            istore 2 /* changed */
        start local 2 // boolean changed
         2: .line 215
            iload 2 /* changed */
            ifeq 5
         3: .line 216
            aload 0 /* this */
            invokevirtual com.oracle.objectfile.ElementList.size:()I
            iconst_1
            isub
            istore 3 /* pos */
        start local 3 // int pos
         4: .line 217
            aload 0 /* this */
            aload 1 /* arg */
            iload 3 /* pos */
            invokevirtual com.oracle.objectfile.ElementList.incrementSectionCounters:(Lcom/oracle/objectfile/ObjectFile$Element;I)V
        end local 3 // int pos
         5: .line 219
      StackMap locals: int
      StackMap stack:
            iload 2 /* changed */
            ireturn
        end local 2 // boolean changed
        end local 1 // com.oracle.objectfile.ObjectFile$Element arg
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lcom/oracle/objectfile/ElementList;
            0    6     1      arg  Lcom/oracle/objectfile/ObjectFile$Element;
            2    6     2  changed  Z
            4    5     3      pos  I
    MethodParameters:
      Name  Flags
      arg   

  public boolean addAll(java.util.Collection<? extends com.oracle.objectfile.ObjectFile$Element>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // java.util.Collection arg
         0: .line 224
            iconst_0
            istore 2 /* changed */
        start local 2 // boolean changed
         1: .line 225
            aload 1 /* arg */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: com.oracle.objectfile.ElementList java.util.Collection int top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.oracle.objectfile.ObjectFile$Element
            astore 3 /* e */
        start local 3 // com.oracle.objectfile.ObjectFile$Element e
         3: .line 226
            iload 2 /* changed */
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual com.oracle.objectfile.ElementList.add:(Lcom/oracle/objectfile/ObjectFile$Element;)Z
            ior
            istore 2 /* changed */
        end local 3 // com.oracle.objectfile.ObjectFile$Element e
         4: .line 225
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 228
            iload 2 /* changed */
            ireturn
        end local 2 // boolean changed
        end local 1 // java.util.Collection arg
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lcom/oracle/objectfile/ElementList;
            0    6     1      arg  Ljava/util/Collection<+Lcom/oracle/objectfile/ObjectFile$Element;>;
            1    6     2  changed  Z
            3    4     3        e  Lcom/oracle/objectfile/ObjectFile$Element;
    Signature: (Ljava/util/Collection<+Lcom/oracle/objectfile/ObjectFile$Element;>;)Z
    MethodParameters:
      Name  Flags
      arg   

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.objectfile.ElementList this
         0: .line 233
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         1: .line 234
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.elementForName:Ljava/util/Map;
            invokeinterface java.util.Map.clear:()V
         2: .line 235
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.sectionElementIndices:Ljava/util/NavigableSet;
            invokeinterface java.util.NavigableSet.clear:()V
         3: .line 236
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.nonSectionElementIndices:Ljava/util/NavigableSet;
            invokeinterface java.util.NavigableSet.clear:()V
         4: .line 237
            return
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/oracle/objectfile/ElementList;

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // java.lang.Object arg
         0: .line 241
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            aload 1 /* arg */
            invokeinterface java.util.List.contains:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object arg
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/ElementList;
            0    1     1   arg  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      arg   

  public boolean containsAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // java.util.Collection arg
         0: .line 246
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            aload 1 /* arg */
            invokeinterface java.util.List.containsAll:(Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.util.Collection arg
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/ElementList;
            0    1     1   arg  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      arg   

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.objectfile.ElementList this
         0: .line 251
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ireturn
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/ElementList;

  public java.util.Iterator<com.oracle.objectfile.ObjectFile$Element> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.objectfile.ElementList this
         0: .line 256
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            areturn
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/ElementList;
    Signature: ()Ljava/util/Iterator<Lcom/oracle/objectfile/ObjectFile$Element;>;

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // java.lang.Object arg
         0: .line 261
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            aload 1 /* arg */
            invokeinterface java.util.List.remove:(Ljava/lang/Object;)Z
            istore 2 /* ret */
        start local 2 // boolean ret
         1: .line 262
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            aload 1 /* arg */
            invokeinterface java.util.List.indexOf:(Ljava/lang/Object;)I
            istore 3 /* pos */
        start local 3 // int pos
         2: .line 263
            iload 2 /* ret */
            ifeq 7
         3: .line 265
            aload 0 /* this */
            aload 1 /* arg */
            checkcast com.oracle.objectfile.ObjectFile$Element
            iload 3 /* pos */
            invokevirtual com.oracle.objectfile.ElementList.decrementSectionCounters:(Lcom/oracle/objectfile/ObjectFile$Element;I)V
         4: .line 267
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.nonSectionElementIndices:Ljava/util/NavigableSet;
            iload 3 /* pos */
            iconst_m1
            invokestatic com.oracle.objectfile.ElementList.adjustAllGE:(Ljava/util/SortedSet;II)V
         5: .line 268
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.sectionElementIndices:Ljava/util/NavigableSet;
            iload 3 /* pos */
            iconst_m1
            invokestatic com.oracle.objectfile.ElementList.adjustAllGE:(Ljava/util/SortedSet;II)V
         6: .line 270
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.elementForName:Ljava/util/Map;
            aload 1 /* arg */
            checkcast com.oracle.objectfile.ObjectFile$Element
            invokevirtual com.oracle.objectfile.ObjectFile$Element.getName:()Ljava/lang/String;
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         7: .line 273
      StackMap locals: int int
      StackMap stack:
            iload 2 /* ret */
            ireturn
        end local 3 // int pos
        end local 2 // boolean ret
        end local 1 // java.lang.Object arg
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/oracle/objectfile/ElementList;
            0    8     1   arg  Ljava/lang/Object;
            1    8     2   ret  Z
            2    8     3   pos  I
    MethodParameters:
      Name  Flags
      arg   

  public boolean removeAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // java.util.Collection arg0
         0: .line 278
            iconst_0
            istore 2 /* removed */
        start local 2 // boolean removed
         1: .line 279
            aload 1 /* arg0 */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: com.oracle.objectfile.ElementList java.util.Collection int top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 3 /* o */
        start local 3 // java.lang.Object o
         3: .line 280
            iload 2 /* removed */
            aload 0 /* this */
            aload 3 /* o */
            invokevirtual com.oracle.objectfile.ElementList.remove:(Ljava/lang/Object;)Z
            ior
            istore 2 /* removed */
        end local 3 // java.lang.Object o
         4: .line 279
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 282
            iload 2 /* removed */
            ireturn
        end local 2 // boolean removed
        end local 1 // java.util.Collection arg0
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lcom/oracle/objectfile/ElementList;
            0    6     1     arg0  Ljava/util/Collection<*>;
            1    6     2  removed  Z
            3    4     3        o  Ljava/lang/Object;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      arg0  

  public boolean retainAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // java.util.Collection arg0
         0: .line 287
            iconst_0
            istore 2 /* changed */
        start local 2 // boolean changed
         1: .line 288
            aload 0 /* this */
            invokevirtual com.oracle.objectfile.ElementList.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: com.oracle.objectfile.ElementList java.util.Collection int top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.oracle.objectfile.ObjectFile$Element
            astore 3 /* e */
        start local 3 // com.oracle.objectfile.ObjectFile$Element e
         3: .line 289
            aload 1 /* arg0 */
            aload 3 /* e */
            invokeinterface java.util.Collection.contains:(Ljava/lang/Object;)Z
            ifne 5
         4: .line 290
            iload 2 /* changed */
            aload 0 /* this */
            aload 3 /* e */
            invokevirtual com.oracle.objectfile.ElementList.remove:(Ljava/lang/Object;)Z
            ior
            istore 2 /* changed */
        end local 3 // com.oracle.objectfile.ObjectFile$Element e
         5: .line 288
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 293
            iload 2 /* changed */
            ireturn
        end local 2 // boolean changed
        end local 1 // java.util.Collection arg0
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lcom/oracle/objectfile/ElementList;
            0    7     1     arg0  Ljava/util/Collection<*>;
            1    7     2  changed  Z
            3    5     3        e  Lcom/oracle/objectfile/ObjectFile$Element;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
      Name  Flags
      arg0  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.objectfile.ElementList this
         0: .line 298
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            ireturn
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/ElementList;

  public java.lang.Object[] toArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.objectfile.ElementList this
         0: .line 303
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            invokeinterface java.util.List.toArray:()[Ljava/lang/Object;
            areturn
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/ElementList;

  public <T> T[] toArray();
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // java.lang.Object[] arg
         0: .line 308
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            aload 1 /* arg */
            invokeinterface java.util.List.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object[] arg
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/ElementList;
            0    1     1   arg  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)[TT;
    MethodParameters:
      Name  Flags
      arg   

  static void adjustAllGE(java.util.SortedSet<java.lang.Integer>, int, );
    descriptor: (Ljava/util/SortedSet;II)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=7, args_size=3
        start local 0 // java.util.SortedSet t
        start local 1 // int pos
        start local 2 // int diff
         0: .line 312
            new java.util.TreeSet
            dup
            invokespecial java.util.TreeSet.<init>:()V
            astore 3 /* tmp */
        start local 3 // java.util.TreeSet tmp
         1: .line 313
            aload 0 /* t */
            iload 1 /* pos */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.SortedSet.tailSet:(Ljava/lang/Object;)Ljava/util/SortedSet;
            astore 4 /* tailSet */
        start local 4 // java.util.SortedSet tailSet
         2: .line 314
            aload 4 /* tailSet */
            invokeinterface java.util.SortedSet.iterator:()Ljava/util/Iterator;
            astore 6
            goto 5
      StackMap locals: java.util.SortedSet int int java.util.TreeSet java.util.SortedSet top java.util.Iterator
      StackMap stack:
         3: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Integer
            astore 5 /* i */
        start local 5 // java.lang.Integer i
         4: .line 315
            aload 3 /* tmp */
            aload 5 /* i */
            invokevirtual java.lang.Integer.intValue:()I
            iload 2 /* diff */
            iadd
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual java.util.TreeSet.add:(Ljava/lang/Object;)Z
            pop
        end local 5 // java.lang.Integer i
         5: .line 314
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 317
            aload 0 /* t */
            aload 4 /* tailSet */
            invokeinterface java.util.SortedSet.removeAll:(Ljava/util/Collection;)Z
            pop
         7: .line 318
            aload 0 /* t */
            aload 3 /* tmp */
            invokeinterface java.util.SortedSet.addAll:(Ljava/util/Collection;)Z
            pop
         8: .line 319
            return
        end local 4 // java.util.SortedSet tailSet
        end local 3 // java.util.TreeSet tmp
        end local 2 // int diff
        end local 1 // int pos
        end local 0 // java.util.SortedSet t
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0        t  Ljava/util/SortedSet<Ljava/lang/Integer;>;
            0    9     1      pos  I
            0    9     2     diff  I
            1    9     3      tmp  Ljava/util/TreeSet<Ljava/lang/Integer;>;
            2    9     4  tailSet  Ljava/util/SortedSet<Ljava/lang/Integer;>;
            4    5     5        i  Ljava/lang/Integer;
    Signature: (Ljava/util/SortedSet<Ljava/lang/Integer;>;II)V
    MethodParameters:
      Name  Flags
      t     
      pos   
      diff  

  public void add(int, com.oracle.objectfile.ObjectFile$Element);
    descriptor: (ILcom/oracle/objectfile/ObjectFile$Element;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // int pos
        start local 2 // com.oracle.objectfile.ObjectFile$Element arg1
         0: .line 324
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.sectionElementIndices:Ljava/util/NavigableSet;
            iload 1 /* pos */
            iconst_1
            invokestatic com.oracle.objectfile.ElementList.adjustAllGE:(Ljava/util/SortedSet;II)V
         1: .line 325
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.nonSectionElementIndices:Ljava/util/NavigableSet;
            iload 1 /* pos */
            iconst_1
            invokestatic com.oracle.objectfile.ElementList.adjustAllGE:(Ljava/util/SortedSet;II)V
         2: .line 327
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            iload 1 /* pos */
            aload 2 /* arg1 */
            invokeinterface java.util.List.add:(ILjava/lang/Object;)V
         3: .line 328
            aload 2 /* arg1 */
            instanceof com.oracle.objectfile.ObjectFile$Section
            ifeq 4
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.sectionElementIndices:Ljava/util/NavigableSet;
            goto 5
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.nonSectionElementIndices:Ljava/util/NavigableSet;
      StackMap locals:
      StackMap stack: java.util.NavigableSet
         5: iload 1 /* pos */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.NavigableSet.add:(Ljava/lang/Object;)Z
            pop
         6: .line 329
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.elementForName:Ljava/util/Map;
            aload 2 /* arg1 */
            invokevirtual com.oracle.objectfile.ObjectFile$Element.getName:()Ljava/lang/String;
            aload 2 /* arg1 */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         7: .line 330
            return
        end local 2 // com.oracle.objectfile.ObjectFile$Element arg1
        end local 1 // int pos
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/oracle/objectfile/ElementList;
            0    8     1   pos  I
            0    8     2  arg1  Lcom/oracle/objectfile/ObjectFile$Element;
    MethodParameters:
      Name  Flags
      pos   
      arg1  

  public boolean addAll(int, java.util.Collection<? extends com.oracle.objectfile.ObjectFile$Element>);
    descriptor: (ILjava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=3
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // int arg0
        start local 2 // java.util.Collection arg1
         0: .line 334
            iload 1 /* arg0 */
            istore 3 /* pos */
        start local 3 // int pos
         1: .line 335
            iconst_0
            istore 4 /* changed */
        start local 4 // boolean changed
         2: .line 336
            aload 2 /* arg1 */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 6
            goto 6
      StackMap locals: com.oracle.objectfile.ElementList int java.util.Collection int int top java.util.Iterator
      StackMap stack:
         3: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.oracle.objectfile.ObjectFile$Element
            astore 5 /* e */
        start local 5 // com.oracle.objectfile.ObjectFile$Element e
         4: .line 337
            aload 0 /* this */
            iload 3 /* pos */
            iinc 3 /* pos */ 1
            aload 5 /* e */
            invokevirtual com.oracle.objectfile.ElementList.add:(ILcom/oracle/objectfile/ObjectFile$Element;)V
         5: .line 338
            iconst_1
            istore 4 /* changed */
        end local 5 // com.oracle.objectfile.ObjectFile$Element e
         6: .line 336
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         7: .line 340
            iload 4 /* changed */
            ireturn
        end local 4 // boolean changed
        end local 3 // int pos
        end local 2 // java.util.Collection arg1
        end local 1 // int arg0
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lcom/oracle/objectfile/ElementList;
            0    8     1     arg0  I
            0    8     2     arg1  Ljava/util/Collection<+Lcom/oracle/objectfile/ObjectFile$Element;>;
            1    8     3      pos  I
            2    8     4  changed  Z
            4    6     5        e  Lcom/oracle/objectfile/ObjectFile$Element;
    Signature: (ILjava/util/Collection<+Lcom/oracle/objectfile/ObjectFile$Element;>;)Z
    MethodParameters:
      Name  Flags
      arg0  
      arg1  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // java.lang.Object arg0
         0: .line 345
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            aload 1 /* arg0 */
            invokeinterface java.util.List.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object arg0
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/ElementList;
            0    1     1  arg0  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      arg0  

  public com.oracle.objectfile.ObjectFile$Element get(int);
    descriptor: (I)Lcom/oracle/objectfile/ObjectFile$Element;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // int arg0
         0: .line 350
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            iload 1 /* arg0 */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast com.oracle.objectfile.ObjectFile$Element
            areturn
        end local 1 // int arg0
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/ElementList;
            0    1     1  arg0  I
    MethodParameters:
      Name  Flags
      arg0  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.objectfile.ElementList this
         0: .line 355
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            invokeinterface java.util.List.hashCode:()I
            ireturn
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/ElementList;

  public int indexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // java.lang.Object arg0
         0: .line 360
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            aload 1 /* arg0 */
            invokeinterface java.util.List.indexOf:(Ljava/lang/Object;)I
            ireturn
        end local 1 // java.lang.Object arg0
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/ElementList;
            0    1     1  arg0  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      arg0  

  public int lastIndexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // java.lang.Object arg0
         0: .line 365
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            aload 1 /* arg0 */
            invokeinterface java.util.List.lastIndexOf:(Ljava/lang/Object;)I
            ireturn
        end local 1 // java.lang.Object arg0
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/ElementList;
            0    1     1  arg0  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      arg0  

  public java.util.ListIterator<com.oracle.objectfile.ObjectFile$Element> listIterator();
    descriptor: ()Ljava/util/ListIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.objectfile.ElementList this
         0: .line 370
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            invokeinterface java.util.List.listIterator:()Ljava/util/ListIterator;
            areturn
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/ElementList;
    Signature: ()Ljava/util/ListIterator<Lcom/oracle/objectfile/ObjectFile$Element;>;

  public java.util.ListIterator<com.oracle.objectfile.ObjectFile$Element> listIterator(int);
    descriptor: (I)Ljava/util/ListIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // int arg0
         0: .line 375
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            iload 1 /* arg0 */
            invokeinterface java.util.List.listIterator:(I)Ljava/util/ListIterator;
            areturn
        end local 1 // int arg0
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/ElementList;
            0    1     1  arg0  I
    Signature: (I)Ljava/util/ListIterator<Lcom/oracle/objectfile/ObjectFile$Element;>;
    MethodParameters:
      Name  Flags
      arg0  

  public com.oracle.objectfile.ObjectFile$Element remove(int);
    descriptor: (I)Lcom/oracle/objectfile/ObjectFile$Element;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // int arg0
         0: .line 380
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.sectionElementIndices:Ljava/util/NavigableSet;
            iload 1 /* arg0 */
            iconst_m1
            invokestatic com.oracle.objectfile.ElementList.adjustAllGE:(Ljava/util/SortedSet;II)V
         1: .line 381
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.nonSectionElementIndices:Ljava/util/NavigableSet;
            iload 1 /* arg0 */
            iconst_m1
            invokestatic com.oracle.objectfile.ElementList.adjustAllGE:(Ljava/util/SortedSet;II)V
         2: .line 382
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            iload 1 /* arg0 */
            invokeinterface java.util.List.remove:(I)Ljava/lang/Object;
            checkcast com.oracle.objectfile.ObjectFile$Element
            astore 2 /* e */
        start local 2 // com.oracle.objectfile.ObjectFile$Element e
         3: .line 383
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.elementForName:Ljava/util/Map;
            aload 2 /* e */
            invokevirtual com.oracle.objectfile.ObjectFile$Element.getName:()Ljava/lang/String;
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 384
            aload 2 /* e */
            areturn
        end local 2 // com.oracle.objectfile.ObjectFile$Element e
        end local 1 // int arg0
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/oracle/objectfile/ElementList;
            0    5     1  arg0  I
            3    5     2     e  Lcom/oracle/objectfile/ObjectFile$Element;
    MethodParameters:
      Name  Flags
      arg0  

  public com.oracle.objectfile.ObjectFile$Element set(int, com.oracle.objectfile.ObjectFile$Element);
    descriptor: (ILcom/oracle/objectfile/ObjectFile$Element;)Lcom/oracle/objectfile/ObjectFile$Element;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // int arg0
        start local 2 // com.oracle.objectfile.ObjectFile$Element arg1
         0: .line 389
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            iload 1 /* arg0 */
            aload 2 /* arg1 */
            invokeinterface java.util.List.set:(ILjava/lang/Object;)Ljava/lang/Object;
            checkcast com.oracle.objectfile.ObjectFile$Element
            astore 3 /* replaced */
        start local 3 // com.oracle.objectfile.ObjectFile$Element replaced
         1: .line 390
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.elementForName:Ljava/util/Map;
            aload 3 /* replaced */
            invokevirtual com.oracle.objectfile.ObjectFile$Element.getName:()Ljava/lang/String;
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 391
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.elementForName:Ljava/util/Map;
            aload 2 /* arg1 */
            invokevirtual com.oracle.objectfile.ObjectFile$Element.getName:()Ljava/lang/String;
            aload 2 /* arg1 */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 392
            aload 3 /* replaced */
            instanceof com.oracle.objectfile.ObjectFile$Section
            ifeq 6
         4: .line 394
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.sectionElementIndices:Ljava/util/NavigableSet;
            iload 1 /* arg0 */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.NavigableSet.remove:(Ljava/lang/Object;)Z
            pop
         5: .line 395
            goto 7
         6: .line 397
      StackMap locals: com.oracle.objectfile.ObjectFile$Element
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.nonSectionElementIndices:Ljava/util/NavigableSet;
            iload 1 /* arg0 */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.NavigableSet.remove:(Ljava/lang/Object;)Z
            pop
         7: .line 399
      StackMap locals:
      StackMap stack:
            aload 2 /* arg1 */
            instanceof com.oracle.objectfile.ObjectFile$Section
            ifeq 10
         8: .line 401
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.sectionElementIndices:Ljava/util/NavigableSet;
            iload 1 /* arg0 */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.NavigableSet.add:(Ljava/lang/Object;)Z
            pop
         9: .line 402
            goto 11
        10: .line 404
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.nonSectionElementIndices:Ljava/util/NavigableSet;
            iload 1 /* arg0 */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.NavigableSet.add:(Ljava/lang/Object;)Z
            pop
        11: .line 407
      StackMap locals:
      StackMap stack:
            aload 3 /* replaced */
            areturn
        end local 3 // com.oracle.objectfile.ObjectFile$Element replaced
        end local 2 // com.oracle.objectfile.ObjectFile$Element arg1
        end local 1 // int arg0
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lcom/oracle/objectfile/ElementList;
            0   12     1      arg0  I
            0   12     2      arg1  Lcom/oracle/objectfile/ObjectFile$Element;
            1   12     3  replaced  Lcom/oracle/objectfile/ObjectFile$Element;
    MethodParameters:
      Name  Flags
      arg0  
      arg1  

  public java.util.List<com.oracle.objectfile.ObjectFile$Element> subList(int, int);
    descriptor: (II)Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.objectfile.ElementList this
        start local 1 // int arg0
        start local 2 // int arg1
         0: .line 412
            aload 0 /* this */
            getfield com.oracle.objectfile.ElementList.entries:Ljava/util/List;
            iload 1 /* arg0 */
            iload 2 /* arg1 */
            invokeinterface java.util.List.subList:(II)Ljava/util/List;
            areturn
        end local 2 // int arg1
        end local 1 // int arg0
        end local 0 // com.oracle.objectfile.ElementList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/objectfile/ElementList;
            0    1     1  arg0  I
            0    1     2  arg1  I
    Signature: (II)Ljava/util/List<Lcom/oracle/objectfile/ObjectFile$Element;>;
    MethodParameters:
      Name  Flags
      arg0  
      arg1  

  public java.lang.Object set(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            aload 2
            checkcast com.oracle.objectfile.ObjectFile$Element
            invokevirtual com.oracle.objectfile.ElementList.set:(ILcom/oracle/objectfile/ObjectFile$Element;)Lcom/oracle/objectfile/ObjectFile$Element;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object get(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual com.oracle.objectfile.ElementList.get:(I)Lcom/oracle/objectfile/ObjectFile$Element;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object remove(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual com.oracle.objectfile.ElementList.remove:(I)Lcom/oracle/objectfile/ObjectFile$Element;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void add(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            aload 2
            checkcast com.oracle.objectfile.ObjectFile$Element
            invokevirtual com.oracle.objectfile.ElementList.add:(ILcom/oracle/objectfile/ObjectFile$Element;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public boolean add(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.objectfile.ObjectFile$Element
            invokevirtual com.oracle.objectfile.ElementList.add:(Lcom/oracle/objectfile/ObjectFile$Element;)Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static boolean lambda$0(com.oracle.objectfile.ObjectFile$Element);
    descriptor: (Lcom/oracle/objectfile/ObjectFile$Element;)Z
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.objectfile.ObjectFile$Element element
         0: .line 184
            aload 0 /* element */
            instanceof com.oracle.objectfile.ObjectFile$Section
            ireturn
        end local 0 // com.oracle.objectfile.ObjectFile$Element element
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  element  Lcom/oracle/objectfile/ObjectFile$Element;

  private static com.oracle.objectfile.ObjectFile$Section lambda$1(com.oracle.objectfile.ObjectFile$Element);
    descriptor: (Lcom/oracle/objectfile/ObjectFile$Element;)Lcom/oracle/objectfile/ObjectFile$Section;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.objectfile.ObjectFile$Element element
         0: .line 184
            aload 0 /* element */
            checkcast com.oracle.objectfile.ObjectFile$Section
            areturn
        end local 0 // com.oracle.objectfile.ObjectFile$Element element
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  element  Lcom/oracle/objectfile/ObjectFile$Element;
}
Signature: Ljava/lang/Object;Ljava/util/List<Lcom/oracle/objectfile/ObjectFile$Element;>;
SourceFile: "ElementList.java"
InnerClasses:
  public abstract Element = com.oracle.objectfile.ObjectFile$Element of com.oracle.objectfile.ObjectFile
  public abstract Section = com.oracle.objectfile.ObjectFile$Section of com.oracle.objectfile.ObjectFile
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles