public final class org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList
  super_class: java.lang.Object
{
  private final java.util.List<T> list;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<TT;>;

  private final jdk.internal.vm.compiler.collections.EconomicMap<T, java.lang.Integer> map;
    descriptor: Ljdk/internal/vm/compiler/collections/EconomicMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljdk/internal/vm/compiler/collections/EconomicMap<TT;Ljava/lang/Integer;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList this
         0: .line 295
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 296
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList.list:Ljava/util/List;
         2: .line 297
            aload 0 /* this */
            getstatic jdk.internal.vm.compiler.collections.Equivalence.IDENTITY:Ljdk/internal/vm/compiler/collections/Equivalence;
            invokestatic jdk.internal.vm.compiler.collections.EconomicMap.create:(Ljdk/internal/vm/compiler/collections/Equivalence;)Ljdk/internal/vm/compiler/collections/EconomicMap;
            putfield org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList.map:Ljdk/internal/vm/compiler/collections/EconomicMap;
         3: .line 295
            return
        end local 0 // org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/graalvm/compiler/nodes/spi/SwitchFoldable$QuickQueryList<TT;>;

  private int indexOf();
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList this
        start local 1 // java.lang.Object begin
         0: .line 300
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList.map:Ljdk/internal/vm/compiler/collections/EconomicMap;
            aload 1 /* begin */
            iconst_m1
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface jdk.internal.vm.compiler.collections.EconomicMap.get:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            ireturn
        end local 1 // java.lang.Object begin
        end local 0 // org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/graalvm/compiler/nodes/spi/SwitchFoldable$QuickQueryList<TT;>;
            0    1     1  begin  TT;
    Signature: (TT;)I
    MethodParameters:
       Name  Flags
      begin  

  private boolean contains();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList this
        start local 1 // java.lang.Object o
         0: .line 304
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList.map:Ljdk/internal/vm/compiler/collections/EconomicMap;
            aload 1 /* o */
            invokeinterface jdk.internal.vm.compiler.collections.EconomicMap.containsKey:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/nodes/spi/SwitchFoldable$QuickQueryList<TT;>;
            0    1     1     o  TT;
    Signature: (TT;)Z
    MethodParameters:
      Name  Flags
      o     

  private T get();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList this
        start local 1 // int index
         0: .line 309
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList.list:Ljava/util/List;
            iload 1 /* index */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            areturn
        end local 1 // int index
        end local 0 // org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/graalvm/compiler/nodes/spi/SwitchFoldable$QuickQueryList<TT;>;
            0    1     1  index  I
    Signature: (I)TT;
    MethodParameters:
       Name  Flags
      index  

  private boolean add();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList this
        start local 1 // java.lang.Object item
         0: .line 313
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList.map:Ljdk/internal/vm/compiler/collections/EconomicMap;
            aload 1 /* item */
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList.list:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface jdk.internal.vm.compiler.collections.EconomicMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 314
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList.list:Ljava/util/List;
            aload 1 /* item */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object item
        end local 0 // org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/graalvm/compiler/nodes/spi/SwitchFoldable$QuickQueryList<TT;>;
            0    2     1  item  TT;
    Signature: (TT;)Z
    MethodParameters:
      Name  Flags
      item  

  private void addUnique();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList this
        start local 1 // java.lang.Object item
         0: .line 321
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList.list:Ljava/util/List;
            aload 1 /* item */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 322
            return
        end local 1 // java.lang.Object item
        end local 0 // org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/graalvm/compiler/nodes/spi/SwitchFoldable$QuickQueryList<TT;>;
            0    2     1  item  TT;
    Signature: (TT;)V
    MethodParameters:
      Name  Flags
      item  

  private int size();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList this
         0: .line 325
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList.list:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            ireturn
        end local 0 // org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/nodes/spi/SwitchFoldable$QuickQueryList<TT;>;
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;
SourceFile: "SwitchFoldable.java"
NestHost: org.graalvm.compiler.nodes.spi.SwitchFoldable
InnerClasses:
  public final QuickQueryList = org.graalvm.compiler.nodes.spi.SwitchFoldable$QuickQueryList of org.graalvm.compiler.nodes.spi.SwitchFoldable