class com.oracle.truffle.tools.chromeinspector.test.NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names extends com.oracle.truffle.api.test.polyglot.ProxyInteropObject
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.oracle.truffle.tools.chromeinspector.test.NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names
  super_class: com.oracle.truffle.api.test.polyglot.ProxyInteropObject
{
  private final java.lang.String[] names;
    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.tools.chromeinspector.test.NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names this
        start local 1 // java.lang.String[] names
         0: .line 268
            aload 0 /* this */
            invokespecial com.oracle.truffle.api.test.polyglot.ProxyInteropObject.<init>:()V
         1: .line 269
            aload 0 /* this */
            aload 1 /* names */
            putfield com.oracle.truffle.tools.chromeinspector.test.NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names.names:[Ljava/lang/String;
         2: .line 270
            return
        end local 1 // java.lang.String[] names
        end local 0 // com.oracle.truffle.tools.chromeinspector.test.NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/oracle/truffle/tools/chromeinspector/test/NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names;
            0    3     1  names  [Ljava/lang/String;
    MethodParameters:
       Name  Flags
      names  

  protected boolean hasArrayElements();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.tools.chromeinspector.test.NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names this
         0: .line 274
            iconst_1
            ireturn
        end local 0 // com.oracle.truffle.tools.chromeinspector.test.NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/tools/chromeinspector/test/NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names;

  protected long getArraySize();
    descriptor: ()J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.tools.chromeinspector.test.NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names this
         0: .line 279
            aload 0 /* this */
            getfield com.oracle.truffle.tools.chromeinspector.test.NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names.names:[Ljava/lang/String;
            arraylength
            i2l
            lreturn
        end local 0 // com.oracle.truffle.tools.chromeinspector.test.NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/tools/chromeinspector/test/NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names;
    Exceptions:
      throws com.oracle.truffle.api.interop.UnsupportedMessageException

  protected boolean isArrayElementReadable(long);
    descriptor: (J)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.oracle.truffle.tools.chromeinspector.test.NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names this
        start local 1 // long index
         0: .line 284
            lload 1 /* index */
            lconst_0
            lcmp
            iflt 1
            lload 1 /* index */
            aload 0 /* this */
            getfield com.oracle.truffle.tools.chromeinspector.test.NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names.names:[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.tools.chromeinspector.test.NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/oracle/truffle/tools/chromeinspector/test/NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names;
            0    2     1  index  J
    MethodParameters:
       Name  Flags
      index  

  protected java.lang.Object readArrayElement(long);
    descriptor: (J)Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.oracle.truffle.tools.chromeinspector.test.NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names this
        start local 1 // long index
         0: .line 289
            lload 1 /* index */
            lconst_0
            lcmp
            iflt 2
            lload 1 /* index */
            aload 0 /* this */
            getfield com.oracle.truffle.tools.chromeinspector.test.NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names.names:[Ljava/lang/String;
            arraylength
            i2l
            lcmp
            ifge 2
         1: .line 290
            aload 0 /* this */
            getfield com.oracle.truffle.tools.chromeinspector.test.NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names.names:[Ljava/lang/String;
            lload 1 /* index */
            l2i
            aaload
            areturn
         2: .line 292
      StackMap locals:
      StackMap stack:
            invokestatic com.oracle.truffle.api.CompilerDirectives.transferToInterpreter:()V
         3: .line 293
            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.tools.chromeinspector.test.NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/oracle/truffle/tools/chromeinspector/test/NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names;
            0    4     1  index  J
    Exceptions:
      throws com.oracle.truffle.api.interop.UnsupportedMessageException, com.oracle.truffle.api.interop.InvalidArrayIndexException
    MethodParameters:
       Name  Flags
      index  
}
SourceFile: "NotReadableValuesLegacyTest.java"
NestHost: com.oracle.truffle.tools.chromeinspector.test.NotReadableValuesLegacyTest
InnerClasses:
  NotReadableValuesLanguage = com.oracle.truffle.tools.chromeinspector.test.NotReadableValuesLegacyTest$NotReadableValuesLanguage of com.oracle.truffle.tools.chromeinspector.test.NotReadableValuesLegacyTest
  private Names = com.oracle.truffle.tools.chromeinspector.test.NotReadableValuesLegacyTest$NotReadableValuesLanguage$Names of com.oracle.truffle.tools.chromeinspector.test.NotReadableValuesLegacyTest$NotReadableValuesLanguage