public abstract class com.oracle.truffle.object.CoreLocations$ArrayLocation extends com.oracle.truffle.object.CoreLocation
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.oracle.truffle.object.CoreLocations$ArrayLocation
  super_class: com.oracle.truffle.object.CoreLocation
{
  protected final int index;
    descriptor: I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final com.oracle.truffle.object.CoreLocation arrayLocation;
    descriptor: Lcom/oracle/truffle/object/CoreLocation;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected void <init>(int, com.oracle.truffle.object.CoreLocation);
    descriptor: (ILcom/oracle/truffle/object/CoreLocation;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.oracle.truffle.object.CoreLocations$ArrayLocation this
        start local 1 // int index
        start local 2 // com.oracle.truffle.object.CoreLocation arrayLocation
         0: .line 312
            aload 0 /* this */
            invokespecial com.oracle.truffle.object.CoreLocation.<init>:()V
         1: .line 313
            aload 0 /* this */
            iload 1 /* index */
            putfield com.oracle.truffle.object.CoreLocations$ArrayLocation.index:I
         2: .line 314
            aload 0 /* this */
            aload 2 /* arrayLocation */
            putfield com.oracle.truffle.object.CoreLocations$ArrayLocation.arrayLocation:Lcom/oracle/truffle/object/CoreLocation;
         3: .line 315
            return
        end local 2 // com.oracle.truffle.object.CoreLocation arrayLocation
        end local 1 // int index
        end local 0 // com.oracle.truffle.object.CoreLocations$ArrayLocation this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lcom/oracle/truffle/object/CoreLocations$ArrayLocation;
            0    4     1          index  I
            0    4     2  arrayLocation  Lcom/oracle/truffle/object/CoreLocation;
    MethodParameters:
               Name  Flags
      index          
      arrayLocation  

  protected final java.lang.Object getArray(com.oracle.truffle.api.object.DynamicObject, boolean);
    descriptor: (Lcom/oracle/truffle/api/object/DynamicObject;Z)Ljava/lang/Object;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.truffle.object.CoreLocations$ArrayLocation this
        start local 1 // com.oracle.truffle.api.object.DynamicObject store
        start local 2 // boolean condition
         0: .line 319
            aload 0 /* this */
            getfield com.oracle.truffle.object.CoreLocations$ArrayLocation.arrayLocation:Lcom/oracle/truffle/object/CoreLocation;
            aload 1 /* store */
            iload 2 /* condition */
            invokevirtual com.oracle.truffle.object.CoreLocation.get:(Lcom/oracle/truffle/api/object/DynamicObject;Z)Ljava/lang/Object;
            areturn
        end local 2 // boolean condition
        end local 1 // com.oracle.truffle.api.object.DynamicObject store
        end local 0 // com.oracle.truffle.object.CoreLocations$ArrayLocation this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/oracle/truffle/object/CoreLocations$ArrayLocation;
            0    1     1      store  Lcom/oracle/truffle/api/object/DynamicObject;
            0    1     2  condition  Z
    MethodParameters:
           Name  Flags
      store      
      condition  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.oracle.truffle.object.CoreLocations$ArrayLocation this
         0: .line 325
            aload 0 /* this */
            invokespecial com.oracle.truffle.object.CoreLocation.hashCode:()I
            istore 1 /* result */
        start local 1 // int result
         1: .line 326
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield com.oracle.truffle.object.CoreLocations$ArrayLocation.index:I
            iadd
            istore 1 /* result */
         2: .line 327
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // com.oracle.truffle.object.CoreLocations$ArrayLocation this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lcom/oracle/truffle/object/CoreLocations$ArrayLocation;
            1    3     1  result  I

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.oracle.truffle.object.CoreLocations$ArrayLocation this
        start local 1 // java.lang.Object obj
         0: .line 332
            aload 0 /* this */
            aload 1 /* obj */
            invokespecial com.oracle.truffle.object.CoreLocation.equals:(Ljava/lang/Object;)Z
            ifne 2
         1: .line 333
            iconst_0
            ireturn
         2: .line 335
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast com.oracle.truffle.object.CoreLocations$ArrayLocation
            astore 2 /* other */
        start local 2 // com.oracle.truffle.object.CoreLocations$ArrayLocation other
         3: .line 336
            aload 0 /* this */
            getfield com.oracle.truffle.object.CoreLocations$ArrayLocation.index:I
            aload 2 /* other */
            getfield com.oracle.truffle.object.CoreLocations$ArrayLocation.index:I
            if_icmpeq 5
         4: .line 337
            iconst_0
            ireturn
         5: .line 339
      StackMap locals: com.oracle.truffle.object.CoreLocations$ArrayLocation
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // com.oracle.truffle.object.CoreLocations$ArrayLocation other
        end local 1 // java.lang.Object obj
        end local 0 // com.oracle.truffle.object.CoreLocations$ArrayLocation this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lcom/oracle/truffle/object/CoreLocations$ArrayLocation;
            0    6     1    obj  Ljava/lang/Object;
            3    6     2  other  Lcom/oracle/truffle/object/CoreLocations$ArrayLocation;
    MethodParameters:
      Name  Flags
      obj   

  public final int getIndex();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.object.CoreLocations$ArrayLocation this
         0: .line 343
            aload 0 /* this */
            getfield com.oracle.truffle.object.CoreLocations$ArrayLocation.index:I
            ireturn
        end local 0 // com.oracle.truffle.object.CoreLocations$ArrayLocation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/object/CoreLocations$ArrayLocation;

  public java.lang.String getWhereString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.object.CoreLocations$ArrayLocation this
         0: .line 348
            new java.lang.StringBuilder
            dup
            ldc "["
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.oracle.truffle.object.CoreLocations$ArrayLocation.index: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 // com.oracle.truffle.object.CoreLocations$ArrayLocation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/object/CoreLocations$ArrayLocation;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial com.oracle.truffle.object.CoreLocation.toString:()Ljava/lang/String;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "CoreLocations.java"
NestHost: com.oracle.truffle.object.CoreLocations
InnerClasses:
  public abstract ArrayLocation = com.oracle.truffle.object.CoreLocations$ArrayLocation of com.oracle.truffle.object.CoreLocations