public class java.io.CharArrayReader extends java.io.Reader
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: java.io.CharArrayReader
  super_class: java.io.Reader
{
  protected char[] buf;
    descriptor: [C
    flags: (0x0004) ACC_PROTECTED

  protected int pos;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int markedPos;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int count;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  public void <init>(char[]);
    descriptor: ([C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.CharArrayReader this
        start local 1 // char[] buf
         0: .line 55
            aload 0 /* this */
            invokespecial java.io.Reader.<init>:()V
         1: .line 43
            aload 0 /* this */
            iconst_0
            putfield java.io.CharArrayReader.markedPos:I
         2: .line 56
            aload 0 /* this */
            aload 1 /* buf */
            putfield java.io.CharArrayReader.buf:[C
         3: .line 57
            aload 0 /* this */
            iconst_0
            putfield java.io.CharArrayReader.pos:I
         4: .line 58
            aload 0 /* this */
            aload 1 /* buf */
            arraylength
            putfield java.io.CharArrayReader.count:I
         5: .line 59
            return
        end local 1 // char[] buf
        end local 0 // java.io.CharArrayReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/io/CharArrayReader;
            0    6     1   buf  [C
    MethodParameters:
      Name  Flags
      buf   

  public void <init>(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // java.io.CharArrayReader this
        start local 1 // char[] buf
        start local 2 // int offset
        start local 3 // int length
         0: .line 78
            aload 0 /* this */
            invokespecial java.io.Reader.<init>:()V
         1: .line 43
            aload 0 /* this */
            iconst_0
            putfield java.io.CharArrayReader.markedPos:I
         2: .line 79
            iload 2 /* offset */
            iflt 4
            iload 2 /* offset */
            aload 1 /* buf */
            arraylength
            if_icmpgt 4
            iload 3 /* length */
            iflt 4
         3: .line 80
            iload 2 /* offset */
            iload 3 /* length */
            iadd
            ifge 5
         4: .line 81
      StackMap locals: java.io.CharArrayReader char[] int int
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         5: .line 83
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buf */
            putfield java.io.CharArrayReader.buf:[C
         6: .line 84
            aload 0 /* this */
            iload 2 /* offset */
            putfield java.io.CharArrayReader.pos:I
         7: .line 85
            aload 0 /* this */
            iload 2 /* offset */
            iload 3 /* length */
            iadd
            aload 1 /* buf */
            arraylength
            invokestatic java.lang.Math.min:(II)I
            putfield java.io.CharArrayReader.count:I
         8: .line 86
            aload 0 /* this */
            iload 2 /* offset */
            putfield java.io.CharArrayReader.markedPos:I
         9: .line 87
            return
        end local 3 // int length
        end local 2 // int offset
        end local 1 // char[] buf
        end local 0 // java.io.CharArrayReader this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Ljava/io/CharArrayReader;
            0   10     1     buf  [C
            0   10     2  offset  I
            0   10     3  length  I
    MethodParameters:
        Name  Flags
      buf     
      offset  
      length  

  private void ensureOpen();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.io.CharArrayReader this
         0: .line 91
            aload 0 /* this */
            getfield java.io.CharArrayReader.buf:[C
            ifnonnull 2
         1: .line 92
            new java.io.IOException
            dup
            ldc "Stream closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 93
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.io.CharArrayReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/io/CharArrayReader;
    Exceptions:
      throws java.io.IOException

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // java.io.CharArrayReader this
         0: .line 101
            aload 0 /* this */
            getfield java.io.CharArrayReader.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 102
            aload 0 /* this */
            invokevirtual java.io.CharArrayReader.ensureOpen:()V
         2: .line 103
            aload 0 /* this */
            getfield java.io.CharArrayReader.pos:I
            aload 0 /* this */
            getfield java.io.CharArrayReader.count:I
            if_icmplt 5
         3: .line 104
            aload 1
            monitorexit
         4: iconst_m1
            ireturn
         5: .line 106
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield java.io.CharArrayReader.buf:[C
            aload 0 /* this */
            dup
            getfield java.io.CharArrayReader.pos:I
            dup_x1
            iconst_1
            iadd
            putfield java.io.CharArrayReader.pos:I
            caload
            aload 1
            monitorexit
         6: ireturn
         7: .line 101
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         8: athrow
        end local 0 // java.io.CharArrayReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Ljava/io/CharArrayReader;
      Exception table:
        from    to  target  type
           1     4       7  any
           5     6       7  any
           7     8       7  any
    Exceptions:
      throws java.io.IOException

  public int read(char[], int, int);
    descriptor: ([CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // java.io.CharArrayReader this
        start local 1 // char[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 121
            aload 0 /* this */
            getfield java.io.CharArrayReader.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 122
            aload 0 /* this */
            invokevirtual java.io.CharArrayReader.ensureOpen:()V
         2: .line 123
            iload 2 /* off */
            iflt 4
            iload 2 /* off */
            aload 1 /* b */
            arraylength
            if_icmpgt 4
            iload 3 /* len */
            iflt 4
         3: .line 124
            iload 2 /* off */
            iload 3 /* len */
            iadd
            aload 1 /* b */
            arraylength
            if_icmpgt 4
            iload 2 /* off */
            iload 3 /* len */
            iadd
            ifge 5
         4: .line 125
      StackMap locals: java.lang.Object
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         5: .line 126
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifne 8
         6: .line 127
            aload 4
            monitorexit
         7: iconst_0
            ireturn
         8: .line 130
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.CharArrayReader.pos:I
            aload 0 /* this */
            getfield java.io.CharArrayReader.count:I
            if_icmplt 11
         9: .line 131
            aload 4
            monitorexit
        10: iconst_m1
            ireturn
        11: .line 134
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.CharArrayReader.count:I
            aload 0 /* this */
            getfield java.io.CharArrayReader.pos:I
            isub
            istore 5 /* avail */
        start local 5 // int avail
        12: .line 135
            iload 3 /* len */
            iload 5 /* avail */
            if_icmple 14
        13: .line 136
            iload 5 /* avail */
            istore 3 /* len */
        14: .line 138
      StackMap locals: int
      StackMap stack:
            iload 3 /* len */
            ifgt 17
        15: .line 139
            aload 4
            monitorexit
        16: iconst_0
            ireturn
        17: .line 141
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.CharArrayReader.buf:[C
            aload 0 /* this */
            getfield java.io.CharArrayReader.pos:I
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        18: .line 142
            aload 0 /* this */
            dup
            getfield java.io.CharArrayReader.pos:I
            iload 3 /* len */
            iadd
            putfield java.io.CharArrayReader.pos:I
        19: .line 143
            iload 3 /* len */
            aload 4
            monitorexit
        20: ireturn
        end local 5 // int avail
        21: .line 121
      StackMap locals: java.io.CharArrayReader char[] int int java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
        22: athrow
        end local 3 // int len
        end local 2 // int off
        end local 1 // char[] b
        end local 0 // java.io.CharArrayReader this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   23     0   this  Ljava/io/CharArrayReader;
            0   23     1      b  [C
            0   23     2    off  I
            0   23     3    len  I
           12   21     5  avail  I
      Exception table:
        from    to  target  type
           1     7      21  any
           8    10      21  any
          11    16      21  any
          17    20      21  any
          21    22      21  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public long skip(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // java.io.CharArrayReader this
        start local 1 // long n
         0: .line 160
            aload 0 /* this */
            getfield java.io.CharArrayReader.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 161
            aload 0 /* this */
            invokevirtual java.io.CharArrayReader.ensureOpen:()V
         2: .line 163
            aload 0 /* this */
            getfield java.io.CharArrayReader.count:I
            aload 0 /* this */
            getfield java.io.CharArrayReader.pos:I
            isub
            i2l
            lstore 4 /* avail */
        start local 4 // long avail
         3: .line 164
            lload 1 /* n */
            lload 4 /* avail */
            lcmp
            ifle 5
         4: .line 165
            lload 4 /* avail */
            lstore 1 /* n */
         5: .line 167
      StackMap locals: java.lang.Object long
      StackMap stack:
            lload 1 /* n */
            lconst_0
            lcmp
            ifge 8
         6: .line 168
            aload 3
            monitorexit
         7: lconst_0
            lreturn
         8: .line 170
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield java.io.CharArrayReader.pos:I
            i2l
            lload 1 /* n */
            ladd
            l2i
            putfield java.io.CharArrayReader.pos:I
         9: .line 171
            lload 1 /* n */
            aload 3
            monitorexit
        10: lreturn
        end local 4 // long avail
        11: .line 160
      StackMap locals: java.io.CharArrayReader long java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
        12: athrow
        end local 1 // long n
        end local 0 // java.io.CharArrayReader this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Ljava/io/CharArrayReader;
            0   13     1      n  J
            3   11     4  avail  J
      Exception table:
        from    to  target  type
           1     7      11  any
           8    10      11  any
          11    12      11  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     

  public boolean ready();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.io.CharArrayReader this
         0: .line 182
            aload 0 /* this */
            getfield java.io.CharArrayReader.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 183
            aload 0 /* this */
            invokevirtual java.io.CharArrayReader.ensureOpen:()V
         2: .line 184
            aload 0 /* this */
            getfield java.io.CharArrayReader.count:I
            aload 0 /* this */
            getfield java.io.CharArrayReader.pos:I
            isub
            ifle 3
            iconst_1
            goto 4
      StackMap locals: java.lang.Object
      StackMap stack:
         3: iconst_0
      StackMap locals:
      StackMap stack: int
         4: aload 1
            monitorexit
         5: ireturn
         6: .line 182
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         7: athrow
        end local 0 // java.io.CharArrayReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljava/io/CharArrayReader;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
    Exceptions:
      throws java.io.IOException

  public boolean markSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.CharArrayReader this
         0: .line 192
            iconst_1
            ireturn
        end local 0 // java.io.CharArrayReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/CharArrayReader;

  public void mark(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // java.io.CharArrayReader this
        start local 1 // int readAheadLimit
         0: .line 208
            aload 0 /* this */
            getfield java.io.CharArrayReader.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 209
            aload 0 /* this */
            invokevirtual java.io.CharArrayReader.ensureOpen:()V
         2: .line 210
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.CharArrayReader.pos:I
            putfield java.io.CharArrayReader.markedPos:I
         3: .line 208
            aload 2
            monitorexit
         4: goto 7
      StackMap locals: java.io.CharArrayReader int java.lang.Object
      StackMap stack: java.lang.Throwable
         5: aload 2
            monitorexit
         6: athrow
         7: .line 212
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int readAheadLimit
        end local 0 // java.io.CharArrayReader this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    8     0            this  Ljava/io/CharArrayReader;
            0    8     1  readAheadLimit  I
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                Name  Flags
      readAheadLimit  

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.io.CharArrayReader this
         0: .line 221
            aload 0 /* this */
            getfield java.io.CharArrayReader.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 222
            aload 0 /* this */
            invokevirtual java.io.CharArrayReader.ensureOpen:()V
         2: .line 223
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.CharArrayReader.markedPos:I
            putfield java.io.CharArrayReader.pos:I
         3: .line 221
            aload 1
            monitorexit
         4: goto 7
      StackMap locals: java.io.CharArrayReader java.lang.Object
      StackMap stack: java.lang.Throwable
         5: aload 1
            monitorexit
         6: athrow
         7: .line 225
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.io.CharArrayReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljava/io/CharArrayReader;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.io.CharArrayReader this
         0: .line 234
            aload 0 /* this */
            aconst_null
            putfield java.io.CharArrayReader.buf:[C
         1: .line 235
            return
        end local 0 // java.io.CharArrayReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/CharArrayReader;
}
SourceFile: "CharArrayReader.java"