public final class org.apache.lucene.store.ByteArrayDataInput extends org.apache.lucene.store.DataInput
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.apache.lucene.store.ByteArrayDataInput
  super_class: org.apache.lucene.store.DataInput
{
  private byte[] bytes;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

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

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

  public void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.store.ByteArrayDataInput this
        start local 1 // byte[] bytes
         0: .line 34
            aload 0 /* this */
            invokespecial org.apache.lucene.store.DataInput.<init>:()V
         1: .line 35
            aload 0 /* this */
            aload 1 /* bytes */
            invokevirtual org.apache.lucene.store.ByteArrayDataInput.reset:([B)V
         2: .line 36
            return
        end local 1 // byte[] bytes
        end local 0 // org.apache.lucene.store.ByteArrayDataInput this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/apache/lucene/store/ByteArrayDataInput;
            0    3     1  bytes  [B
    MethodParameters:
       Name  Flags
      bytes  

  public void <init>(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.apache.lucene.store.ByteArrayDataInput this
        start local 1 // byte[] bytes
        start local 2 // int offset
        start local 3 // int len
         0: .line 38
            aload 0 /* this */
            invokespecial org.apache.lucene.store.DataInput.<init>:()V
         1: .line 39
            aload 0 /* this */
            aload 1 /* bytes */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual org.apache.lucene.store.ByteArrayDataInput.reset:([BII)V
         2: .line 40
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] bytes
        end local 0 // org.apache.lucene.store.ByteArrayDataInput this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/lucene/store/ByteArrayDataInput;
            0    3     1   bytes  [B
            0    3     2  offset  I
            0    3     3     len  I
    MethodParameters:
        Name  Flags
      bytes   
      offset  
      len     

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.store.ByteArrayDataInput this
         0: .line 42
            aload 0 /* this */
            invokespecial org.apache.lucene.store.DataInput.<init>:()V
         1: .line 43
            aload 0 /* this */
            getstatic org.apache.lucene.util.BytesRef.EMPTY_BYTES:[B
            invokevirtual org.apache.lucene.store.ByteArrayDataInput.reset:([B)V
         2: .line 44
            return
        end local 0 // org.apache.lucene.store.ByteArrayDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/lucene/store/ByteArrayDataInput;

  public void reset(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.lucene.store.ByteArrayDataInput this
        start local 1 // byte[] bytes
         0: .line 47
            aload 0 /* this */
            aload 1 /* bytes */
            iconst_0
            aload 1 /* bytes */
            arraylength
            invokevirtual org.apache.lucene.store.ByteArrayDataInput.reset:([BII)V
         1: .line 48
            return
        end local 1 // byte[] bytes
        end local 0 // org.apache.lucene.store.ByteArrayDataInput this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/apache/lucene/store/ByteArrayDataInput;
            0    2     1  bytes  [B
    MethodParameters:
       Name  Flags
      bytes  

  public void rewind();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.store.ByteArrayDataInput this
         0: .line 53
            aload 0 /* this */
            iconst_0
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
         1: .line 54
            return
        end local 0 // org.apache.lucene.store.ByteArrayDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/lucene/store/ByteArrayDataInput;

  public int getPosition();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.store.ByteArrayDataInput this
         0: .line 57
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            ireturn
        end local 0 // org.apache.lucene.store.ByteArrayDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/store/ByteArrayDataInput;

  public void setPosition(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.store.ByteArrayDataInput this
        start local 1 // int pos
         0: .line 61
            aload 0 /* this */
            iload 1 /* pos */
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
         1: .line 62
            return
        end local 1 // int pos
        end local 0 // org.apache.lucene.store.ByteArrayDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/lucene/store/ByteArrayDataInput;
            0    2     1   pos  I
    MethodParameters:
      Name  Flags
      pos   

  public void reset(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.apache.lucene.store.ByteArrayDataInput this
        start local 1 // byte[] bytes
        start local 2 // int offset
        start local 3 // int len
         0: .line 65
            aload 0 /* this */
            aload 1 /* bytes */
            putfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
         1: .line 66
            aload 0 /* this */
            iload 2 /* offset */
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
         2: .line 67
            aload 0 /* this */
            iload 2 /* offset */
            iload 3 /* len */
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.limit:I
         3: .line 68
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] bytes
        end local 0 // org.apache.lucene.store.ByteArrayDataInput this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/apache/lucene/store/ByteArrayDataInput;
            0    4     1   bytes  [B
            0    4     2  offset  I
            0    4     3     len  I
    MethodParameters:
        Name  Flags
      bytes   
      offset  
      len     

  public int length();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.store.ByteArrayDataInput this
         0: .line 71
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.limit:I
            ireturn
        end local 0 // org.apache.lucene.store.ByteArrayDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/store/ByteArrayDataInput;

  public boolean eof();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.store.ByteArrayDataInput this
         0: .line 75
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.limit:I
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.apache.lucene.store.ByteArrayDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/lucene/store/ByteArrayDataInput;

  public void skipBytes(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.apache.lucene.store.ByteArrayDataInput this
        start local 1 // long count
         0: .line 80
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            i2l
            lload 1 /* count */
            ladd
            l2i
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
         1: .line 81
            return
        end local 1 // long count
        end local 0 // org.apache.lucene.store.ByteArrayDataInput this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/apache/lucene/store/ByteArrayDataInput;
            0    2     1  count  J
    MethodParameters:
       Name  Flags
      count  

  public short readShort();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.apache.lucene.store.ByteArrayDataInput this
         0: .line 85
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            sipush 255
            iand
            bipush 8
            ishl
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            sipush 255
            iand
            ior
            i2s
            ireturn
        end local 0 // org.apache.lucene.store.ByteArrayDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/store/ByteArrayDataInput;

  public int readInt();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.apache.lucene.store.ByteArrayDataInput this
         0: .line 90
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            sipush 255
            iand
            bipush 24
            ishl
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            sipush 255
            iand
            bipush 16
            ishl
            ior
         1: .line 91
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            sipush 255
            iand
            bipush 8
            ishl
         2: .line 90
            ior
         3: .line 91
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            sipush 255
            iand
         4: .line 90
            ior
            ireturn
        end local 0 // org.apache.lucene.store.ByteArrayDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/lucene/store/ByteArrayDataInput;

  public long readLong();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // org.apache.lucene.store.ByteArrayDataInput this
         0: .line 96
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            sipush 255
            iand
            bipush 24
            ishl
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            sipush 255
            iand
            bipush 16
            ishl
            ior
         1: .line 97
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            sipush 255
            iand
            bipush 8
            ishl
         2: .line 96
            ior
         3: .line 97
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            sipush 255
            iand
         4: .line 96
            ior
            istore 1 /* i1 */
        start local 1 // int i1
         5: .line 98
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            sipush 255
            iand
            bipush 24
            ishl
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            sipush 255
            iand
            bipush 16
            ishl
            ior
         6: .line 99
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            sipush 255
            iand
            bipush 8
            ishl
         7: .line 98
            ior
         8: .line 99
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            sipush 255
            iand
         9: .line 98
            ior
            istore 2 /* i2 */
        start local 2 // int i2
        10: .line 100
            iload 1 /* i1 */
            i2l
            bipush 32
            lshl
            iload 2 /* i2 */
            i2l
            ldc 4294967295
            land
            lor
            lreturn
        end local 2 // int i2
        end local 1 // int i1
        end local 0 // org.apache.lucene.store.ByteArrayDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/apache/lucene/store/ByteArrayDataInput;
            5   11     1    i1  I
           10   11     2    i2  I

  public int readVInt();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // org.apache.lucene.store.ByteArrayDataInput this
         0: .line 105
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            istore 1 /* b */
        start local 1 // byte b
         1: .line 106
            iload 1 /* b */
            iflt 2
            iload 1 /* b */
            ireturn
         2: .line 107
      StackMap locals: int
      StackMap stack:
            iload 1 /* b */
            bipush 127
            iand
            istore 2 /* i */
        start local 2 // int i
         3: .line 108
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            istore 1 /* b */
         4: .line 109
            iload 2 /* i */
            iload 1 /* b */
            bipush 127
            iand
            bipush 7
            ishl
            ior
            istore 2 /* i */
         5: .line 110
            iload 1 /* b */
            iflt 6
            iload 2 /* i */
            ireturn
         6: .line 111
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            istore 1 /* b */
         7: .line 112
            iload 2 /* i */
            iload 1 /* b */
            bipush 127
            iand
            bipush 14
            ishl
            ior
            istore 2 /* i */
         8: .line 113
            iload 1 /* b */
            iflt 9
            iload 2 /* i */
            ireturn
         9: .line 114
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            istore 1 /* b */
        10: .line 115
            iload 2 /* i */
            iload 1 /* b */
            bipush 127
            iand
            bipush 21
            ishl
            ior
            istore 2 /* i */
        11: .line 116
            iload 1 /* b */
            iflt 12
            iload 2 /* i */
            ireturn
        12: .line 117
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            istore 1 /* b */
        13: .line 119
            iload 2 /* i */
            iload 1 /* b */
            bipush 15
            iand
            bipush 28
            ishl
            ior
            istore 2 /* i */
        14: .line 120
            iload 1 /* b */
            sipush 240
            iand
            ifne 15
            iload 2 /* i */
            ireturn
        15: .line 121
      StackMap locals:
      StackMap stack:
            new java.lang.RuntimeException
            dup
            ldc "Invalid vInt detected (too many bits)"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // int i
        end local 1 // byte b
        end local 0 // org.apache.lucene.store.ByteArrayDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Lorg/apache/lucene/store/ByteArrayDataInput;
            1   16     1     b  B
            3   16     2     i  I

  public long readVLong();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=1
        start local 0 // org.apache.lucene.store.ByteArrayDataInput this
         0: .line 126
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            istore 1 /* b */
        start local 1 // byte b
         1: .line 127
            iload 1 /* b */
            iflt 2
            iload 1 /* b */
            i2l
            lreturn
         2: .line 128
      StackMap locals: int
      StackMap stack:
            iload 1 /* b */
            i2l
            ldc 127
            land
            lstore 2 /* i */
        start local 2 // long i
         3: .line 129
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            istore 1 /* b */
         4: .line 130
            lload 2 /* i */
            iload 1 /* b */
            i2l
            ldc 127
            land
            bipush 7
            lshl
            lor
            lstore 2 /* i */
         5: .line 131
            iload 1 /* b */
            iflt 6
            lload 2 /* i */
            lreturn
         6: .line 132
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            istore 1 /* b */
         7: .line 133
            lload 2 /* i */
            iload 1 /* b */
            i2l
            ldc 127
            land
            bipush 14
            lshl
            lor
            lstore 2 /* i */
         8: .line 134
            iload 1 /* b */
            iflt 9
            lload 2 /* i */
            lreturn
         9: .line 135
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            istore 1 /* b */
        10: .line 136
            lload 2 /* i */
            iload 1 /* b */
            i2l
            ldc 127
            land
            bipush 21
            lshl
            lor
            lstore 2 /* i */
        11: .line 137
            iload 1 /* b */
            iflt 12
            lload 2 /* i */
            lreturn
        12: .line 138
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            istore 1 /* b */
        13: .line 139
            lload 2 /* i */
            iload 1 /* b */
            i2l
            ldc 127
            land
            bipush 28
            lshl
            lor
            lstore 2 /* i */
        14: .line 140
            iload 1 /* b */
            iflt 15
            lload 2 /* i */
            lreturn
        15: .line 141
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            istore 1 /* b */
        16: .line 142
            lload 2 /* i */
            iload 1 /* b */
            i2l
            ldc 127
            land
            bipush 35
            lshl
            lor
            lstore 2 /* i */
        17: .line 143
            iload 1 /* b */
            iflt 18
            lload 2 /* i */
            lreturn
        18: .line 144
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            istore 1 /* b */
        19: .line 145
            lload 2 /* i */
            iload 1 /* b */
            i2l
            ldc 127
            land
            bipush 42
            lshl
            lor
            lstore 2 /* i */
        20: .line 146
            iload 1 /* b */
            iflt 21
            lload 2 /* i */
            lreturn
        21: .line 147
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            istore 1 /* b */
        22: .line 148
            lload 2 /* i */
            iload 1 /* b */
            i2l
            ldc 127
            land
            bipush 49
            lshl
            lor
            lstore 2 /* i */
        23: .line 149
            iload 1 /* b */
            iflt 24
            lload 2 /* i */
            lreturn
        24: .line 150
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            istore 1 /* b */
        25: .line 151
            lload 2 /* i */
            iload 1 /* b */
            i2l
            ldc 127
            land
            bipush 56
            lshl
            lor
            lstore 2 /* i */
        26: .line 152
            iload 1 /* b */
            iflt 27
            lload 2 /* i */
            lreturn
        27: .line 153
      StackMap locals:
      StackMap stack:
            new java.lang.RuntimeException
            dup
            ldc "Invalid vLong detected (negative values disallowed)"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // long i
        end local 1 // byte b
        end local 0 // org.apache.lucene.store.ByteArrayDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   28     0  this  Lorg/apache/lucene/store/ByteArrayDataInput;
            1   28     1     b  B
            3   28     2     i  J

  public byte readByte();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.apache.lucene.store.ByteArrayDataInput this
         0: .line 159
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            baload
            ireturn
        end local 0 // org.apache.lucene.store.ByteArrayDataInput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/store/ByteArrayDataInput;

  public void readBytes(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.apache.lucene.store.ByteArrayDataInput this
        start local 1 // byte[] b
        start local 2 // int offset
        start local 3 // int len
         0: .line 165
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.bytes:[B
            aload 0 /* this */
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            aload 1 /* b */
            iload 2 /* offset */
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         1: .line 166
            aload 0 /* this */
            dup
            getfield org.apache.lucene.store.ByteArrayDataInput.pos:I
            iload 3 /* len */
            iadd
            putfield org.apache.lucene.store.ByteArrayDataInput.pos:I
         2: .line 167
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] b
        end local 0 // org.apache.lucene.store.ByteArrayDataInput this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/lucene/store/ByteArrayDataInput;
            0    3     1       b  [B
            0    3     2  offset  I
            0    3     3     len  I
    MethodParameters:
        Name  Flags
      b       
      offset  
      len     
}
SourceFile: "ByteArrayDataInput.java"