class java.io.Console$LineReader extends java.io.Reader
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: java.io.Console$LineReader
  super_class: java.io.Reader
{
  private java.io.Reader in;
    descriptor: Ljava/io/Reader;
    flags: (0x0002) ACC_PRIVATE

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

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

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

  boolean leftoverLF;
    descriptor: Z
    flags: (0x0000) 

  final java.io.Console this$0;
    descriptor: Ljava/io/Console;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  void <init>(java.io.Console, java.io.Reader);
    descriptor: (Ljava/io/Console;Ljava/io/Reader;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // java.io.Console$LineReader this
        start local 2 // java.io.Reader in
         0: .line 409
            aload 0 /* this */
            aload 1
            putfield java.io.Console$LineReader.this$0:Ljava/io/Console;
            aload 0 /* this */
            invokespecial java.io.Reader.<init>:()V
         1: .line 410
            aload 0 /* this */
            aload 2 /* in */
            putfield java.io.Console$LineReader.in:Ljava/io/Reader;
         2: .line 411
            aload 0 /* this */
            sipush 1024
            newarray 5
            putfield java.io.Console$LineReader.cb:[C
         3: .line 412
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield java.io.Console$LineReader.nChars:I
            putfield java.io.Console$LineReader.nextChar:I
         4: .line 413
            aload 0 /* this */
            iconst_0
            putfield java.io.Console$LineReader.leftoverLF:Z
         5: .line 414
            return
        end local 2 // java.io.Reader in
        end local 0 // java.io.Console$LineReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/io/Console$LineReader;
            0    6     2    in  Ljava/io/Reader;
    MethodParameters:
        Name  Flags
      this$0  final
      in      

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // java.io.Console$LineReader this
         0: .line 415
            return
        end local 0 // java.io.Console$LineReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/Console$LineReader;

  public boolean ready();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.Console$LineReader this
         0: .line 418
            aload 0 /* this */
            getfield java.io.Console$LineReader.in:Ljava/io/Reader;
            invokevirtual java.io.Reader.ready:()Z
            ireturn
        end local 0 // java.io.Console$LineReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/Console$LineReader;
    Exceptions:
      throws java.io.IOException

  public int read(char[], int, int);
    descriptor: ([CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=10, args_size=4
        start local 0 // java.io.Console$LineReader this
        start local 1 // char[] cbuf
        start local 2 // int offset
        start local 3 // int length
         0: .line 424
            iload 2 /* offset */
            istore 4 /* off */
        start local 4 // int off
         1: .line 425
            iload 2 /* offset */
            iload 3 /* length */
            iadd
            istore 5 /* end */
        start local 5 // int end
         2: .line 426
            iload 2 /* offset */
            iflt 4
            iload 2 /* offset */
            aload 1 /* cbuf */
            arraylength
            if_icmpgt 4
            iload 3 /* length */
            iflt 4
         3: .line 427
            iload 5 /* end */
            iflt 4
            iload 5 /* end */
            aload 1 /* cbuf */
            arraylength
            if_icmple 5
         4: .line 428
      StackMap locals: int int
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         5: .line 430
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.Console$LineReader.this$0:Ljava/io/Console;
            getfield java.io.Console.readLock:Ljava/lang/Object;
            dup
            astore 6
            monitorenter
         6: .line 431
            iconst_0
            istore 7 /* eof */
        start local 7 // boolean eof
         7: .line 432
            iconst_0
            istore 8 /* c */
        start local 8 // char c
         8: .line 434
      StackMap locals: java.lang.Object int int
      StackMap stack:
            aload 0 /* this */
            getfield java.io.Console$LineReader.nextChar:I
            aload 0 /* this */
            getfield java.io.Console$LineReader.nChars:I
            if_icmplt 24
         9: .line 435
            iconst_0
            istore 9 /* n */
        start local 9 // int n
        10: .line 437
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield java.io.Console$LineReader.in:Ljava/io/Reader;
            aload 0 /* this */
            getfield java.io.Console$LineReader.cb:[C
            iconst_0
            aload 0 /* this */
            getfield java.io.Console$LineReader.cb:[C
            arraylength
            invokevirtual java.io.Reader.read:([CII)I
            istore 9 /* n */
        11: .line 438
            iload 9 /* n */
            ifeq 10
        12: .line 439
            iload 9 /* n */
            ifle 19
        13: .line 440
            aload 0 /* this */
            iload 9 /* n */
            putfield java.io.Console$LineReader.nChars:I
        14: .line 441
            aload 0 /* this */
            iconst_0
            putfield java.io.Console$LineReader.nextChar:I
        15: .line 442
            iload 9 /* n */
            aload 0 /* this */
            getfield java.io.Console$LineReader.cb:[C
            arraylength
            if_icmpge 24
        16: .line 443
            aload 0 /* this */
            getfield java.io.Console$LineReader.cb:[C
            iload 9 /* n */
            iconst_1
            isub
            caload
            bipush 10
            if_icmpeq 24
            aload 0 /* this */
            getfield java.io.Console$LineReader.cb:[C
            iload 9 /* n */
            iconst_1
            isub
            caload
            bipush 13
            if_icmpeq 24
        17: .line 449
            iconst_1
            istore 7 /* eof */
        18: .line 451
            goto 24
        19: .line 452
      StackMap locals:
      StackMap stack:
            iload 4 /* off */
            iload 2 /* offset */
            isub
            ifne 22
        20: .line 453
            aload 6
            monitorexit
        21: iconst_m1
            ireturn
        22: .line 454
      StackMap locals:
      StackMap stack:
            iload 4 /* off */
            iload 2 /* offset */
            isub
            aload 6
            monitorexit
        23: ireturn
        end local 9 // int n
        24: .line 457
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.Console$LineReader.leftoverLF:Z
            ifeq 26
            aload 1 /* cbuf */
            aload 0 /* this */
            getfield java.io.Console$LineReader.this$0:Ljava/io/Console;
            getfield java.io.Console.rcb:[C
            if_acmpne 26
            aload 0 /* this */
            getfield java.io.Console$LineReader.cb:[C
            aload 0 /* this */
            getfield java.io.Console$LineReader.nextChar:I
            caload
            bipush 10
            if_icmpne 26
        25: .line 462
            aload 0 /* this */
            dup
            getfield java.io.Console$LineReader.nextChar:I
            iconst_1
            iadd
            putfield java.io.Console$LineReader.nextChar:I
        26: .line 464
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield java.io.Console$LineReader.leftoverLF:Z
        27: .line 465
            goto 57
        28: .line 466
      StackMap locals:
      StackMap stack:
            aload 1 /* cbuf */
            iload 4 /* off */
            iinc 4 /* off */ 1
            aload 0 /* this */
            getfield java.io.Console$LineReader.cb:[C
            aload 0 /* this */
            getfield java.io.Console$LineReader.nextChar:I
            caload
            dup_x2
            castore
            istore 8 /* c */
        29: .line 467
            aload 0 /* this */
            getfield java.io.Console$LineReader.cb:[C
            aload 0 /* this */
            dup
            getfield java.io.Console$LineReader.nextChar:I
            dup_x1
            iconst_1
            iadd
            putfield java.io.Console$LineReader.nextChar:I
            iconst_0
            castore
        30: .line 468
            iload 8 /* c */
            bipush 10
            if_icmpne 33
        31: .line 469
            iload 4 /* off */
            iload 2 /* offset */
            isub
            aload 6
            monitorexit
        32: ireturn
        33: .line 470
      StackMap locals:
      StackMap stack:
            iload 8 /* c */
            bipush 13
            if_icmpne 50
        34: .line 471
            iload 4 /* off */
            iload 5 /* end */
            if_icmpne 42
        35: .line 476
            aload 1 /* cbuf */
            aload 0 /* this */
            getfield java.io.Console$LineReader.this$0:Ljava/io/Console;
            getfield java.io.Console.rcb:[C
            if_acmpne 39
        36: .line 477
            aload 0 /* this */
            getfield java.io.Console$LineReader.this$0:Ljava/io/Console;
            invokevirtual java.io.Console.grow:()[C
            astore 1 /* cbuf */
        37: .line 478
            aload 1 /* cbuf */
            arraylength
            istore 5 /* end */
        38: .line 479
            goto 42
        39: .line 480
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield java.io.Console$LineReader.leftoverLF:Z
        40: .line 481
            iload 4 /* off */
            iload 2 /* offset */
            isub
            aload 6
            monitorexit
        41: ireturn
        42: .line 484
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.Console$LineReader.nextChar:I
            aload 0 /* this */
            getfield java.io.Console$LineReader.nChars:I
            if_icmpne 45
            aload 0 /* this */
            getfield java.io.Console$LineReader.in:Ljava/io/Reader;
            invokevirtual java.io.Reader.ready:()Z
            ifeq 45
        43: .line 492
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.Console$LineReader.in:Ljava/io/Reader;
            aload 0 /* this */
            getfield java.io.Console$LineReader.cb:[C
            iconst_0
            aload 0 /* this */
            getfield java.io.Console$LineReader.cb:[C
            arraylength
            invokevirtual java.io.Reader.read:([CII)I
            putfield java.io.Console$LineReader.nChars:I
        44: .line 493
            aload 0 /* this */
            iconst_0
            putfield java.io.Console$LineReader.nextChar:I
        45: .line 495
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.Console$LineReader.nextChar:I
            aload 0 /* this */
            getfield java.io.Console$LineReader.nChars:I
            if_icmpge 48
            aload 0 /* this */
            getfield java.io.Console$LineReader.cb:[C
            aload 0 /* this */
            getfield java.io.Console$LineReader.nextChar:I
            caload
            bipush 10
            if_icmpne 48
        46: .line 496
            aload 1 /* cbuf */
            iload 4 /* off */
            iinc 4 /* off */ 1
            bipush 10
            castore
        47: .line 497
            aload 0 /* this */
            dup
            getfield java.io.Console$LineReader.nextChar:I
            iconst_1
            iadd
            putfield java.io.Console$LineReader.nextChar:I
        48: .line 499
      StackMap locals:
      StackMap stack:
            iload 4 /* off */
            iload 2 /* offset */
            isub
            aload 6
            monitorexit
        49: ireturn
        50: .line 500
      StackMap locals:
      StackMap stack:
            iload 4 /* off */
            iload 5 /* end */
            if_icmpne 57
        51: .line 501
            aload 1 /* cbuf */
            aload 0 /* this */
            getfield java.io.Console$LineReader.this$0:Ljava/io/Console;
            getfield java.io.Console.rcb:[C
            if_acmpne 55
        52: .line 502
            aload 0 /* this */
            getfield java.io.Console$LineReader.this$0:Ljava/io/Console;
            invokevirtual java.io.Console.grow:()[C
            astore 1 /* cbuf */
        53: .line 503
            aload 1 /* cbuf */
            arraylength
            istore 5 /* end */
        54: .line 504
            goto 57
        55: .line 505
      StackMap locals:
      StackMap stack:
            iload 4 /* off */
            iload 2 /* offset */
            isub
            aload 6
            monitorexit
        56: ireturn
        57: .line 465
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.Console$LineReader.nextChar:I
            aload 0 /* this */
            getfield java.io.Console$LineReader.nChars:I
            if_icmplt 28
        58: .line 509
            iload 7 /* eof */
            ifeq 8
        59: .line 510
            iload 4 /* off */
            iload 2 /* offset */
            isub
            aload 6
            monitorexit
        60: ireturn
        end local 8 // char c
        end local 7 // boolean eof
        61: .line 430
      StackMap locals: java.io.Console$LineReader char[] int int int int java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 6
            monitorexit
        62: athrow
        end local 5 // int end
        end local 4 // int off
        end local 3 // int length
        end local 2 // int offset
        end local 1 // char[] cbuf
        end local 0 // java.io.Console$LineReader this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   63     0    this  Ljava/io/Console$LineReader;
            0   63     1    cbuf  [C
            0   63     2  offset  I
            0   63     3  length  I
            1   63     4     off  I
            2   63     5     end  I
            7   61     7     eof  Z
            8   61     8       c  C
           10   24     9       n  I
      Exception table:
        from    to  target  type
           6    21      61  any
          22    23      61  any
          24    32      61  any
          33    41      61  any
          42    49      61  any
          50    56      61  any
          57    60      61  any
          61    62      61  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      cbuf    
      offset  
      length  
}
SourceFile: "Console.java"
NestHost: java.io.Console
InnerClasses:
  LineReader = java.io.Console$LineReader of java.io.Console