public class com.oracle.js.parser.TokenStream
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.js.parser.TokenStream
  super_class: java.lang.Object
{
  private static final int INITIAL_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 256

  private long[] buffer;
    descriptor: [J
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.js.parser.TokenStream this
         0: .line 69
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 70
            aload 0 /* this */
            sipush 256
            newarray 11
            putfield com.oracle.js.parser.TokenStream.buffer:[J
         2: .line 71
            aload 0 /* this */
            iconst_0
            putfield com.oracle.js.parser.TokenStream.count:I
         3: .line 72
            aload 0 /* this */
            iconst_0
            putfield com.oracle.js.parser.TokenStream.in:I
         4: .line 73
            aload 0 /* this */
            iconst_0
            putfield com.oracle.js.parser.TokenStream.out:I
         5: .line 74
            aload 0 /* this */
            iconst_0
            putfield com.oracle.js.parser.TokenStream.base:I
         6: .line 75
            return
        end local 0 // com.oracle.js.parser.TokenStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/oracle/js/parser/TokenStream;

  private int next(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.oracle.js.parser.TokenStream this
        start local 1 // int position
         0: .line 85
            iload 1 /* position */
            iconst_1
            iadd
            istore 2 /* next */
        start local 2 // int next
         1: .line 88
            iload 2 /* next */
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.buffer:[J
            arraylength
            if_icmplt 3
         2: .line 90
            iconst_0
            istore 2 /* next */
         3: .line 93
      StackMap locals: int
      StackMap stack:
            iload 2 /* next */
            ireturn
        end local 2 // int next
        end local 1 // int position
        end local 0 // com.oracle.js.parser.TokenStream this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/oracle/js/parser/TokenStream;
            0    4     1  position  I
            1    4     2      next  I
    MethodParameters:
          Name  Flags
      position  final

  private int index(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.oracle.js.parser.TokenStream this
        start local 1 // int k
         0: .line 104
            iload 1 /* k */
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.base:I
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.out:I
            isub
            isub
            istore 2 /* index */
        start local 2 // int index
         1: .line 107
            iload 2 /* index */
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.buffer:[J
            arraylength
            if_icmplt 3
         2: .line 108
            iload 2 /* index */
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.buffer:[J
            arraylength
            isub
            istore 2 /* index */
         3: .line 111
      StackMap locals: int
      StackMap stack:
            iload 2 /* index */
            ireturn
        end local 2 // int index
        end local 1 // int k
        end local 0 // com.oracle.js.parser.TokenStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/oracle/js/parser/TokenStream;
            0    4     1      k  I
            1    4     2  index  I
    MethodParameters:
      Name  Flags
      k     final

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.js.parser.TokenStream this
         0: .line 120
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.count:I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.oracle.js.parser.TokenStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/js/parser/TokenStream;

  public boolean isFull();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.js.parser.TokenStream this
         0: .line 129
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.count:I
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.buffer:[J
            arraylength
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.oracle.js.parser.TokenStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/js/parser/TokenStream;

  public int last();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.js.parser.TokenStream this
         0: .line 138
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.base:I
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.count:I
            iadd
            iconst_1
            isub
            ireturn
        end local 0 // com.oracle.js.parser.TokenStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/js/parser/TokenStream;

  public void put(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.oracle.js.parser.TokenStream this
        start local 1 // long token
         0: .line 147
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.count:I
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.buffer:[J
            arraylength
            if_icmpne 2
         1: .line 148
            aload 0 /* this */
            invokevirtual com.oracle.js.parser.TokenStream.grow:()V
         2: .line 151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.buffer:[J
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.in:I
            lload 1 /* token */
            lastore
         3: .line 152
            aload 0 /* this */
            dup
            getfield com.oracle.js.parser.TokenStream.count:I
            iconst_1
            iadd
            putfield com.oracle.js.parser.TokenStream.count:I
         4: .line 153
            aload 0 /* this */
            aload 0 /* this */
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.in:I
            invokevirtual com.oracle.js.parser.TokenStream.next:(I)I
            putfield com.oracle.js.parser.TokenStream.in:I
         5: .line 154
            return
        end local 1 // long token
        end local 0 // com.oracle.js.parser.TokenStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lcom/oracle/js/parser/TokenStream;
            0    6     1  token  J
    MethodParameters:
       Name  Flags
      token  final

  public long get(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.js.parser.TokenStream this
        start local 1 // int k
         0: .line 163
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.buffer:[J
            aload 0 /* this */
            iload 1 /* k */
            invokevirtual com.oracle.js.parser.TokenStream.index:(I)I
            laload
            lreturn
        end local 1 // int k
        end local 0 // com.oracle.js.parser.TokenStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/js/parser/TokenStream;
            0    1     1     k  I
    MethodParameters:
      Name  Flags
      k     final

  public void commit(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.oracle.js.parser.TokenStream this
        start local 1 // int k
         0: .line 173
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* k */
            invokevirtual com.oracle.js.parser.TokenStream.index:(I)I
            putfield com.oracle.js.parser.TokenStream.out:I
         1: .line 175
            aload 0 /* this */
            dup
            getfield com.oracle.js.parser.TokenStream.count:I
            iload 1 /* k */
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.base:I
            isub
            isub
            putfield com.oracle.js.parser.TokenStream.count:I
         2: .line 177
            aload 0 /* this */
            iload 1 /* k */
            putfield com.oracle.js.parser.TokenStream.base:I
         3: .line 178
            return
        end local 1 // int k
        end local 0 // com.oracle.js.parser.TokenStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/oracle/js/parser/TokenStream;
            0    4     1     k  I
    MethodParameters:
      Name  Flags
      k     final

  public void grow();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // com.oracle.js.parser.TokenStream this
         0: .line 185
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.buffer:[J
            arraylength
            iconst_2
            imul
            newarray 11
            astore 1 /* newBuffer */
        start local 1 // long[] newBuffer
         1: .line 188
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.in:I
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.out:I
            if_icmple 4
         2: .line 189
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.buffer:[J
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.out:I
            aload 1 /* newBuffer */
            iconst_0
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.count:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 190
            goto 7
         4: .line 191
      StackMap locals: long[]
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.buffer:[J
            arraylength
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.out:I
            isub
            istore 2 /* portion */
        start local 2 // int portion
         5: .line 192
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.buffer:[J
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.out:I
            aload 1 /* newBuffer */
            iconst_0
            iload 2 /* portion */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 193
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.buffer:[J
            iconst_0
            aload 1 /* newBuffer */
            iload 2 /* portion */
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.count:I
            iload 2 /* portion */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        end local 2 // int portion
         7: .line 197
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.oracle.js.parser.TokenStream.out:I
         8: .line 198
            aload 0 /* this */
            aload 0 /* this */
            getfield com.oracle.js.parser.TokenStream.count:I
            putfield com.oracle.js.parser.TokenStream.in:I
         9: .line 199
            aload 0 /* this */
            aload 1 /* newBuffer */
            putfield com.oracle.js.parser.TokenStream.buffer:[J
        10: .line 200
            return
        end local 1 // long[] newBuffer
        end local 0 // com.oracle.js.parser.TokenStream this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   11     0       this  Lcom/oracle/js/parser/TokenStream;
            1   11     1  newBuffer  [J
            5    7     2    portion  I

  void reset();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // com.oracle.js.parser.TokenStream this
         0: .line 203
            aload 0 /* this */
            aload 0 /* this */
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield com.oracle.js.parser.TokenStream.base:I
            dup_x1
            putfield com.oracle.js.parser.TokenStream.count:I
            dup_x1
            putfield com.oracle.js.parser.TokenStream.out:I
            putfield com.oracle.js.parser.TokenStream.in:I
         1: .line 204
            return
        end local 0 // com.oracle.js.parser.TokenStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/js/parser/TokenStream;
}
SourceFile: "TokenStream.java"