final class com.oracle.truffle.sl.test.SLInstrumentTest$KeysArray implements com.oracle.truffle.api.interop.TruffleObject
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.oracle.truffle.sl.test.SLInstrumentTest$KeysArray
  super_class: java.lang.Object
{
  private final java.lang.String[] keys;
    descriptor: [Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(java.lang.String[]);
    descriptor: ([Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.sl.test.SLInstrumentTest$KeysArray this
        start local 1 // java.lang.String[] keys
         0: .line 877
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 878
            aload 0 /* this */
            aload 1 /* keys */
            putfield com.oracle.truffle.sl.test.SLInstrumentTest$KeysArray.keys:[Ljava/lang/String;
         2: .line 879
            return
        end local 1 // java.lang.String[] keys
        end local 0 // com.oracle.truffle.sl.test.SLInstrumentTest$KeysArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/sl/test/SLInstrumentTest$KeysArray;
            0    3     1  keys  [Ljava/lang/String;
    MethodParameters:
      Name  Flags
      keys  

  boolean hasArrayElements();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.sl.test.SLInstrumentTest$KeysArray this
         0: .line 884
            iconst_1
            ireturn
        end local 0 // com.oracle.truffle.sl.test.SLInstrumentTest$KeysArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/sl/test/SLInstrumentTest$KeysArray;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()

  boolean isArrayElementReadable(long);
    descriptor: (J)Z
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.oracle.truffle.sl.test.SLInstrumentTest$KeysArray this
        start local 1 // long index
         0: .line 889
            lload 1 /* index */
            lconst_0
            lcmp
            iflt 1
            lload 1 /* index */
            aload 0 /* this */
            getfield com.oracle.truffle.sl.test.SLInstrumentTest$KeysArray.keys:[Ljava/lang/String;
            arraylength
            i2l
            lcmp
            ifge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // long index
        end local 0 // com.oracle.truffle.sl.test.SLInstrumentTest$KeysArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/oracle/truffle/sl/test/SLInstrumentTest$KeysArray;
            0    2     1  index  J
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()
    MethodParameters:
       Name  Flags
      index  

  long getArraySize();
    descriptor: ()J
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.sl.test.SLInstrumentTest$KeysArray this
         0: .line 894
            aload 0 /* this */
            getfield com.oracle.truffle.sl.test.SLInstrumentTest$KeysArray.keys:[Ljava/lang/String;
            arraylength
            i2l
            lreturn
        end local 0 // com.oracle.truffle.sl.test.SLInstrumentTest$KeysArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/sl/test/SLInstrumentTest$KeysArray;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()

  java.lang.Object readArrayElement(long);
    descriptor: (J)Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.oracle.truffle.sl.test.SLInstrumentTest$KeysArray this
        start local 1 // long index
         0: .line 900
            aload 0 /* this */
            getfield com.oracle.truffle.sl.test.SLInstrumentTest$KeysArray.keys:[Ljava/lang/String;
            lload 1 /* index */
            l2i
            aaload
         1: areturn
         2: .line 901
      StackMap locals:
      StackMap stack: java.lang.IndexOutOfBoundsException
            pop
         3: .line 902
            invokestatic com.oracle.truffle.api.CompilerDirectives.transferToInterpreter:()V
         4: .line 903
            lload 1 /* index */
            invokestatic com.oracle.truffle.api.interop.InvalidArrayIndexException.create:(J)Lcom/oracle/truffle/api/interop/InvalidArrayIndexException;
            athrow
        end local 1 // long index
        end local 0 // com.oracle.truffle.sl.test.SLInstrumentTest$KeysArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lcom/oracle/truffle/sl/test/SLInstrumentTest$KeysArray;
            0    5     1  index  J
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.IndexOutOfBoundsException
    Exceptions:
      throws com.oracle.truffle.api.interop.InvalidArrayIndexException
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()
    MethodParameters:
       Name  Flags
      index  
}
SourceFile: "SLInstrumentTest.java"
NestHost: com.oracle.truffle.sl.test.SLInstrumentTest
InnerClasses:
  final KeysArray = com.oracle.truffle.sl.test.SLInstrumentTest$KeysArray of com.oracle.truffle.sl.test.SLInstrumentTest
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportLibrary(value = Lcom/oracle/truffle/api/interop/InteropLibrary;)