class com.oracle.truffle.api.test.polyglot.ValueHostInteropTest$ListArray implements com.oracle.truffle.api.interop.TruffleObject
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.oracle.truffle.api.test.polyglot.ValueHostInteropTest$ListArray
  super_class: java.lang.Object
{
  private final java.util.List<java.lang.String> array;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Ljava/lang/String;>;

  void <init>(java.util.List<java.lang.String>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.api.test.polyglot.ValueHostInteropTest$ListArray this
        start local 1 // java.util.List array
         0: .line 882
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 883
            aload 0 /* this */
            aload 1 /* array */
            putfield com.oracle.truffle.api.test.polyglot.ValueHostInteropTest$ListArray.array:Ljava/util/List;
         2: .line 884
            return
        end local 1 // java.util.List array
        end local 0 // com.oracle.truffle.api.test.polyglot.ValueHostInteropTest$ListArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/oracle/truffle/api/test/polyglot/ValueHostInteropTest$ListArray;
            0    3     1  array  Ljava/util/List<Ljava/lang/String;>;
    Signature: (Ljava/util/List<Ljava/lang/String;>;)V
    MethodParameters:
       Name  Flags
      array  

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

  final java.lang.Object readArrayElement(long);
    descriptor: (J)Ljava/lang/Object;
    flags: (0x0010) ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.oracle.truffle.api.test.polyglot.ValueHostInteropTest$ListArray this
        start local 1 // long index
         0: .line 894
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.ValueHostInteropTest$ListArray.array:Ljava/util/List;
            lload 1 /* index */
            l2i
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            areturn
        end local 1 // long index
        end local 0 // com.oracle.truffle.api.test.polyglot.ValueHostInteropTest$ListArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/oracle/truffle/api/test/polyglot/ValueHostInteropTest$ListArray;
            0    1     1  index  J
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
       Name  Flags
      index  

  final void removeArrayElement(long);
    descriptor: (J)V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.oracle.truffle.api.test.polyglot.ValueHostInteropTest$ListArray this
        start local 1 // long index
         0: .line 900
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.ValueHostInteropTest$ListArray.array:Ljava/util/List;
            lload 1 /* index */
            l2i
            invokeinterface java.util.List.remove:(I)Ljava/lang/Object;
            pop
         1: .line 901
            return
        end local 1 // long index
        end local 0 // com.oracle.truffle.api.test.polyglot.ValueHostInteropTest$ListArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/oracle/truffle/api/test/polyglot/ValueHostInteropTest$ListArray;
            0    2     1  index  J
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
       Name  Flags
      index  

  final long getArraySize();
    descriptor: ()J
    flags: (0x0010) ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.api.test.polyglot.ValueHostInteropTest$ListArray this
         0: .line 906
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.ValueHostInteropTest$ListArray.array:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            i2l
            lreturn
        end local 0 // com.oracle.truffle.api.test.polyglot.ValueHostInteropTest$ListArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/api/test/polyglot/ValueHostInteropTest$ListArray;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()

  final boolean isArrayElementExisting(long);
    descriptor: (J)Z
    flags: (0x0010) ACC_FINAL
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.oracle.truffle.api.test.polyglot.ValueHostInteropTest$ListArray this
        start local 1 // long index
         0: .line 913
            lload 1 /* index */
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.ValueHostInteropTest$ListArray.array:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            i2l
            lcmp
            ifge 1
            lload 1 /* index */
            lconst_0
            lcmp
            iflt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // long index
        end local 0 // com.oracle.truffle.api.test.polyglot.ValueHostInteropTest$ListArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/oracle/truffle/api/test/polyglot/ValueHostInteropTest$ListArray;
            0    2     1  index  J
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage$Repeat(value = {com.oracle.truffle.api.library.ExportMessage(name = "isArrayElementReadable"), com.oracle.truffle.api.library.ExportMessage(name = "isArrayElementRemovable")})
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
       Name  Flags
      index  
}
SourceFile: "ValueHostInteropTest.java"
NestHost: com.oracle.truffle.api.test.polyglot.ValueHostInteropTest
InnerClasses:
  public abstract TruffleBoundary = com.oracle.truffle.api.CompilerDirectives$TruffleBoundary of com.oracle.truffle.api.CompilerDirectives
  public abstract Repeat = com.oracle.truffle.api.library.ExportMessage$Repeat of com.oracle.truffle.api.library.ExportMessage
  ListArray = com.oracle.truffle.api.test.polyglot.ValueHostInteropTest$ListArray of com.oracle.truffle.api.test.polyglot.ValueHostInteropTest
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportLibrary(value = Lcom/oracle/truffle/api/interop/InteropLibrary;)