final class com.oracle.truffle.api.library.test.examples.ArrayStrategy3$SequenceArray
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.oracle.truffle.api.library.test.examples.ArrayStrategy3$SequenceArray
  super_class: java.lang.Object
{
  private final int start;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int stride;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int length;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(int, int, int);
    descriptor: (III)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // com.oracle.truffle.api.library.test.examples.ArrayStrategy3$SequenceArray this
        start local 1 // int start
        start local 2 // int stride
        start local 3 // int length
         0: .line 115
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 116
            aload 0 /* this */
            iload 1 /* start */
            putfield com.oracle.truffle.api.library.test.examples.ArrayStrategy3$SequenceArray.start:I
         2: .line 117
            aload 0 /* this */
            iload 2 /* stride */
            putfield com.oracle.truffle.api.library.test.examples.ArrayStrategy3$SequenceArray.stride:I
         3: .line 118
            aload 0 /* this */
            iload 3 /* length */
            putfield com.oracle.truffle.api.library.test.examples.ArrayStrategy3$SequenceArray.length:I
         4: .line 119
            return
        end local 3 // int length
        end local 2 // int stride
        end local 1 // int start
        end local 0 // com.oracle.truffle.api.library.test.examples.ArrayStrategy3$SequenceArray this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lcom/oracle/truffle/api/library/test/examples/ArrayStrategy3$SequenceArray;
            0    5     1   start  I
            0    5     2  stride  I
            0    5     3  length  I
    MethodParameters:
        Name  Flags
      start   
      stride  
      length  

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

  public int read(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.truffle.api.library.test.examples.ArrayStrategy3$SequenceArray this
        start local 1 // int index
         0: .line 128
            aload 0 /* this */
            getfield com.oracle.truffle.api.library.test.examples.ArrayStrategy3$SequenceArray.start:I
            aload 0 /* this */
            getfield com.oracle.truffle.api.library.test.examples.ArrayStrategy3$SequenceArray.stride:I
            iload 1 /* index */
            imul
            iadd
            ireturn
        end local 1 // int index
        end local 0 // com.oracle.truffle.api.library.test.examples.ArrayStrategy3$SequenceArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/oracle/truffle/api/library/test/examples/ArrayStrategy3$SequenceArray;
            0    1     1  index  I
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()
    MethodParameters:
       Name  Flags
      index  
}
SourceFile: "ArrayStrategy3.java"
NestHost: com.oracle.truffle.api.library.test.examples.ArrayStrategy3
InnerClasses:
  final SequenceArray = com.oracle.truffle.api.library.test.examples.ArrayStrategy3$SequenceArray of com.oracle.truffle.api.library.test.examples.ArrayStrategy3
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportLibrary(value = Lcom/oracle/truffle/api/library/test/examples/ArrayStrategy3$ArrayLibrary;)