public class java.io.LineNumberReader extends java.io.BufferedReader
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: java.io.LineNumberReader
  super_class: java.io.BufferedReader
{
  private int lineNumber;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

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

  private boolean skipLF;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean markedSkipLF;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private static final int maxSkipBufferSize;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 8192

  private char[] skipBuffer;
    descriptor: [C
    flags: (0x0002) ACC_PRIVATE

  public void <init>(java.io.Reader);
    descriptor: (Ljava/io/Reader;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.LineNumberReader this
        start local 1 // java.io.Reader in
         0: .line 72
            aload 0 /* this */
            aload 1 /* in */
            invokespecial java.io.BufferedReader.<init>:(Ljava/io/Reader;)V
         1: .line 53
            aload 0 /* this */
            iconst_0
            putfield java.io.LineNumberReader.lineNumber:I
         2: .line 213
            aload 0 /* this */
            aconst_null
            putfield java.io.LineNumberReader.skipBuffer:[C
         3: .line 73
            return
        end local 1 // java.io.Reader in
        end local 0 // java.io.LineNumberReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/io/LineNumberReader;
            0    4     1    in  Ljava/io/Reader;
    MethodParameters:
      Name  Flags
      in    

  public void <init>(java.io.Reader, int);
    descriptor: (Ljava/io/Reader;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // java.io.LineNumberReader this
        start local 1 // java.io.Reader in
        start local 2 // int sz
         0: .line 86
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* sz */
            invokespecial java.io.BufferedReader.<init>:(Ljava/io/Reader;I)V
         1: .line 53
            aload 0 /* this */
            iconst_0
            putfield java.io.LineNumberReader.lineNumber:I
         2: .line 213
            aload 0 /* this */
            aconst_null
            putfield java.io.LineNumberReader.skipBuffer:[C
         3: .line 87
            return
        end local 2 // int sz
        end local 1 // java.io.Reader in
        end local 0 // java.io.LineNumberReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/io/LineNumberReader;
            0    4     1    in  Ljava/io/Reader;
            0    4     2    sz  I
    MethodParameters:
      Name  Flags
      in    
      sz    

  public void setLineNumber(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.LineNumberReader this
        start local 1 // int lineNumber
         0: .line 98
            aload 0 /* this */
            iload 1 /* lineNumber */
            putfield java.io.LineNumberReader.lineNumber:I
         1: .line 99
            return
        end local 1 // int lineNumber
        end local 0 // java.io.LineNumberReader this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Ljava/io/LineNumberReader;
            0    2     1  lineNumber  I
    MethodParameters:
            Name  Flags
      lineNumber  

  public int getLineNumber();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.LineNumberReader this
         0: .line 109
            aload 0 /* this */
            getfield java.io.LineNumberReader.lineNumber:I
            ireturn
        end local 0 // java.io.LineNumberReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/LineNumberReader;

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // java.io.LineNumberReader this
         0: .line 125
            aload 0 /* this */
            getfield java.io.LineNumberReader.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 126
            aload 0 /* this */
            invokespecial java.io.BufferedReader.read:()I
            istore 2 /* c */
        start local 2 // int c
         2: .line 127
            aload 0 /* this */
            getfield java.io.LineNumberReader.skipLF:Z
            ifeq 6
         3: .line 128
            iload 2 /* c */
            bipush 10
            if_icmpne 5
         4: .line 129
            aload 0 /* this */
            invokespecial java.io.BufferedReader.read:()I
            istore 2 /* c */
         5: .line 130
      StackMap locals: java.lang.Object int
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield java.io.LineNumberReader.skipLF:Z
         6: .line 132
      StackMap locals:
      StackMap stack:
            iload 2 /* c */
            tableswitch { // 10 - 13
                   10: 8
                   11: 11
                   12: 11
                   13: 7
              default: 11
          }
         7: .line 134
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield java.io.LineNumberReader.skipLF:Z
         8: .line 136
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield java.io.LineNumberReader.lineNumber:I
            iconst_1
            iadd
            putfield java.io.LineNumberReader.lineNumber:I
         9: .line 137
            aload 1
            monitorexit
        10: bipush 10
            ireturn
        11: .line 139
      StackMap locals:
      StackMap stack:
            iload 2 /* c */
            aload 1
            monitorexit
        12: ireturn
        end local 2 // int c
        13: .line 125
      StackMap locals: java.io.LineNumberReader java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
        14: athrow
        end local 0 // java.io.LineNumberReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Ljava/io/LineNumberReader;
            2   13     2     c  I
      Exception table:
        from    to  target  type
           1    10      13  any
          11    12      13  any
          13    14      13  any
    Exceptions:
      throws java.io.IOException

  public int read(char[], int, int);
    descriptor: ([CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=4
        start local 0 // java.io.LineNumberReader this
        start local 1 // char[] cbuf
        start local 2 // int off
        start local 3 // int len
         0: .line 165
            aload 0 /* this */
            getfield java.io.LineNumberReader.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 166
            aload 0 /* this */
            aload 1 /* cbuf */
            iload 2 /* off */
            iload 3 /* len */
            invokespecial java.io.BufferedReader.read:([CII)I
            istore 5 /* n */
        start local 5 // int n
         2: .line 168
            iload 2 /* off */
            istore 6 /* i */
        start local 6 // int i
         3: goto 13
         4: .line 169
      StackMap locals: java.lang.Object int int
      StackMap stack:
            aload 1 /* cbuf */
            iload 6 /* i */
            caload
            istore 7 /* c */
        start local 7 // int c
         5: .line 170
            aload 0 /* this */
            getfield java.io.LineNumberReader.skipLF:Z
            ifeq 9
         6: .line 171
            aload 0 /* this */
            iconst_0
            putfield java.io.LineNumberReader.skipLF:Z
         7: .line 172
            iload 7 /* c */
            bipush 10
            if_icmpne 9
         8: .line 173
            goto 12
         9: .line 175
      StackMap locals: int
      StackMap stack:
            iload 7 /* c */
            tableswitch { // 10 - 13
                   10: 11
                   11: 12
                   12: 12
                   13: 10
              default: 12
          }
        10: .line 177
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield java.io.LineNumberReader.skipLF:Z
        11: .line 179
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield java.io.LineNumberReader.lineNumber:I
            iconst_1
            iadd
            putfield java.io.LineNumberReader.lineNumber:I
        end local 7 // int c
        12: .line 168
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 6 /* i */
            iload 2 /* off */
            iload 5 /* n */
            iadd
            if_icmplt 4
        end local 6 // int i
        14: .line 184
            iload 5 /* n */
            aload 4
            monitorexit
        15: ireturn
        end local 5 // int n
        16: .line 165
      StackMap locals: java.io.LineNumberReader char[] int int java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
        17: athrow
        end local 3 // int len
        end local 2 // int off
        end local 1 // char[] cbuf
        end local 0 // java.io.LineNumberReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Ljava/io/LineNumberReader;
            0   18     1  cbuf  [C
            0   18     2   off  I
            0   18     3   len  I
            2   16     5     n  I
            3   14     6     i  I
            5   12     7     c  I
      Exception table:
        from    to  target  type
           1    15      16  any
          16    17      16  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  
      off   
      len   

  public java.lang.String readLine();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // java.io.LineNumberReader this
         0: .line 200
            aload 0 /* this */
            getfield java.io.LineNumberReader.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 201
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.LineNumberReader.skipLF:Z
            invokespecial java.io.BufferedReader.readLine:(Z)Ljava/lang/String;
            astore 2 /* l */
        start local 2 // java.lang.String l
         2: .line 202
            aload 0 /* this */
            iconst_0
            putfield java.io.LineNumberReader.skipLF:Z
         3: .line 203
            aload 2 /* l */
            ifnull 5
         4: .line 204
            aload 0 /* this */
            dup
            getfield java.io.LineNumberReader.lineNumber:I
            iconst_1
            iadd
            putfield java.io.LineNumberReader.lineNumber:I
         5: .line 205
      StackMap locals: java.lang.Object java.lang.String
      StackMap stack:
            aload 2 /* l */
            aload 1
            monitorexit
         6: areturn
        end local 2 // java.lang.String l
         7: .line 200
      StackMap locals: java.io.LineNumberReader java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         8: athrow
        end local 0 // java.io.LineNumberReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Ljava/io/LineNumberReader;
            2    7     2     l  Ljava/lang/String;
      Exception table:
        from    to  target  type
           1     6       7  any
           7     8       7  any
    Exceptions:
      throws java.io.IOException

  public long skip(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=8, args_size=2
        start local 0 // java.io.LineNumberReader this
        start local 1 // long n
         0: .line 230
            lload 1 /* n */
            lconst_0
            lcmp
            ifge 2
         1: .line 231
            new java.lang.IllegalArgumentException
            dup
            ldc "skip() value is negative"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 232
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            ldc 8192
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            istore 3 /* nn */
        start local 3 // int nn
         3: .line 233
            aload 0 /* this */
            getfield java.io.LineNumberReader.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         4: .line 234
            aload 0 /* this */
            getfield java.io.LineNumberReader.skipBuffer:[C
            ifnull 5
            aload 0 /* this */
            getfield java.io.LineNumberReader.skipBuffer:[C
            arraylength
            iload 3 /* nn */
            if_icmpge 6
         5: .line 235
      StackMap locals: int java.lang.Object
      StackMap stack:
            aload 0 /* this */
            iload 3 /* nn */
            newarray 5
            putfield java.io.LineNumberReader.skipBuffer:[C
         6: .line 236
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            lstore 5 /* r */
        start local 5 // long r
         7: .line 237
            goto 12
         8: .line 238
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.LineNumberReader.skipBuffer:[C
            iconst_0
            lload 5 /* r */
            iload 3 /* nn */
            i2l
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            invokevirtual java.io.LineNumberReader.read:([CII)I
            istore 7 /* nc */
        start local 7 // int nc
         9: .line 239
            iload 7 /* nc */
            iconst_m1
            if_icmpne 11
        10: .line 240
            goto 13
        11: .line 241
      StackMap locals: int
      StackMap stack:
            lload 5 /* r */
            iload 7 /* nc */
            i2l
            lsub
            lstore 5 /* r */
        end local 7 // int nc
        12: .line 237
      StackMap locals:
      StackMap stack:
            lload 5 /* r */
            lconst_0
            lcmp
            ifgt 8
        13: .line 243
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            lload 5 /* r */
            lsub
            aload 4
            monitorexit
        14: lreturn
        end local 5 // long r
        15: .line 233
      StackMap locals: java.io.LineNumberReader long int java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
        16: athrow
        end local 3 // int nn
        end local 1 // long n
        end local 0 // java.io.LineNumberReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Ljava/io/LineNumberReader;
            0   17     1     n  J
            3   17     3    nn  I
            7   15     5     r  J
            9   12     7    nc  I
      Exception table:
        from    to  target  type
           4    14      15  any
          15    16      15  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     

  public void mark(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // java.io.LineNumberReader this
        start local 1 // int readAheadLimit
         0: .line 261
            aload 0 /* this */
            getfield java.io.LineNumberReader.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 265
            aload 0 /* this */
            getfield java.io.LineNumberReader.skipLF:Z
            ifeq 3
         2: .line 266
            iinc 1 /* readAheadLimit */ 1
         3: .line 267
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            iload 1 /* readAheadLimit */
            invokespecial java.io.BufferedReader.mark:(I)V
         4: .line 268
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.LineNumberReader.lineNumber:I
            putfield java.io.LineNumberReader.markedLineNumber:I
         5: .line 269
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.LineNumberReader.skipLF:Z
            putfield java.io.LineNumberReader.markedSkipLF:Z
         6: .line 261
            aload 2
            monitorexit
         7: goto 10
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: aload 2
            monitorexit
         9: athrow
        10: .line 271
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int readAheadLimit
        end local 0 // java.io.LineNumberReader this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   11     0            this  Ljava/io/LineNumberReader;
            0   11     1  readAheadLimit  I
      Exception table:
        from    to  target  type
           1     7       8  any
           8     9       8  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.LineNumberReader this
         0: .line 281
            aload 0 /* this */
            getfield java.io.LineNumberReader.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 282
            aload 0 /* this */
            invokespecial java.io.BufferedReader.reset:()V
         2: .line 283
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.LineNumberReader.markedLineNumber:I
            putfield java.io.LineNumberReader.lineNumber:I
         3: .line 284
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.LineNumberReader.markedSkipLF:Z
            putfield java.io.LineNumberReader.skipLF:Z
         4: .line 281
            aload 1
            monitorexit
         5: goto 8
      StackMap locals: java.io.LineNumberReader java.lang.Object
      StackMap stack: java.lang.Throwable
         6: aload 1
            monitorexit
         7: athrow
         8: .line 286
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.io.LineNumberReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Ljava/io/LineNumberReader;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
    Exceptions:
      throws java.io.IOException
}
SourceFile: "LineNumberReader.java"