public class org.hibernate.engine.spi.ExecutableList<E extends org.hibernate.action.spi.Executable, java.lang.Comparable, java.io.Serializable> implements java.io.Serializable, java.lang.Iterable<E>, java.io.Externalizable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.hibernate.engine.spi.ExecutableList
  super_class: java.lang.Object
{
  public static final int INIT_QUEUE_LIST_SIZE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 5

  private final java.util.ArrayList<E> executables;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/ArrayList<TE;>;

  private final org.hibernate.engine.spi.ExecutableList$Sorter<E> sorter;
    descriptor: Lorg/hibernate/engine/spi/ExecutableList$Sorter;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/hibernate/engine/spi/ExecutableList$Sorter<TE;>;

  private final boolean requiresSorting;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private boolean sorted;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private transient java.util.Set<java.io.Serializable> querySpaces;
    descriptor: Ljava/util/Set;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT
    Signature: Ljava/util/Set<Ljava/io/Serializable;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.ExecutableList this
         0: .line 72
            aload 0 /* this */
            iconst_5
            invokespecial org.hibernate.engine.spi.ExecutableList.<init>:(I)V
         1: .line 73
            return
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // int initialCapacity
         0: .line 82
            aload 0 /* this */
            iload 1 /* initialCapacity */
            iconst_1
            invokespecial org.hibernate.engine.spi.ExecutableList.<init>:(IZ)V
         1: .line 83
            return
        end local 1 // int initialCapacity
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0    2     1  initialCapacity  I
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public void <init>(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // boolean requiresSorting
         0: .line 86
            aload 0 /* this */
            iconst_5
            iload 1 /* requiresSorting */
            invokespecial org.hibernate.engine.spi.ExecutableList.<init>:(IZ)V
         1: .line 87
            return
        end local 1 // boolean requiresSorting
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0    2     1  requiresSorting  Z
    MethodParameters:
                 Name  Flags
      requiresSorting  

  public void <init>(int, boolean);
    descriptor: (IZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // int initialCapacity
        start local 2 // boolean requiresSorting
         0: .line 89
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 90
            aload 0 /* this */
            aconst_null
            putfield org.hibernate.engine.spi.ExecutableList.sorter:Lorg/hibernate/engine/spi/ExecutableList$Sorter;
         2: .line 91
            aload 0 /* this */
            new java.util.ArrayList
            dup
            iload 1 /* initialCapacity */
            invokespecial java.util.ArrayList.<init>:(I)V
            putfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
         3: .line 92
            aload 0 /* this */
            aconst_null
            putfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
         4: .line 93
            aload 0 /* this */
            iload 2 /* requiresSorting */
            putfield org.hibernate.engine.spi.ExecutableList.requiresSorting:Z
         5: .line 94
            aload 0 /* this */
            iload 2 /* requiresSorting */
            putfield org.hibernate.engine.spi.ExecutableList.sorted:Z
         6: .line 95
            return
        end local 2 // boolean requiresSorting
        end local 1 // int initialCapacity
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    7     0             this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0    7     1  initialCapacity  I
            0    7     2  requiresSorting  Z
    MethodParameters:
                 Name  Flags
      initialCapacity  
      requiresSorting  

  public void <init>(org.hibernate.engine.spi.ExecutableList$Sorter<E>);
    descriptor: (Lorg/hibernate/engine/spi/ExecutableList$Sorter;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // org.hibernate.engine.spi.ExecutableList$Sorter sorter
         0: .line 103
            aload 0 /* this */
            iconst_5
            aload 1 /* sorter */
            invokespecial org.hibernate.engine.spi.ExecutableList.<init>:(ILorg/hibernate/engine/spi/ExecutableList$Sorter;)V
         1: .line 104
            return
        end local 1 // org.hibernate.engine.spi.ExecutableList$Sorter sorter
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0    2     1  sorter  Lorg/hibernate/engine/spi/ExecutableList$Sorter<TE;>;
    Signature: (Lorg/hibernate/engine/spi/ExecutableList$Sorter<TE;>;)V
    MethodParameters:
        Name  Flags
      sorter  

  public void <init>(int, org.hibernate.engine.spi.ExecutableList$Sorter<E>);
    descriptor: (ILorg/hibernate/engine/spi/ExecutableList$Sorter;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // int initialCapacity
        start local 2 // org.hibernate.engine.spi.ExecutableList$Sorter sorter
         0: .line 112
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 113
            aload 0 /* this */
            aload 2 /* sorter */
            putfield org.hibernate.engine.spi.ExecutableList.sorter:Lorg/hibernate/engine/spi/ExecutableList$Sorter;
         2: .line 114
            aload 0 /* this */
            new java.util.ArrayList
            dup
            iload 1 /* initialCapacity */
            invokespecial java.util.ArrayList.<init>:(I)V
            putfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
         3: .line 115
            aload 0 /* this */
            aconst_null
            putfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
         4: .line 117
            aload 0 /* this */
            iconst_1
            putfield org.hibernate.engine.spi.ExecutableList.requiresSorting:Z
         5: .line 118
            aload 0 /* this */
            iconst_1
            putfield org.hibernate.engine.spi.ExecutableList.sorted:Z
         6: .line 119
            return
        end local 2 // org.hibernate.engine.spi.ExecutableList$Sorter sorter
        end local 1 // int initialCapacity
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    7     0             this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0    7     1  initialCapacity  I
            0    7     2           sorter  Lorg/hibernate/engine/spi/ExecutableList$Sorter<TE;>;
    Signature: (ILorg/hibernate/engine/spi/ExecutableList$Sorter<TE;>;)V
    MethodParameters:
                 Name  Flags
      initialCapacity  
      sorter           

  public java.util.Set<java.io.Serializable> getQuerySpaces();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // org.hibernate.engine.spi.ExecutableList this
         0: .line 127
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            ifnonnull 11
         1: .line 128
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.iterator:()Ljava/util/Iterator;
            astore 2
            goto 8
      StackMap locals: org.hibernate.engine.spi.ExecutableList top java.util.Iterator
      StackMap stack:
         2: aload 2
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.hibernate.action.spi.Executable
            astore 1 /* e */
        start local 1 // org.hibernate.action.spi.Executable e
         3: .line 129
            aload 1 /* e */
            invokeinterface org.hibernate.action.spi.Executable.getPropertySpaces:()[Ljava/io/Serializable;
            astore 3 /* propertySpaces */
        start local 3 // java.io.Serializable[] propertySpaces
         4: .line 130
            aload 3 /* propertySpaces */
            ifnull 8
            aload 3 /* propertySpaces */
            arraylength
            ifle 8
         5: .line 131
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            ifnonnull 7
         6: .line 132
            aload 0 /* this */
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            putfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
         7: .line 134
      StackMap locals: org.hibernate.engine.spi.ExecutableList org.hibernate.action.spi.Executable java.util.Iterator java.io.Serializable[]
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            aload 3 /* propertySpaces */
            invokestatic java.util.Collections.addAll:(Ljava/util/Collection;[Ljava/lang/Object;)Z
            pop
        end local 3 // java.io.Serializable[] propertySpaces
        end local 1 // org.hibernate.action.spi.Executable e
         8: .line 128
      StackMap locals: org.hibernate.engine.spi.ExecutableList top java.util.Iterator
      StackMap stack:
            aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         9: .line 137
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            ifnonnull 11
        10: .line 138
            invokestatic java.util.Collections.emptySet:()Ljava/util/Set;
            areturn
        11: .line 141
      StackMap locals: org.hibernate.engine.spi.ExecutableList
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            areturn
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   12     0            this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            3    8     1               e  TE;
            4    8     3  propertySpaces  [Ljava/io/Serializable;
    Signature: ()Ljava/util/Set<Ljava/io/Serializable;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.ExecutableList this
         0: .line 148
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.isEmpty:()Z
            ireturn
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;

  public E remove();
    descriptor: (I)Lorg/hibernate/action/spi/Executable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // int index
         0: .line 161
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            iload 1 /* index */
            invokevirtual java.util.ArrayList.remove:(I)Ljava/lang/Object;
            checkcast org.hibernate.action.spi.Executable
            astore 2 /* e */
        start local 2 // org.hibernate.action.spi.Executable e
         1: .line 169
            aload 2 /* e */
            invokeinterface org.hibernate.action.spi.Executable.getPropertySpaces:()[Ljava/io/Serializable;
            ifnull 3
            aload 2 /* e */
            invokeinterface org.hibernate.action.spi.Executable.getPropertySpaces:()[Ljava/io/Serializable;
            arraylength
            ifle 3
         2: .line 170
            aload 0 /* this */
            aconst_null
            putfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
         3: .line 172
      StackMap locals: org.hibernate.action.spi.Executable
      StackMap stack:
            aload 2 /* e */
            areturn
        end local 2 // org.hibernate.action.spi.Executable e
        end local 1 // int index
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0    4     1  index  I
            1    4     2      e  TE;
    Signature: (I)TE;
    MethodParameters:
       Name  Flags
      index  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.ExecutableList this
         0: .line 179
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clear:()V
         1: .line 180
            aload 0 /* this */
            aconst_null
            putfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
         2: .line 181
            aload 0 /* this */
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.requiresSorting:Z
            putfield org.hibernate.engine.spi.ExecutableList.sorted:Z
         3: .line 182
            return
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;

  public void removeLastN(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // int n
         0: .line 190
            iload 1 /* n */
            ifle 9
         1: .line 191
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            istore 2 /* size */
        start local 2 // int size
         2: .line 192
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            iload 2 /* size */
            iload 1 /* n */
            isub
            iload 2 /* size */
            invokevirtual java.util.ArrayList.subList:(II)Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 7
      StackMap locals: org.hibernate.engine.spi.ExecutableList int int top java.util.Iterator
      StackMap stack:
         3: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.hibernate.action.spi.Executable
            astore 3 /* e */
        start local 3 // org.hibernate.action.spi.Executable e
         4: .line 193
            aload 3 /* e */
            invokeinterface org.hibernate.action.spi.Executable.getPropertySpaces:()[Ljava/io/Serializable;
            ifnull 7
            aload 3 /* e */
            invokeinterface org.hibernate.action.spi.Executable.getPropertySpaces:()[Ljava/io/Serializable;
            arraylength
            ifle 7
         5: .line 195
            aload 0 /* this */
            aconst_null
            putfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
         6: .line 196
            goto 8
        end local 3 // org.hibernate.action.spi.Executable e
         7: .line 192
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         8: .line 199
      StackMap locals: org.hibernate.engine.spi.ExecutableList int int
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            iload 2 /* size */
            iload 1 /* n */
            isub
            iload 2 /* size */
            invokevirtual java.util.ArrayList.subList:(II)Ljava/util/List;
            invokeinterface java.util.List.clear:()V
        end local 2 // int size
         9: .line 201
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int n
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0   10     1     n  I
            2    9     2  size  I
            4    7     3     e  Lorg/hibernate/action/spi/Executable;
    MethodParameters:
      Name  Flags
      n     

  public boolean add();
    descriptor: (Lorg/hibernate/action/spi/Executable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // org.hibernate.action.spi.Executable executable
         0: .line 211
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.sorter:Lorg/hibernate/engine/spi/ExecutableList$Sorter;
            ifnonnull 1
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.isEmpty:()Z
            ifeq 2
      StackMap locals:
      StackMap stack:
         1: aconst_null
            goto 3
      StackMap locals:
      StackMap stack:
         2: aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            iconst_1
            isub
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast org.hibernate.action.spi.Executable
      StackMap locals:
      StackMap stack: org.hibernate.action.spi.Executable
         3: astore 2 /* previousLast */
        start local 2 // org.hibernate.action.spi.Executable previousLast
         4: .line 212
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            aload 1 /* executable */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            istore 3 /* added */
        start local 3 // boolean added
         5: .line 214
            iload 3 /* added */
            ifne 7
         6: .line 215
            iconst_0
            ireturn
         7: .line 219
      StackMap locals: org.hibernate.action.spi.Executable int
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.sorted:Z
            ifeq 13
         8: .line 220
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.sorter:Lorg/hibernate/engine/spi/ExecutableList$Sorter;
            ifnull 11
         9: .line 222
            aload 0 /* this */
            iconst_0
            putfield org.hibernate.engine.spi.ExecutableList.sorted:Z
        10: .line 223
            goto 13
        11: .line 227
      StackMap locals:
      StackMap stack:
            aload 2 /* previousLast */
            ifnull 13
            aload 2 /* previousLast */
            checkcast java.lang.Comparable
            checkcast java.lang.Comparable
            aload 1 /* executable */
            invokeinterface java.lang.Comparable.compareTo:(Ljava/lang/Object;)I
            ifle 13
        12: .line 228
            aload 0 /* this */
            iconst_0
            putfield org.hibernate.engine.spi.ExecutableList.sorted:Z
        13: .line 233
      StackMap locals:
      StackMap stack:
            aload 1 /* executable */
            invokeinterface org.hibernate.action.spi.Executable.getPropertySpaces:()[Ljava/io/Serializable;
            astore 4 /* querySpaces */
        start local 4 // java.io.Serializable[] querySpaces
        14: .line 234
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            ifnull 16
            aload 4 /* querySpaces */
            ifnull 16
        15: .line 235
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            aload 4 /* querySpaces */
            invokestatic java.util.Collections.addAll:(Ljava/util/Collection;[Ljava/lang/Object;)Z
            pop
        16: .line 238
      StackMap locals: java.io.Serializable[]
      StackMap stack:
            iload 3 /* added */
            ireturn
        end local 4 // java.io.Serializable[] querySpaces
        end local 3 // boolean added
        end local 2 // org.hibernate.action.spi.Executable previousLast
        end local 1 // org.hibernate.action.spi.Executable executable
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   17     0          this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0   17     1    executable  TE;
            4   17     2  previousLast  TE;
            5   17     3         added  Z
           14   17     4   querySpaces  [Ljava/io/Serializable;
    Signature: (TE;)Z
    MethodParameters:
            Name  Flags
      executable  

  public void sort();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.ExecutableList this
         0: .line 246
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.sorted:Z
            ifne 1
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.requiresSorting:Z
            ifne 2
         1: .line 248
      StackMap locals:
      StackMap stack:
            return
         2: .line 251
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.sorter:Lorg/hibernate/engine/spi/ExecutableList$Sorter;
            ifnull 5
         3: .line 252
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.sorter:Lorg/hibernate/engine/spi/ExecutableList$Sorter;
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokeinterface org.hibernate.engine.spi.ExecutableList$Sorter.sort:(Ljava/util/List;)V
         4: .line 253
            goto 6
         5: .line 255
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokestatic java.util.Collections.sort:(Ljava/util/List;)V
         6: .line 257
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.hibernate.engine.spi.ExecutableList.sorted:Z
         7: .line 258
            return
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.ExecutableList this
         0: .line 264
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ireturn
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;

  public E get();
    descriptor: (I)Lorg/hibernate/action/spi/Executable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // int index
         0: .line 273
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            iload 1 /* index */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast org.hibernate.action.spi.Executable
            areturn
        end local 1 // int index
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0    1     1  index  I
    Signature: (I)TE;
    MethodParameters:
       Name  Flags
      index  

  public java.util.Iterator<E> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.ExecutableList this
         0: .line 283
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            areturn
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
    Signature: ()Ljava/util/Iterator<TE;>;

  public void writeExternal(java.io.ObjectOutput);
    descriptor: (Ljava/io/ObjectOutput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // java.io.ObjectOutput oos
         0: .line 293
            aload 1 /* oos */
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.sorted:Z
            invokeinterface java.io.ObjectOutput.writeBoolean:(Z)V
         1: .line 295
            aload 1 /* oos */
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         2: .line 296
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.iterator:()Ljava/util/Iterator;
            astore 3
            goto 5
      StackMap locals: org.hibernate.engine.spi.ExecutableList java.io.ObjectOutput top java.util.Iterator
      StackMap stack:
         3: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.hibernate.action.spi.Executable
            astore 2 /* e */
        start local 2 // org.hibernate.action.spi.Executable e
         4: .line 297
            aload 1 /* oos */
            aload 2 /* e */
            invokeinterface java.io.ObjectOutput.writeObject:(Ljava/lang/Object;)V
        end local 2 // org.hibernate.action.spi.Executable e
         5: .line 296
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 301
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            ifnonnull 9
         7: .line 302
            aload 1 /* oos */
            iconst_m1
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
         8: .line 303
            goto 14
         9: .line 305
      StackMap locals: org.hibernate.engine.spi.ExecutableList java.io.ObjectOutput
      StackMap stack:
            aload 1 /* oos */
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            invokeinterface java.util.Set.size:()I
            invokeinterface java.io.ObjectOutput.writeInt:(I)V
        10: .line 307
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 3
            goto 13
      StackMap locals: org.hibernate.engine.spi.ExecutableList java.io.ObjectOutput top java.util.Iterator
      StackMap stack:
        11: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.io.Serializable
            astore 2 /* querySpace */
        start local 2 // java.io.Serializable querySpace
        12: .line 308
            aload 1 /* oos */
            aload 2 /* querySpace */
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokeinterface java.io.ObjectOutput.writeUTF:(Ljava/lang/String;)V
        end local 2 // java.io.Serializable querySpace
        13: .line 307
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 11
        14: .line 311
      StackMap locals: org.hibernate.engine.spi.ExecutableList java.io.ObjectOutput
      StackMap stack:
            return
        end local 1 // java.io.ObjectOutput oos
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   15     0        this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0   15     1         oos  Ljava/io/ObjectOutput;
            4    5     2           e  TE;
           12   13     2  querySpace  Ljava/io/Serializable;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      oos   

  public void readExternal(java.io.ObjectInput);
    descriptor: (Ljava/io/ObjectInput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // java.io.ObjectInput in
         0: .line 321
            aload 0 /* this */
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readBoolean:()Z
            putfield org.hibernate.engine.spi.ExecutableList.sorted:Z
         1: .line 323
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readInt:()I
            istore 2 /* numberOfExecutables */
        start local 2 // int numberOfExecutables
         2: .line 324
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            iload 2 /* numberOfExecutables */
            invokevirtual java.util.ArrayList.ensureCapacity:(I)V
         3: .line 325
            iload 2 /* numberOfExecutables */
            ifle 10
         4: .line 326
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         5: goto 9
         6: .line 327
      StackMap locals: int int
      StackMap stack:
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readObject:()Ljava/lang/Object;
            checkcast org.hibernate.action.spi.Executable
            astore 4 /* e */
        start local 4 // org.hibernate.action.spi.Executable e
         7: .line 328
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            aload 4 /* e */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
        end local 4 // org.hibernate.action.spi.Executable e
         8: .line 326
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 3 /* i */
            iload 2 /* numberOfExecutables */
            if_icmplt 6
        end local 3 // int i
        10: .line 332
      StackMap locals:
      StackMap stack:
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readInt:()I
            istore 3 /* numberOfQuerySpaces */
        start local 3 // int numberOfQuerySpaces
        11: .line 333
            iload 3 /* numberOfQuerySpaces */
            ifge 14
        12: .line 334
            aload 0 /* this */
            aconst_null
            putfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
        13: .line 335
            goto 20
        14: .line 337
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            new java.util.HashSet
            dup
            iload 3 /* numberOfQuerySpaces */
            invokestatic org.hibernate.internal.util.collections.CollectionHelper.determineProperSizing:(I)I
            invokespecial java.util.HashSet.<init>:(I)V
            putfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
        15: .line 338
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        16: goto 19
        17: .line 339
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.querySpaces:Ljava/util/Set;
            aload 1 /* in */
            invokeinterface java.io.ObjectInput.readUTF:()Ljava/lang/String;
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
        18: .line 338
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 4 /* i */
            iload 3 /* numberOfQuerySpaces */
            if_icmplt 17
        end local 4 // int i
        20: .line 342
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int numberOfQuerySpaces
        end local 2 // int numberOfExecutables
        end local 1 // java.io.ObjectInput in
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   21     0                 this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0   21     1                   in  Ljava/io/ObjectInput;
            2   21     2  numberOfExecutables  I
            5   10     3                    i  I
            7    8     4                    e  TE;
           11   21     3  numberOfQuerySpaces  I
           16   20     4                    i  I
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      in    

  public void afterDeserialize(org.hibernate.engine.spi.SessionImplementor);
    descriptor: (Lorg/hibernate/engine/spi/SessionImplementor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.hibernate.engine.spi.ExecutableList this
        start local 1 // org.hibernate.engine.spi.SessionImplementor session
         0: .line 350
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.iterator:()Ljava/util/Iterator;
            astore 3
            goto 3
      StackMap locals: org.hibernate.engine.spi.ExecutableList org.hibernate.engine.spi.SessionImplementor top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.hibernate.action.spi.Executable
            astore 2 /* e */
        start local 2 // org.hibernate.action.spi.Executable e
         2: .line 351
            aload 2 /* e */
            aload 1 /* session */
            invokeinterface org.hibernate.action.spi.Executable.afterDeserialize:(Lorg/hibernate/engine/spi/SharedSessionContractImplementor;)V
        end local 2 // org.hibernate.action.spi.Executable e
         3: .line 350
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         4: .line 353
            return
        end local 1 // org.hibernate.engine.spi.SessionImplementor session
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
            0    5     1  session  Lorg/hibernate/engine/spi/SessionImplementor;
            2    3     2        e  TE;
    MethodParameters:
         Name  Flags
      session  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.ExecutableList this
         0: .line 356
            new java.lang.StringBuilder
            dup
            ldc "ExecutableList{size="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.hibernate.engine.spi.ExecutableList.executables:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "}"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.hibernate.engine.spi.ExecutableList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/spi/ExecutableList<TE;>;
}
Signature: <E::Lorg/hibernate/action/spi/Executable;:Ljava/lang/Comparable;:Ljava/io/Serializable;>Ljava/lang/Object;Ljava/io/Serializable;Ljava/lang/Iterable<TE;>;Ljava/io/Externalizable;
SourceFile: "ExecutableList.java"
NestMembers:
  org.hibernate.engine.spi.ExecutableList$Sorter
InnerClasses:
  public abstract Sorter = org.hibernate.engine.spi.ExecutableList$Sorter of org.hibernate.engine.spi.ExecutableList