final class org.graalvm.polyglot.io.ByteArraySequence implements org.graalvm.polyglot.io.ByteSequence
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.graalvm.polyglot.io.ByteArraySequence
  super_class: java.lang.Object
{
  private final byte[] buffer;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

  private int hash;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 48
            ldc Lorg/graalvm/polyglot/io/ByteArraySequence;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.graalvm.polyglot.io.ByteArraySequence.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.graalvm.polyglot.io.ByteArraySequence this
        start local 1 // byte[] buffer
        start local 2 // int start
        start local 3 // int length
         0: .line 57
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 58
            getstatic org.graalvm.polyglot.io.ByteArraySequence.$assertionsDisabled:Z
            ifne 2
            aload 1 /* buffer */
            arraylength
            iload 2 /* start */
            iload 3 /* length */
            iadd
            if_icmpge 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 59
      StackMap locals: org.graalvm.polyglot.io.ByteArraySequence byte[] int int
      StackMap stack:
            getstatic org.graalvm.polyglot.io.ByteArraySequence.$assertionsDisabled:Z
            ifne 3
            iload 2 /* start */
            ifge 3
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         3: .line 60
      StackMap locals:
      StackMap stack:
            getstatic org.graalvm.polyglot.io.ByteArraySequence.$assertionsDisabled:Z
            ifne 4
            iload 3 /* length */
            ifge 4
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 61
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buffer */
            putfield org.graalvm.polyglot.io.ByteArraySequence.buffer:[B
         5: .line 62
            aload 0 /* this */
            iload 2 /* start */
            putfield org.graalvm.polyglot.io.ByteArraySequence.start:I
         6: .line 63
            aload 0 /* this */
            iload 3 /* length */
            putfield org.graalvm.polyglot.io.ByteArraySequence.length:I
         7: .line 64
            return
        end local 3 // int length
        end local 2 // int start
        end local 1 // byte[] buffer
        end local 0 // org.graalvm.polyglot.io.ByteArraySequence this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/graalvm/polyglot/io/ByteArraySequence;
            0    8     1  buffer  [B
            0    8     2   start  I
            0    8     3  length  I
    MethodParameters:
        Name  Flags
      buffer  
      start   
      length  

  public int length();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.polyglot.io.ByteArraySequence this
         0: .line 67
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.length:I
            ireturn
        end local 0 // org.graalvm.polyglot.io.ByteArraySequence this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/polyglot/io/ByteArraySequence;

  public byte byteAt(int);
    descriptor: (I)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.graalvm.polyglot.io.ByteArraySequence this
        start local 1 // int index
         0: .line 71
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.start:I
            iload 1 /* index */
            iadd
            istore 2 /* resolvedIndex */
        start local 2 // int resolvedIndex
         1: .line 72
            iload 2 /* resolvedIndex */
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.start:I
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.length:I
            iadd
            if_icmplt 3
         2: .line 73
            new java.lang.IndexOutOfBoundsException
            dup
            iload 1 /* index */
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 75
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.buffer:[B
            iload 2 /* resolvedIndex */
            baload
            ireturn
        end local 2 // int resolvedIndex
        end local 1 // int index
        end local 0 // org.graalvm.polyglot.io.ByteArraySequence this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lorg/graalvm/polyglot/io/ByteArraySequence;
            0    4     1          index  I
            1    4     2  resolvedIndex  I
    MethodParameters:
       Name  Flags
      index  

  public byte[] toByteArray();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.graalvm.polyglot.io.ByteArraySequence this
         0: .line 79
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.buffer:[B
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.start:I
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.start:I
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.length:I
            iadd
            invokestatic java.util.Arrays.copyOfRange:([BII)[B
            areturn
        end local 0 // org.graalvm.polyglot.io.ByteArraySequence this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/polyglot/io/ByteArraySequence;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // org.graalvm.polyglot.io.ByteArraySequence this
        start local 1 // java.lang.Object obj
         0: .line 84
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 85
            iconst_1
            ireturn
         2: .line 86
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof org.graalvm.polyglot.io.ByteArraySequence
            ifeq 21
         3: .line 87
            aload 1 /* obj */
            checkcast org.graalvm.polyglot.io.ByteArraySequence
            astore 2 /* other */
        start local 2 // org.graalvm.polyglot.io.ByteArraySequence other
         4: .line 88
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.buffer:[B
            aload 2 /* other */
            getfield org.graalvm.polyglot.io.ByteArraySequence.buffer:[B
            if_acmpne 7
         5: .line 89
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.start:I
            aload 2 /* other */
            getfield org.graalvm.polyglot.io.ByteArraySequence.start:I
            if_icmpne 6
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.length:I
            aload 2 /* other */
            getfield org.graalvm.polyglot.io.ByteArraySequence.length:I
            if_icmpne 6
            iconst_1
            ireturn
      StackMap locals: org.graalvm.polyglot.io.ByteArraySequence
      StackMap stack:
         6: iconst_0
            ireturn
         7: .line 91
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.length:I
            aload 2 /* other */
            getfield org.graalvm.polyglot.io.ByteArraySequence.length:I
            if_icmpeq 9
         8: .line 92
            iconst_0
            ireturn
         9: .line 94
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.hash:I
            istore 3 /* thisHash */
        start local 3 // int thisHash
        10: .line 95
            aload 2 /* other */
            getfield org.graalvm.polyglot.io.ByteArraySequence.hash:I
            istore 4 /* otherHash */
        start local 4 // int otherHash
        11: .line 96
            iload 3 /* thisHash */
            ifeq 13
            iload 4 /* otherHash */
            ifeq 13
            iload 3 /* thisHash */
            iload 4 /* otherHash */
            if_icmpeq 13
        12: .line 98
            iconst_0
            ireturn
        13: .line 100
      StackMap locals: int int
      StackMap stack:
            aload 2 /* other */
            getfield org.graalvm.polyglot.io.ByteArraySequence.start:I
            istore 5 /* otherStart */
        start local 5 // int otherStart
        14: .line 101
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        15: goto 19
        16: .line 102
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.buffer:[B
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.start:I
            iload 6 /* i */
            iadd
            baload
            aload 2 /* other */
            getfield org.graalvm.polyglot.io.ByteArraySequence.buffer:[B
            iload 5 /* otherStart */
            iload 6 /* i */
            iadd
            baload
            if_icmpeq 18
        17: .line 103
            iconst_0
            ireturn
        18: .line 101
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 6 /* i */
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.length:I
            if_icmplt 16
        end local 6 // int i
        20: .line 106
            iconst_1
            ireturn
        end local 5 // int otherStart
        end local 4 // int otherHash
        end local 3 // int thisHash
        end local 2 // org.graalvm.polyglot.io.ByteArraySequence other
        21: .line 107
      StackMap locals: org.graalvm.polyglot.io.ByteArraySequence java.lang.Object
      StackMap stack:
            aload 1 /* obj */
            instanceof org.graalvm.polyglot.io.ByteSequence
            ifeq 32
        22: .line 108
            aload 1 /* obj */
            checkcast org.graalvm.polyglot.io.ByteSequence
            astore 2 /* other */
        start local 2 // org.graalvm.polyglot.io.ByteSequence other
        23: .line 109
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.length:I
            aload 2 /* other */
            invokeinterface org.graalvm.polyglot.io.ByteSequence.length:()I
            if_icmpeq 25
        24: .line 110
            iconst_0
            ireturn
        25: .line 112
      StackMap locals: org.graalvm.polyglot.io.ByteSequence
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        26: goto 30
        27: .line 113
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.buffer:[B
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.start:I
            iload 3 /* i */
            iadd
            baload
            aload 2 /* other */
            iload 3 /* i */
            invokeinterface org.graalvm.polyglot.io.ByteSequence.byteAt:(I)B
            if_icmpeq 29
        28: .line 114
            iconst_0
            ireturn
        29: .line 112
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        30: iload 3 /* i */
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.length:I
            if_icmplt 27
        end local 3 // int i
        31: .line 117
            iconst_1
            ireturn
        end local 2 // org.graalvm.polyglot.io.ByteSequence other
        32: .line 119
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // org.graalvm.polyglot.io.ByteArraySequence this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   33     0        this  Lorg/graalvm/polyglot/io/ByteArraySequence;
            0   33     1         obj  Ljava/lang/Object;
            4   21     2       other  Lorg/graalvm/polyglot/io/ByteArraySequence;
           10   21     3    thisHash  I
           11   21     4   otherHash  I
           14   21     5  otherStart  I
           15   20     6           i  I
           23   32     2       other  Lorg/graalvm/polyglot/io/ByteSequence;
           26   31     3           i  I
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=1
        start local 0 // org.graalvm.polyglot.io.ByteArraySequence this
         0: .line 124
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.hash:I
            istore 1 /* h */
        start local 1 // int h
         1: .line 125
            iload 1 /* h */
            ifne 18
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.length:I
            ifle 18
         2: .line 126
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.start:I
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.length:I
            iadd
            istore 2 /* end */
        start local 2 // int end
         3: .line 127
            iconst_1
            istore 1 /* h */
         4: .line 128
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.start:I
            istore 3 /* i */
        start local 3 // int i
         5: .line 129
            goto 12
         6: .line 130
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.buffer:[B
            iload 3 /* i */
            iconst_0
            iadd
            baload
            sipush 255
            iand
            istore 4 /* h0 */
        start local 4 // int h0
         7: .line 131
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.buffer:[B
            iload 3 /* i */
            iconst_1
            iadd
            baload
            ldc 65280
            iand
            istore 5 /* h1 */
        start local 5 // int h1
         8: .line 132
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.buffer:[B
            iload 3 /* i */
            iconst_2
            iadd
            baload
            ldc 16711680
            iand
            istore 6 /* h2 */
        start local 6 // int h2
         9: .line 133
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.buffer:[B
            iload 3 /* i */
            iconst_3
            iadd
            baload
            ldc -16777216
            iand
            istore 7 /* h3 */
        start local 7 // int h3
        10: .line 134
            bipush 31
            iload 1 /* h */
            imul
            iload 4 /* h0 */
            iload 5 /* h1 */
            ior
            iload 6 /* h2 */
            ior
            iload 7 /* h3 */
            ior
            iadd
            istore 1 /* h */
        end local 7 // int h3
        end local 6 // int h2
        end local 5 // int h1
        end local 4 // int h0
        11: .line 129
            iinc 3 /* i */ 4
      StackMap locals:
      StackMap stack:
        12: iload 3 /* i */
            iconst_3
            iadd
            iload 2 /* end */
            if_icmplt 6
        13: .line 136
            goto 16
        14: .line 137
      StackMap locals:
      StackMap stack:
            bipush 31
            iload 1 /* h */
            imul
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.buffer:[B
            iload 3 /* i */
            baload
            iadd
            istore 1 /* h */
        15: .line 136
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 3 /* i */
            iload 2 /* end */
            if_icmplt 14
        17: .line 139
            aload 0 /* this */
            iload 1 /* h */
            putfield org.graalvm.polyglot.io.ByteArraySequence.hash:I
        end local 3 // int i
        end local 2 // int end
        18: .line 141
      StackMap locals:
      StackMap stack:
            iload 1 /* h */
            ireturn
        end local 1 // int h
        end local 0 // org.graalvm.polyglot.io.ByteArraySequence this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   19     0  this  Lorg/graalvm/polyglot/io/ByteArraySequence;
            1   19     1     h  I
            3   18     2   end  I
            5   18     3     i  I
            7   11     4    h0  I
            8   11     5    h1  I
            9   11     6    h2  I
           10   11     7    h3  I

  public org.graalvm.polyglot.io.ByteSequence subSequence(int, int);
    descriptor: (II)Lorg/graalvm/polyglot/io/ByteSequence;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.graalvm.polyglot.io.ByteArraySequence this
        start local 1 // int startIndex
        start local 2 // int endIndex
         0: .line 145
            iload 2 /* endIndex */
            iload 1 /* startIndex */
            isub
            istore 3 /* l */
        start local 3 // int l
         1: .line 146
            iload 3 /* l */
            ifge 3
         2: .line 147
            new java.lang.IndexOutOfBoundsException
            dup
            iload 3 /* l */
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 149
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.start:I
            iload 1 /* startIndex */
            iadd
            istore 4 /* realStartIndex */
        start local 4 // int realStartIndex
         4: .line 150
            iload 4 /* realStartIndex */
            ifge 6
         5: .line 151
            new java.lang.IndexOutOfBoundsException
            dup
            iload 1 /* startIndex */
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 153
      StackMap locals: int
      StackMap stack:
            iload 2 /* endIndex */
            aload 0 /* this */
            invokevirtual org.graalvm.polyglot.io.ByteArraySequence.length:()I
            if_icmple 8
         7: .line 154
            new java.lang.IndexOutOfBoundsException
            dup
            iload 4 /* realStartIndex */
            iload 3 /* l */
            iadd
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 156
      StackMap locals:
      StackMap stack:
            new org.graalvm.polyglot.io.ByteArraySequence
            dup
            aload 0 /* this */
            getfield org.graalvm.polyglot.io.ByteArraySequence.buffer:[B
            iload 4 /* realStartIndex */
            iload 3 /* l */
            invokespecial org.graalvm.polyglot.io.ByteArraySequence.<init>:([BII)V
            areturn
        end local 4 // int realStartIndex
        end local 3 // int l
        end local 2 // int endIndex
        end local 1 // int startIndex
        end local 0 // org.graalvm.polyglot.io.ByteArraySequence this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    9     0            this  Lorg/graalvm/polyglot/io/ByteArraySequence;
            0    9     1      startIndex  I
            0    9     2        endIndex  I
            1    9     3               l  I
            4    9     4  realStartIndex  I
    MethodParameters:
            Name  Flags
      startIndex  
      endIndex    
}
SourceFile: "ByteArraySequence.java"