public final class javafx.collections.transformation.SortedList<E> extends javafx.collections.transformation.TransformationList<E, E>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: javafx.collections.transformation.SortedList
  super_class: javafx.collections.transformation.TransformationList
{
  private java.util.Comparator<javafx.collections.transformation.SortedList$Element<E>> elementComparator;
    descriptor: Ljava/util/Comparator;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Comparator<Ljavafx/collections/transformation/SortedList$Element<TE;>;>;

  private javafx.collections.transformation.SortedList$Element<E>[] sorted;
    descriptor: [Ljavafx/collections/transformation/SortedList$Element;
    flags: (0x0002) ACC_PRIVATE
    Signature: [Ljavafx/collections/transformation/SortedList$Element<TE;>;

  private int[] perm;
    descriptor: [I
    flags: (0x0002) ACC_PRIVATE

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

  private final com.sun.javafx.collections.SortHelper helper;
    descriptor: Lcom/sun/javafx/collections/SortHelper;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final javafx.collections.transformation.SortedList$Element<E> tempElement;
    descriptor: Ljavafx/collections/transformation/SortedList$Element;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljavafx/collections/transformation/SortedList$Element<TE;>;

  private javafx.beans.property.ObjectProperty<java.util.Comparator<? super E>> comparator;
    descriptor: Ljavafx/beans/property/ObjectProperty;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljavafx/beans/property/ObjectProperty<Ljava/util/Comparator<-TE;>;>;

  public void <init>(javafx.collections.ObservableList<? extends E>, java.util.Comparator<? super E>);
    descriptor: (Ljavafx/collections/ObservableList;Ljava/util/Comparator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // javafx.collections.transformation.SortedList this
        start local 1 // javafx.collections.ObservableList source
        start local 2 // java.util.Comparator comparator
         0: .line 75
            aload 0 /* this */
            aload 1 /* source */
            invokespecial javafx.collections.transformation.TransformationList.<init>:(Ljavafx/collections/ObservableList;)V
         1: .line 61
            aload 0 /* this */
            new com.sun.javafx.collections.SortHelper
            dup
            invokespecial com.sun.javafx.collections.SortHelper.<init>:()V
            putfield javafx.collections.transformation.SortedList.helper:Lcom/sun/javafx/collections/SortHelper;
         2: .line 63
            aload 0 /* this */
            new javafx.collections.transformation.SortedList$Element
            dup
            aconst_null
            iconst_m1
            invokespecial javafx.collections.transformation.SortedList$Element.<init>:(Ljava/lang/Object;I)V
            putfield javafx.collections.transformation.SortedList.tempElement:Ljavafx/collections/transformation/SortedList$Element;
         3: .line 76
            aload 0 /* this */
            aload 1 /* source */
            invokeinterface javafx.collections.ObservableList.size:()I
            iconst_3
            imul
            iconst_2
            idiv
            iconst_1
            iadd
            anewarray javafx.collections.transformation.SortedList$Element
            putfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
         4: .line 77
            aload 0 /* this */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            arraylength
            newarray 10
            putfield javafx.collections.transformation.SortedList.perm:[I
         5: .line 78
            aload 0 /* this */
            aload 1 /* source */
            invokeinterface javafx.collections.ObservableList.size:()I
            putfield javafx.collections.transformation.SortedList.size:I
         6: .line 79
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 11
         8: .line 80
      StackMap locals: javafx.collections.transformation.SortedList javafx.collections.ObservableList java.util.Comparator int
      StackMap stack:
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 3 /* i */
            new javafx.collections.transformation.SortedList$Element
            dup
            aload 1 /* source */
            iload 3 /* i */
            invokeinterface javafx.collections.ObservableList.get:(I)Ljava/lang/Object;
            iload 3 /* i */
            invokespecial javafx.collections.transformation.SortedList$Element.<init>:(Ljava/lang/Object;I)V
            aastore
         9: .line 81
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            iload 3 /* i */
            iload 3 /* i */
            iastore
        10: .line 79
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 3 /* i */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            if_icmplt 8
        end local 3 // int i
        12: .line 83
            aload 2 /* comparator */
            ifnull 14
        13: .line 84
            aload 0 /* this */
            aload 2 /* comparator */
            invokevirtual javafx.collections.transformation.SortedList.setComparator:(Ljava/util/Comparator;)V
        14: .line 87
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.util.Comparator comparator
        end local 1 // javafx.collections.ObservableList source
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   15     0        this  Ljavafx/collections/transformation/SortedList<TE;>;
            0   15     1      source  Ljavafx/collections/ObservableList<+TE;>;
            0   15     2  comparator  Ljava/util/Comparator<-TE;>;
            7   12     3           i  I
    Signature: (Ljavafx/collections/ObservableList<+TE;>;Ljava/util/Comparator<-TE;>;)V
    RuntimeVisibleParameterAnnotations: 
      0:
        javafx.beans.NamedArg(value = "source")
      1:
        javafx.beans.NamedArg(value = "comparator")
    MethodParameters:
            Name  Flags
      source      
      comparator  

  public void <init>(javafx.collections.ObservableList<? extends E>);
    descriptor: (Ljavafx/collections/ObservableList;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // javafx.collections.transformation.SortedList this
        start local 1 // javafx.collections.ObservableList source
         0: .line 95
            aload 0 /* this */
            aload 1 /* source */
            aconst_null
            invokespecial javafx.collections.transformation.SortedList.<init>:(Ljavafx/collections/ObservableList;Ljava/util/Comparator;)V
         1: .line 96
            return
        end local 1 // javafx.collections.ObservableList source
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Ljavafx/collections/transformation/SortedList<TE;>;
            0    2     1  source  Ljavafx/collections/ObservableList<+TE;>;
    Signature: (Ljavafx/collections/ObservableList<+TE;>;)V
    RuntimeVisibleParameterAnnotations: 
      0:
        javafx.beans.NamedArg(value = "source")
    MethodParameters:
        Name  Flags
      source  

  protected void sourceChanged(javafx.collections.ListChangeListener$Change<? extends E>);
    descriptor: (Ljavafx/collections/ListChangeListener$Change;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // javafx.collections.transformation.SortedList this
        start local 1 // javafx.collections.ListChangeListener$Change c
         0: .line 100
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.elementComparator:Ljava/util/Comparator;
            ifnull 13
         1: .line 101
            aload 0 /* this */
            invokevirtual javafx.collections.transformation.SortedList.beginChange:()V
         2: .line 102
            goto 10
         3: .line 103
      StackMap locals:
      StackMap stack:
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.wasPermutated:()Z
            ifeq 6
         4: .line 104
            aload 0 /* this */
            aload 1 /* c */
            invokevirtual javafx.collections.transformation.SortedList.updatePermutationIndexes:(Ljavafx/collections/ListChangeListener$Change;)V
         5: .line 105
            goto 10
      StackMap locals:
      StackMap stack:
         6: aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.wasUpdated:()Z
            ifeq 9
         7: .line 106
            aload 0 /* this */
            aload 1 /* c */
            invokevirtual javafx.collections.transformation.SortedList.update:(Ljavafx/collections/ListChangeListener$Change;)V
         8: .line 107
            goto 10
         9: .line 108
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* c */
            invokevirtual javafx.collections.transformation.SortedList.addRemove:(Ljavafx/collections/ListChangeListener$Change;)V
        10: .line 102
      StackMap locals:
      StackMap stack:
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.next:()Z
            ifne 3
        11: .line 111
            aload 0 /* this */
            invokevirtual javafx.collections.transformation.SortedList.endChange:()V
        12: .line 112
            goto 15
        13: .line 113
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* c */
            invokevirtual javafx.collections.transformation.SortedList.updateUnsorted:(Ljavafx/collections/ListChangeListener$Change;)V
        14: .line 114
            aload 0 /* this */
            new com.sun.javafx.collections.SourceAdapterChange
            dup
            aload 0 /* this */
            aload 1 /* c */
            invokespecial com.sun.javafx.collections.SourceAdapterChange.<init>:(Ljavafx/collections/ObservableList;Ljavafx/collections/ListChangeListener$Change;)V
            invokevirtual javafx.collections.transformation.SortedList.fireChange:(Ljavafx/collections/ListChangeListener$Change;)V
        15: .line 116
      StackMap locals:
      StackMap stack:
            return
        end local 1 // javafx.collections.ListChangeListener$Change c
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Ljavafx/collections/transformation/SortedList<TE;>;
            0   16     1     c  Ljavafx/collections/ListChangeListener$Change<+TE;>;
    Signature: (Ljavafx/collections/ListChangeListener$Change<+TE;>;)V
    MethodParameters:
      Name  Flags
      c     

  public final javafx.beans.property.ObjectProperty<java.util.Comparator<? super E>> comparatorProperty();
    descriptor: ()Ljavafx/beans/property/ObjectProperty;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // javafx.collections.transformation.SortedList this
         0: .line 125
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.comparator:Ljavafx/beans/property/ObjectProperty;
            ifnonnull 2
         1: .line 126
            aload 0 /* this */
            new javafx.collections.transformation.SortedList$1
            dup
            aload 0 /* this */
            invokespecial javafx.collections.transformation.SortedList$1.<init>:(Ljavafx/collections/transformation/SortedList;)V
            putfield javafx.collections.transformation.SortedList.comparator:Ljavafx/beans/property/ObjectProperty;
         2: .line 147
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.comparator:Ljavafx/beans/property/ObjectProperty;
            areturn
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/collections/transformation/SortedList<TE;>;
    Signature: ()Ljavafx/beans/property/ObjectProperty<Ljava/util/Comparator<-TE;>;>;

  public final java.util.Comparator<? super E> getComparator();
    descriptor: ()Ljava/util/Comparator;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javafx.collections.transformation.SortedList this
         0: .line 151
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.comparator:Ljavafx/beans/property/ObjectProperty;
            ifnonnull 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.comparator:Ljavafx/beans/property/ObjectProperty;
            invokevirtual javafx.beans.property.ObjectProperty.get:()Ljava/lang/Object;
            checkcast java.util.Comparator
      StackMap locals:
      StackMap stack: java.util.Comparator
         2: areturn
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavafx/collections/transformation/SortedList<TE;>;
    Signature: ()Ljava/util/Comparator<-TE;>;

  public final void setComparator(java.util.Comparator<? super E>);
    descriptor: (Ljava/util/Comparator;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javafx.collections.transformation.SortedList this
        start local 1 // java.util.Comparator comparator
         0: .line 155
            aload 0 /* this */
            invokevirtual javafx.collections.transformation.SortedList.comparatorProperty:()Ljavafx/beans/property/ObjectProperty;
            aload 1 /* comparator */
            invokevirtual javafx.beans.property.ObjectProperty.set:(Ljava/lang/Object;)V
         1: .line 156
            return
        end local 1 // java.util.Comparator comparator
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Ljavafx/collections/transformation/SortedList<TE;>;
            0    2     1  comparator  Ljava/util/Comparator<-TE;>;
    Signature: (Ljava/util/Comparator<-TE;>;)V
    MethodParameters:
            Name  Flags
      comparator  

  public E get();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javafx.collections.transformation.SortedList this
        start local 1 // int index
         0: .line 167
            iload 1 /* index */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            if_icmplt 2
         1: .line 168
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 170
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 1 /* index */
            aaload
            getfield javafx.collections.transformation.SortedList$Element.e:Ljava/lang/Object;
            areturn
        end local 1 // int index
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Ljavafx/collections/transformation/SortedList<TE;>;
            0    3     1  index  I
    Signature: (I)TE;
    MethodParameters:
       Name  Flags
      index  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javafx.collections.transformation.SortedList this
         0: .line 180
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            ireturn
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/collections/transformation/SortedList<TE;>;

  private void doSortWithPermutationChange();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=8, args_size=1
        start local 0 // javafx.collections.transformation.SortedList this
         0: .line 184
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.elementComparator:Ljava/util/Comparator;
            ifnull 9
         1: .line 185
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.helper:Lcom/sun/javafx/collections/SortHelper;
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iconst_0
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.elementComparator:Ljava/util/Comparator;
            invokevirtual com.sun.javafx.collections.SortHelper.sort:([Ljava/lang/Object;IILjava/util/Comparator;)[I
            astore 1 /* perm */
        start local 1 // int[] perm
         2: .line 186
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 6
         4: .line 187
      StackMap locals: int[] int
      StackMap stack:
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 2 /* i */
            aaload
            getfield javafx.collections.transformation.SortedList$Element.index:I
            iload 2 /* i */
            iastore
         5: .line 186
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            if_icmplt 4
        end local 2 // int i
         7: .line 189
            aload 0 /* this */
            new com.sun.javafx.collections.NonIterableChange$SimplePermutationChange
            dup
            iconst_0
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            aload 1 /* perm */
            aload 0 /* this */
            invokespecial com.sun.javafx.collections.NonIterableChange$SimplePermutationChange.<init>:(II[ILjavafx/collections/ObservableList;)V
            invokevirtual javafx.collections.transformation.SortedList.fireChange:(Ljavafx/collections/ListChangeListener$Change;)V
        end local 1 // int[] perm
         8: .line 190
            goto 37
         9: .line 191
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            newarray 10
            astore 1 /* perm */
        start local 1 // int[] perm
        10: .line 192
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            newarray 10
            astore 2 /* rperm */
        start local 2 // int[] rperm
        11: .line 193
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        12: goto 15
        13: .line 194
      StackMap locals: int[] int[] int
      StackMap stack:
            aload 1 /* perm */
            iload 3 /* i */
            aload 2 /* rperm */
            iload 3 /* i */
            iload 3 /* i */
            dup_x2
            iastore
            iastore
        14: .line 193
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 3 /* i */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            if_icmplt 13
        end local 3 // int i
        16: .line 196
            iconst_0
            istore 3 /* changed */
        start local 3 // boolean changed
        17: .line 197
            iconst_0
            istore 4 /* idx */
        start local 4 // int idx
        18: .line 198
            goto 34
        19: .line 199
      StackMap locals: javafx.collections.transformation.SortedList int[] int[] int int
      StackMap stack:
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 4 /* idx */
            aaload
            getfield javafx.collections.transformation.SortedList$Element.index:I
            istore 5 /* otherIdx */
        start local 5 // int otherIdx
        20: .line 200
            iload 5 /* otherIdx */
            iload 4 /* idx */
            if_icmpne 23
        21: .line 201
            iinc 4 /* idx */ 1
        22: .line 202
            goto 34
        23: .line 204
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 5 /* otherIdx */
            aaload
            astore 6 /* other */
        start local 6 // javafx.collections.transformation.SortedList$Element other
        24: .line 205
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 5 /* otherIdx */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 4 /* idx */
            aaload
            aastore
        25: .line 206
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 4 /* idx */
            aload 6 /* other */
            aastore
        26: .line 207
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            iload 4 /* idx */
            iload 4 /* idx */
            iastore
        27: .line 208
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            iload 5 /* otherIdx */
            iload 5 /* otherIdx */
            iastore
        28: .line 209
            aload 1 /* perm */
            aload 2 /* rperm */
            iload 4 /* idx */
            iaload
            iload 5 /* otherIdx */
            iastore
        29: .line 210
            aload 1 /* perm */
            aload 2 /* rperm */
            iload 5 /* otherIdx */
            iaload
            iload 4 /* idx */
            iastore
        30: .line 211
            aload 2 /* rperm */
            iload 4 /* idx */
            iaload
            istore 7 /* tp */
        start local 7 // int tp
        31: .line 212
            aload 2 /* rperm */
            iload 4 /* idx */
            aload 2 /* rperm */
            iload 5 /* otherIdx */
            iaload
            iastore
        32: .line 213
            aload 2 /* rperm */
            iload 5 /* otherIdx */
            iload 7 /* tp */
            iastore
        33: .line 214
            iconst_1
            istore 3 /* changed */
        end local 7 // int tp
        end local 6 // javafx.collections.transformation.SortedList$Element other
        end local 5 // int otherIdx
        34: .line 198
      StackMap locals:
      StackMap stack:
            iload 4 /* idx */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            if_icmplt 19
        35: .line 216
            iload 3 /* changed */
            ifeq 37
        36: .line 217
            aload 0 /* this */
            new com.sun.javafx.collections.NonIterableChange$SimplePermutationChange
            dup
            iconst_0
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            aload 1 /* perm */
            aload 0 /* this */
            invokespecial com.sun.javafx.collections.NonIterableChange$SimplePermutationChange.<init>:(II[ILjavafx/collections/ObservableList;)V
            invokevirtual javafx.collections.transformation.SortedList.fireChange:(Ljavafx/collections/ListChangeListener$Change;)V
        end local 4 // int idx
        end local 3 // boolean changed
        end local 2 // int[] rperm
        end local 1 // int[] perm
        37: .line 220
      StackMap locals: javafx.collections.transformation.SortedList
      StackMap stack:
            return
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   38     0      this  Ljavafx/collections/transformation/SortedList<TE;>;
            2    8     1      perm  [I
            3    7     2         i  I
           10   37     1      perm  [I
           11   37     2     rperm  [I
           12   16     3         i  I
           17   37     3   changed  Z
           18   37     4       idx  I
           20   34     5  otherIdx  I
           24   34     6     other  Ljavafx/collections/transformation/SortedList$Element<TE;>;
           31   34     7        tp  I

  public int getSourceIndex(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javafx.collections.transformation.SortedList this
        start local 1 // int index
         0: .line 224
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 1 /* index */
            aaload
            getfield javafx.collections.transformation.SortedList$Element.index:I
            ireturn
        end local 1 // int index
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Ljavafx/collections/transformation/SortedList<TE;>;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getViewIndex(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javafx.collections.transformation.SortedList this
        start local 1 // int index
         0: .line 229
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            iload 1 /* index */
            iaload
            ireturn
        end local 1 // int index
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Ljavafx/collections/transformation/SortedList<TE;>;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  private void updatePermutationIndexes(javafx.collections.ListChangeListener$Change<? extends E>);
    descriptor: (Ljavafx/collections/ListChangeListener$Change;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // javafx.collections.transformation.SortedList this
        start local 1 // javafx.collections.ListChangeListener$Change change
         0: .line 233
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 6
         2: .line 234
      StackMap locals: int
      StackMap stack:
            aload 1 /* change */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 2 /* i */
            aaload
            getfield javafx.collections.transformation.SortedList$Element.index:I
            invokevirtual javafx.collections.ListChangeListener$Change.getPermutation:(I)I
            istore 3 /* p */
        start local 3 // int p
         3: .line 235
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 2 /* i */
            aaload
            iload 3 /* p */
            putfield javafx.collections.transformation.SortedList$Element.index:I
         4: .line 236
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            iload 3 /* p */
            iload 2 /* i */
            iastore
        end local 3 // int p
         5: .line 233
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            if_icmplt 2
        end local 2 // int i
         7: .line 238
            return
        end local 1 // javafx.collections.ListChangeListener$Change change
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Ljavafx/collections/transformation/SortedList<TE;>;
            0    8     1  change  Ljavafx/collections/ListChangeListener$Change<+TE;>;
            1    7     2       i  I
            3    5     3       p  I
    Signature: (Ljavafx/collections/ListChangeListener$Change<+TE;>;)V
    MethodParameters:
        Name  Flags
      change  

  private void updateUnsorted(javafx.collections.ListChangeListener$Change<? extends E>);
    descriptor: (Ljavafx/collections/ListChangeListener$Change;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // javafx.collections.transformation.SortedList this
        start local 1 // javafx.collections.ListChangeListener$Change c
         0: .line 241
            goto 33
         1: .line 242
      StackMap locals:
      StackMap stack:
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.wasPermutated:()Z
            ifeq 15
         2: .line 243
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            arraylength
            anewarray javafx.collections.transformation.SortedList$Element
            astore 2 /* sortedTmp */
        start local 2 // javafx.collections.transformation.SortedList$Element[] sortedTmp
         3: .line 244
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 13
         5: .line 245
      StackMap locals: javafx.collections.transformation.SortedList$Element[] int
      StackMap stack:
            iload 3 /* i */
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getFrom:()I
            if_icmplt 11
            iload 3 /* i */
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getTo:()I
            if_icmpge 11
         6: .line 246
            aload 1 /* c */
            iload 3 /* i */
            invokevirtual javafx.collections.ListChangeListener$Change.getPermutation:(I)I
            istore 4 /* p */
        start local 4 // int p
         7: .line 247
            aload 2 /* sortedTmp */
            iload 4 /* p */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 3 /* i */
            aaload
            aastore
         8: .line 248
            aload 2 /* sortedTmp */
            iload 4 /* p */
            aaload
            iload 4 /* p */
            putfield javafx.collections.transformation.SortedList$Element.index:I
         9: .line 249
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            iload 3 /* i */
            iload 3 /* i */
            iastore
        end local 4 // int p
        10: .line 250
            goto 12
        11: .line 251
      StackMap locals:
      StackMap stack:
            aload 2 /* sortedTmp */
            iload 3 /* i */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 3 /* i */
            aaload
            aastore
        12: .line 244
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 3 /* i */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            if_icmplt 5
        end local 3 // int i
        14: .line 254
            aload 0 /* this */
            aload 2 /* sortedTmp */
            putfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
        end local 2 // javafx.collections.transformation.SortedList$Element[] sortedTmp
        15: .line 256
      StackMap locals:
      StackMap stack:
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.wasRemoved:()Z
            ifeq 21
        16: .line 257
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getFrom:()I
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getRemovedSize:()I
            iadd
            istore 2 /* removedTo */
        start local 2 // int removedTo
        17: .line 258
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 2 /* removedTo */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getFrom:()I
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            iload 2 /* removedTo */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        18: .line 259
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            iload 2 /* removedTo */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getFrom:()I
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            iload 2 /* removedTo */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        19: .line 260
            aload 0 /* this */
            dup
            getfield javafx.collections.transformation.SortedList.size:I
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getRemovedSize:()I
            isub
            putfield javafx.collections.transformation.SortedList.size:I
        20: .line 261
            aload 0 /* this */
            iload 2 /* removedTo */
            iload 2 /* removedTo */
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getRemovedSize:()I
            ineg
            invokevirtual javafx.collections.transformation.SortedList.updateIndices:(III)V
        end local 2 // int removedTo
        21: .line 263
      StackMap locals:
      StackMap stack:
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.wasAdded:()Z
            ifeq 33
        22: .line 264
            aload 0 /* this */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getAddedSize:()I
            iadd
            invokevirtual javafx.collections.transformation.SortedList.ensureSize:(I)V
        23: .line 265
            aload 0 /* this */
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getFrom:()I
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getFrom:()I
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getAddedSize:()I
            invokevirtual javafx.collections.transformation.SortedList.updateIndices:(III)V
        24: .line 266
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getFrom:()I
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getTo:()I
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getFrom:()I
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        25: .line 267
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getFrom:()I
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getTo:()I
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getFrom:()I
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        26: .line 268
            aload 0 /* this */
            dup
            getfield javafx.collections.transformation.SortedList.size:I
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getAddedSize:()I
            iadd
            putfield javafx.collections.transformation.SortedList.size:I
        27: .line 269
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getFrom:()I
            istore 2 /* i */
        start local 2 // int i
        28: goto 32
        29: .line 270
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 2 /* i */
            new javafx.collections.transformation.SortedList$Element
            dup
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getList:()Ljavafx/collections/ObservableList;
            iload 2 /* i */
            invokeinterface javafx.collections.ObservableList.get:(I)Ljava/lang/Object;
            iload 2 /* i */
            invokespecial javafx.collections.transformation.SortedList$Element.<init>:(Ljava/lang/Object;I)V
            aastore
        30: .line 271
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            iload 2 /* i */
            iload 2 /* i */
            iastore
        31: .line 269
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        32: iload 2 /* i */
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getTo:()I
            if_icmplt 29
        end local 2 // int i
        33: .line 241
      StackMap locals:
      StackMap stack:
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.next:()Z
            ifne 1
        34: .line 275
            return
        end local 1 // javafx.collections.ListChangeListener$Change c
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   35     0       this  Ljavafx/collections/transformation/SortedList<TE;>;
            0   35     1          c  Ljavafx/collections/ListChangeListener$Change<+TE;>;
            3   15     2  sortedTmp  [Ljavafx/collections/transformation/SortedList$Element;
            4   14     3          i  I
            7   10     4          p  I
           17   21     2  removedTo  I
           28   33     2          i  I
    Signature: (Ljavafx/collections/ListChangeListener$Change<+TE;>;)V
    MethodParameters:
      Name  Flags
      c     

  private void ensureSize(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // javafx.collections.transformation.SortedList this
        start local 1 // int size
         0: .line 305
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            arraylength
            iload 1 /* size */
            if_icmpge 7
         1: .line 306
            iload 1 /* size */
            iconst_3
            imul
            iconst_2
            idiv
            iconst_1
            iadd
            anewarray javafx.collections.transformation.SortedList$Element
            astore 2 /* replacement */
        start local 2 // javafx.collections.transformation.SortedList$Element[] replacement
         2: .line 307
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iconst_0
            aload 2 /* replacement */
            iconst_0
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 308
            aload 0 /* this */
            aload 2 /* replacement */
            putfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
         4: .line 309
            iload 1 /* size */
            iconst_3
            imul
            iconst_2
            idiv
            iconst_1
            iadd
            newarray 10
            astore 3 /* replacementPerm */
        start local 3 // int[] replacementPerm
         5: .line 310
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            iconst_0
            aload 3 /* replacementPerm */
            iconst_0
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 311
            aload 0 /* this */
            aload 3 /* replacementPerm */
            putfield javafx.collections.transformation.SortedList.perm:[I
        end local 3 // int[] replacementPerm
        end local 2 // javafx.collections.transformation.SortedList$Element[] replacement
         7: .line 313
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int size
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    8     0             this  Ljavafx/collections/transformation/SortedList<TE;>;
            0    8     1             size  I
            2    7     2      replacement  [Ljavafx/collections/transformation/SortedList$Element;
            5    7     3  replacementPerm  [I
    MethodParameters:
      Name  Flags
      size  

  private void updateIndices(int, int, int);
    descriptor: (III)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // javafx.collections.transformation.SortedList this
        start local 1 // int from
        start local 2 // int viewFrom
        start local 3 // int difference
         0: .line 316
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         1: goto 7
         2: .line 317
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 4 /* i */
            aaload
            getfield javafx.collections.transformation.SortedList$Element.index:I
            iload 1 /* from */
            if_icmplt 4
         3: .line 318
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 4 /* i */
            aaload
            dup
            getfield javafx.collections.transformation.SortedList$Element.index:I
            iload 3 /* difference */
            iadd
            putfield javafx.collections.transformation.SortedList$Element.index:I
         4: .line 320
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            iload 4 /* i */
            iaload
            iload 2 /* viewFrom */
            if_icmplt 6
         5: .line 321
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            iload 4 /* i */
            dup2
            iaload
            iload 3 /* difference */
            iadd
            iastore
         6: .line 316
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            if_icmplt 2
        end local 4 // int i
         8: .line 324
            return
        end local 3 // int difference
        end local 2 // int viewFrom
        end local 1 // int from
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Ljavafx/collections/transformation/SortedList<TE;>;
            0    9     1        from  I
            0    9     2    viewFrom  I
            0    9     3  difference  I
            1    8     4           i  I
    MethodParameters:
            Name  Flags
      from        
      viewFrom    
      difference  

  private int findPosition();
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // javafx.collections.transformation.SortedList this
        start local 1 // java.lang.Object e
         0: .line 327
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            arraylength
            ifne 2
         1: .line 328
            iconst_0
            ireturn
         2: .line 330
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.tempElement:Ljavafx/collections/transformation/SortedList$Element;
            aload 1 /* e */
            putfield javafx.collections.transformation.SortedList$Element.e:Ljava/lang/Object;
         3: .line 331
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iconst_0
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.tempElement:Ljavafx/collections/transformation/SortedList$Element;
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.elementComparator:Ljava/util/Comparator;
            invokestatic java.util.Arrays.binarySearch:([Ljava/lang/Object;IILjava/lang/Object;Ljava/util/Comparator;)I
            istore 2 /* pos */
        start local 2 // int pos
         4: .line 332
            iload 2 /* pos */
            ireturn
        end local 2 // int pos
        end local 1 // java.lang.Object e
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljavafx/collections/transformation/SortedList<TE;>;
            0    5     1     e  TE;
            4    5     2   pos  I
    Signature: (TE;)I
    MethodParameters:
      Name  Flags
      e     

  private void insertToMapping(E, );
    descriptor: (Ljava/lang/Object;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // javafx.collections.transformation.SortedList this
        start local 1 // java.lang.Object e
        start local 2 // int idx
         0: .line 336
            aload 0 /* this */
            aload 1 /* e */
            invokevirtual javafx.collections.transformation.SortedList.findPosition:(Ljava/lang/Object;)I
            istore 3 /* pos */
        start local 3 // int pos
         1: .line 337
            iload 3 /* pos */
            ifge 3
         2: .line 338
            iload 3 /* pos */
            iconst_m1
            ixor
            istore 3 /* pos */
         3: .line 340
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            iconst_1
            iadd
            invokevirtual javafx.collections.transformation.SortedList.ensureSize:(I)V
         4: .line 341
            aload 0 /* this */
            iload 2 /* idx */
            iload 3 /* pos */
            iconst_1
            invokevirtual javafx.collections.transformation.SortedList.updateIndices:(III)V
         5: .line 342
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 3 /* pos */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 3 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            iload 3 /* pos */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 343
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 3 /* pos */
            new javafx.collections.transformation.SortedList$Element
            dup
            aload 1 /* e */
            iload 2 /* idx */
            invokespecial javafx.collections.transformation.SortedList$Element.<init>:(Ljava/lang/Object;I)V
            aastore
         7: .line 344
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            iload 2 /* idx */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            iload 2 /* idx */
            iconst_1
            iadd
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            iload 2 /* idx */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 345
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            iload 2 /* idx */
            iload 3 /* pos */
            iastore
         9: .line 346
            aload 0 /* this */
            dup
            getfield javafx.collections.transformation.SortedList.size:I
            iconst_1
            iadd
            putfield javafx.collections.transformation.SortedList.size:I
        10: .line 347
            aload 0 /* this */
            iload 3 /* pos */
            iload 3 /* pos */
            iconst_1
            iadd
            invokevirtual javafx.collections.transformation.SortedList.nextAdd:(II)V
        11: .line 349
            return
        end local 3 // int pos
        end local 2 // int idx
        end local 1 // java.lang.Object e
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Ljavafx/collections/transformation/SortedList<TE;>;
            0   12     1     e  TE;
            0   12     2   idx  I
            1   12     3   pos  I
    Signature: (TE;I)V
    MethodParameters:
      Name  Flags
      e     
      idx   

  private void setAllToMapping(java.util.List<? extends E>, );
    descriptor: (Ljava/util/List;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // javafx.collections.transformation.SortedList this
        start local 1 // java.util.List list
        start local 2 // int to
         0: .line 352
            aload 0 /* this */
            iload 2 /* to */
            invokevirtual javafx.collections.transformation.SortedList.ensureSize:(I)V
         1: .line 353
            aload 0 /* this */
            iload 2 /* to */
            putfield javafx.collections.transformation.SortedList.size:I
         2: .line 354
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 6
         4: .line 355
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 3 /* i */
            new javafx.collections.transformation.SortedList$Element
            dup
            aload 1 /* list */
            iload 3 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            iload 3 /* i */
            invokespecial javafx.collections.transformation.SortedList$Element.<init>:(Ljava/lang/Object;I)V
            aastore
         5: .line 354
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            iload 2 /* to */
            if_icmplt 4
        end local 3 // int i
         7: .line 357
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.helper:Lcom/sun/javafx/collections/SortHelper;
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iconst_0
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.elementComparator:Ljava/util/Comparator;
            invokevirtual com.sun.javafx.collections.SortHelper.sort:([Ljava/lang/Object;IILjava/util/Comparator;)[I
            astore 3 /* perm */
        start local 3 // int[] perm
         8: .line 358
            aload 3 /* perm */
            iconst_0
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            iconst_0
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 359
            aload 0 /* this */
            iconst_0
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            invokevirtual javafx.collections.transformation.SortedList.nextAdd:(II)V
        10: .line 360
            return
        end local 3 // int[] perm
        end local 2 // int to
        end local 1 // java.util.List list
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Ljavafx/collections/transformation/SortedList<TE;>;
            0   11     1  list  Ljava/util/List<+TE;>;
            0   11     2    to  I
            3    7     3     i  I
            8   11     3  perm  [I
    Signature: (Ljava/util/List<+TE;>;I)V
    MethodParameters:
      Name  Flags
      list  
      to    

  private void removeFromMapping(int, );
    descriptor: (ILjava/lang/Object;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // javafx.collections.transformation.SortedList this
        start local 1 // int idx
        start local 2 // java.lang.Object e
         0: .line 363
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            iload 1 /* idx */
            iaload
            istore 3 /* pos */
        start local 3 // int pos
         1: .line 364
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 3 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 3 /* pos */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            iload 3 /* pos */
            isub
            iconst_1
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 365
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            iload 1 /* idx */
            iconst_1
            iadd
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            iload 1 /* idx */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            iload 1 /* idx */
            isub
            iconst_1
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 366
            aload 0 /* this */
            dup
            getfield javafx.collections.transformation.SortedList.size:I
            iconst_1
            isub
            putfield javafx.collections.transformation.SortedList.size:I
         4: .line 367
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            aconst_null
            aastore
         5: .line 368
            aload 0 /* this */
            iload 1 /* idx */
            iconst_1
            iadd
            iload 3 /* pos */
            iconst_m1
            invokevirtual javafx.collections.transformation.SortedList.updateIndices:(III)V
         6: .line 370
            aload 0 /* this */
            iload 3 /* pos */
            aload 2 /* e */
            invokevirtual javafx.collections.transformation.SortedList.nextRemove:(ILjava/lang/Object;)V
         7: .line 371
            return
        end local 3 // int pos
        end local 2 // java.lang.Object e
        end local 1 // int idx
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljavafx/collections/transformation/SortedList<TE;>;
            0    8     1   idx  I
            0    8     2     e  TE;
            1    8     3   pos  I
    Signature: (ITE;)V
    MethodParameters:
      Name  Flags
      idx   
      e     

  private void removeAllFromMapping();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // javafx.collections.transformation.SortedList this
         0: .line 374
            new java.util.ArrayList
            dup
            aload 0 /* this */
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            astore 1 /* removed */
        start local 1 // java.util.List removed
         1: .line 375
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 376
      StackMap locals: java.util.List int
      StackMap stack:
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 2 /* i */
            aconst_null
            aastore
         4: .line 375
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            if_icmplt 3
        end local 2 // int i
         6: .line 378
            aload 0 /* this */
            iconst_0
            putfield javafx.collections.transformation.SortedList.size:I
         7: .line 379
            aload 0 /* this */
            iconst_0
            aload 1 /* removed */
            invokevirtual javafx.collections.transformation.SortedList.nextRemove:(ILjava/util/List;)V
         8: .line 380
            return
        end local 1 // java.util.List removed
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Ljavafx/collections/transformation/SortedList<TE;>;
            1    9     1  removed  Ljava/util/List<TE;>;
            2    6     2        i  I

  private void update(javafx.collections.ListChangeListener$Change<? extends E>);
    descriptor: (Ljavafx/collections/ListChangeListener$Change;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // javafx.collections.transformation.SortedList this
        start local 1 // javafx.collections.ListChangeListener$Change c
         0: .line 383
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.helper:Lcom/sun/javafx/collections/SortHelper;
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iconst_0
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.elementComparator:Ljava/util/Comparator;
            invokevirtual com.sun.javafx.collections.SortHelper.sort:([Ljava/lang/Object;IILjava/util/Comparator;)[I
            astore 2 /* perm */
        start local 2 // int[] perm
         1: .line 384
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 385
      StackMap locals: int[] int
      StackMap stack:
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.sorted:[Ljavafx/collections/transformation/SortedList$Element;
            iload 3 /* i */
            aaload
            getfield javafx.collections.transformation.SortedList$Element.index:I
            iload 3 /* i */
            iastore
         4: .line 384
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            if_icmplt 3
        end local 3 // int i
         6: .line 387
            aload 0 /* this */
            iconst_0
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            aload 2 /* perm */
            invokevirtual javafx.collections.transformation.SortedList.nextPermutation:(II[I)V
         7: .line 388
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getFrom:()I
            istore 3 /* i */
        start local 3 // int i
         8: aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getTo:()I
            istore 4 /* to */
        start local 4 // int to
         9: goto 12
        10: .line 389
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.perm:[I
            iload 3 /* i */
            iaload
            invokevirtual javafx.collections.transformation.SortedList.nextUpdate:(I)V
        11: .line 388
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 3 /* i */
            iload 4 /* to */
            if_icmplt 10
        end local 4 // int to
        end local 3 // int i
        13: .line 391
            return
        end local 2 // int[] perm
        end local 1 // javafx.collections.ListChangeListener$Change c
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Ljavafx/collections/transformation/SortedList<TE;>;
            0   14     1     c  Ljavafx/collections/ListChangeListener$Change<+TE;>;
            1   14     2  perm  [I
            2    6     3     i  I
            8   13     3     i  I
            9   13     4    to  I
    Signature: (Ljavafx/collections/ListChangeListener$Change<+TE;>;)V
    MethodParameters:
      Name  Flags
      c     

  private void addRemove(javafx.collections.ListChangeListener$Change<? extends E>);
    descriptor: (Ljavafx/collections/ListChangeListener$Change;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // javafx.collections.transformation.SortedList this
        start local 1 // javafx.collections.ListChangeListener$Change c
         0: .line 394
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getFrom:()I
            ifne 3
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getRemovedSize:()I
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            if_icmpne 3
         1: .line 395
            aload 0 /* this */
            invokevirtual javafx.collections.transformation.SortedList.removeAllFromMapping:()V
         2: .line 396
            goto 9
         3: .line 397
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         4: aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getRemovedSize:()I
            istore 3 /* sz */
        start local 3 // int sz
         5: goto 8
         6: .line 398
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getFrom:()I
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getRemoved:()Ljava/util/List;
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            invokevirtual javafx.collections.transformation.SortedList.removeFromMapping:(ILjava/lang/Object;)V
         7: .line 397
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 2 /* i */
            iload 3 /* sz */
            if_icmplt 6
        end local 3 // int sz
        end local 2 // int i
         9: .line 401
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javafx.collections.transformation.SortedList.size:I
            ifne 12
        10: .line 402
            aload 0 /* this */
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getList:()Ljavafx/collections/ObservableList;
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getTo:()I
            invokevirtual javafx.collections.transformation.SortedList.setAllToMapping:(Ljava/util/List;I)V
        11: .line 404
            goto 18
        12: .line 405
      StackMap locals:
      StackMap stack:
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getFrom:()I
            istore 2 /* i */
        start local 2 // int i
        13: aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getTo:()I
            istore 3 /* to */
        start local 3 // int to
        14: goto 17
        15: .line 406
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* c */
            invokevirtual javafx.collections.ListChangeListener$Change.getList:()Ljavafx/collections/ObservableList;
            iload 2 /* i */
            invokeinterface javafx.collections.ObservableList.get:(I)Ljava/lang/Object;
            iload 2 /* i */
            invokevirtual javafx.collections.transformation.SortedList.insertToMapping:(Ljava/lang/Object;I)V
        16: .line 405
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 2 /* i */
            iload 3 /* to */
            if_icmplt 15
        end local 3 // int to
        end local 2 // int i
        18: .line 409
      StackMap locals:
      StackMap stack:
            return
        end local 1 // javafx.collections.ListChangeListener$Change c
        end local 0 // javafx.collections.transformation.SortedList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   19     0  this  Ljavafx/collections/transformation/SortedList<TE;>;
            0   19     1     c  Ljavafx/collections/ListChangeListener$Change<+TE;>;
            4    9     2     i  I
            5    9     3    sz  I
           13   18     2     i  I
           14   18     3    to  I
    Signature: (Ljavafx/collections/ListChangeListener$Change<+TE;>;)V
    MethodParameters:
      Name  Flags
      c     
}
Signature: <E:Ljava/lang/Object;>Ljavafx/collections/transformation/TransformationList<TE;TE;>;
SourceFile: "SortedList.java"
NestMembers:
  javafx.collections.transformation.SortedList$1  javafx.collections.transformation.SortedList$Element  javafx.collections.transformation.SortedList$ElementComparator
InnerClasses:
  public SimplePermutationChange = com.sun.javafx.collections.NonIterableChange$SimplePermutationChange of com.sun.javafx.collections.NonIterableChange
  public abstract Change = javafx.collections.ListChangeListener$Change of javafx.collections.ListChangeListener
  javafx.collections.transformation.SortedList$1
  private Element = javafx.collections.transformation.SortedList$Element of javafx.collections.transformation.SortedList
  private ElementComparator = javafx.collections.transformation.SortedList$ElementComparator of javafx.collections.transformation.SortedList