final class com.oracle.truffle.api.exception.ExceptionAccessor$InteropList 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.api.exception.ExceptionAccessor$InteropList
  super_class: java.lang.Object
{
  private final java.lang.Object[] items;
    descriptor: [Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(java.lang.Object[]);
    descriptor: ([Ljava/lang/Object;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.api.exception.ExceptionAccessor$InteropList this
        start local 1 // java.lang.Object[] items
         0: .line 225
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 226
            aload 0 /* this */
            aload 1 /* items */
            putfield com.oracle.truffle.api.exception.ExceptionAccessor$InteropList.items:[Ljava/lang/Object;
         2: .line 227
            return
        end local 1 // java.lang.Object[] items
        end local 0 // com.oracle.truffle.api.exception.ExceptionAccessor$InteropList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/oracle/truffle/api/exception/ExceptionAccessor$InteropList;
            0    3     1  items  [Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      items  

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

  long getArraySize();
    descriptor: ()J
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.api.exception.ExceptionAccessor$InteropList this
         0: .line 237
            aload 0 /* this */
            getfield com.oracle.truffle.api.exception.ExceptionAccessor$InteropList.items:[Ljava/lang/Object;
            arraylength
            i2l
            lreturn
        end local 0 // com.oracle.truffle.api.exception.ExceptionAccessor$InteropList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/api/exception/ExceptionAccessor$InteropList;
    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.api.exception.ExceptionAccessor$InteropList this
        start local 1 // long index
         0: .line 242
            lload 1 /* index */
            lconst_0
            lcmp
            iflt 1
            lload 1 /* index */
            aload 0 /* this */
            getfield com.oracle.truffle.api.exception.ExceptionAccessor$InteropList.items:[Ljava/lang/Object;
            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.api.exception.ExceptionAccessor$InteropList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/oracle/truffle/api/exception/ExceptionAccessor$InteropList;
            0    2     1  index  J
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()
    MethodParameters:
       Name  Flags
      index  

  java.lang.Object readArrayElement(long);
    descriptor: (J)Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.oracle.truffle.api.exception.ExceptionAccessor$InteropList this
        start local 1 // long index
         0: .line 247
            lload 1 /* index */
            lconst_0
            lcmp
            iflt 1
            lload 1 /* index */
            aload 0 /* this */
            getfield com.oracle.truffle.api.exception.ExceptionAccessor$InteropList.items:[Ljava/lang/Object;
            arraylength
            i2l
            lcmp
            iflt 2
         1: .line 248
      StackMap locals:
      StackMap stack:
            lload 1 /* index */
            invokestatic com.oracle.truffle.api.interop.InvalidArrayIndexException.create:(J)Lcom/oracle/truffle/api/interop/InvalidArrayIndexException;
            athrow
         2: .line 250
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.api.exception.ExceptionAccessor$InteropList.items:[Ljava/lang/Object;
            lload 1 /* index */
            l2i
            aaload
            areturn
        end local 1 // long index
        end local 0 // com.oracle.truffle.api.exception.ExceptionAccessor$InteropList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/oracle/truffle/api/exception/ExceptionAccessor$InteropList;
            0    3     1  index  J
    Exceptions:
      throws com.oracle.truffle.api.interop.InvalidArrayIndexException
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()
    MethodParameters:
       Name  Flags
      index  
}
SourceFile: "ExceptionAccessor.java"
NestHost: com.oracle.truffle.api.exception.ExceptionAccessor
InnerClasses:
  final InteropList = com.oracle.truffle.api.exception.ExceptionAccessor$InteropList of com.oracle.truffle.api.exception.ExceptionAccessor
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportLibrary(value = Lcom/oracle/truffle/api/interop/InteropLibrary;)