public class sun.jvm.hotspot.debugger.InputLexer
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.jvm.hotspot.debugger.InputLexer
  super_class: java.lang.Object
{
  private java.io.BufferedInputStream in;
    descriptor: Ljava/io/BufferedInputStream;
    flags: (0x0002) ACC_PRIVATE

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

  private byte backBuf;
    descriptor: B
    flags: (0x0002) ACC_PRIVATE

  public void <init>(java.io.BufferedInputStream);
    descriptor: (Ljava/io/BufferedInputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.debugger.InputLexer this
        start local 1 // java.io.BufferedInputStream in
         0: .line 35
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 36
            aload 0 /* this */
            aload 1 /* in */
            putfield sun.jvm.hotspot.debugger.InputLexer.in:Ljava/io/BufferedInputStream;
         2: .line 37
            aload 0 /* this */
            iconst_0
            putfield sun.jvm.hotspot.debugger.InputLexer.pushedBack:Z
         3: .line 38
            return
        end local 1 // java.io.BufferedInputStream in
        end local 0 // sun.jvm.hotspot.debugger.InputLexer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/jvm/hotspot/debugger/InputLexer;
            0    4     1    in  Ljava/io/BufferedInputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      in    

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.InputLexer this
         0: .line 41
            aload 0 /* this */
            getfield sun.jvm.hotspot.debugger.InputLexer.in:Ljava/io/BufferedInputStream;
            invokevirtual java.io.BufferedInputStream.close:()V
         1: .line 42
            return
        end local 0 // sun.jvm.hotspot.debugger.InputLexer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/debugger/InputLexer;
    Exceptions:
      throws java.io.IOException

  public boolean parseBoolean();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.InputLexer this
         0: .line 47
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.parseInt:()I
            istore 1 /* val */
        start local 1 // int val
         1: .line 48
            iload 1 /* val */
            ifeq 2
            iconst_1
            ireturn
      StackMap locals: int
      StackMap stack:
         2: iconst_0
            ireturn
        end local 1 // int val
        end local 0 // sun.jvm.hotspot.debugger.InputLexer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/jvm/hotspot/debugger/InputLexer;
            1    3     1   val  I
    Exceptions:
      throws java.io.IOException

  public int parseInt();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.InputLexer this
         0: .line 53
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.parseLong:()J
            lstore 1 /* l */
        start local 1 // long l
         1: .line 54
            ldc -4294967296
            lstore 3 /* mask */
        start local 3 // long mask
         2: .line 55
            lload 1 /* l */
            lload 3 /* mask */
            land
            lconst_0
            lcmp
            ifeq 4
         3: .line 56
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Overflow error reading int from debug server (read "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            lload 1 /* l */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 58
      StackMap locals: long long
      StackMap stack:
            lload 1 /* l */
            l2i
            ireturn
        end local 3 // long mask
        end local 1 // long l
        end local 0 // sun.jvm.hotspot.debugger.InputLexer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/jvm/hotspot/debugger/InputLexer;
            1    5     1     l  J
            2    5     3  mask  J
    Exceptions:
      throws java.io.IOException

  public long parseLong();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.InputLexer this
         0: .line 63
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.skipWhitespace:()V
         1: .line 64
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.readByte:()B
            istore 1 /* b */
        start local 1 // byte b
         2: .line 65
            iload 1 /* b */
            i2c
            invokestatic java.lang.Character.isDigit:(C)Z
            ifne 4
         3: .line 66
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.error:()V
         4: .line 68
      StackMap locals: int
      StackMap stack:
            lconst_0
            lstore 2 /* l */
        start local 2 // long l
         5: .line 69
            goto 9
         6: .line 70
      StackMap locals: long
      StackMap stack:
            lload 2 /* l */
            ldc 10
            lmul
            lstore 2 /* l */
         7: .line 71
            lload 2 /* l */
            iload 1 /* b */
            bipush 48
            isub
            i2l
            ladd
            lstore 2 /* l */
         8: .line 72
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.readByte:()B
            istore 1 /* b */
         9: .line 69
      StackMap locals:
      StackMap stack:
            iload 1 /* b */
            i2c
            invokestatic java.lang.Character.isDigit:(C)Z
            ifne 6
        10: .line 74
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.pushBack:(B)V
        11: .line 75
            lload 2 /* l */
            lreturn
        end local 2 // long l
        end local 1 // byte b
        end local 0 // sun.jvm.hotspot.debugger.InputLexer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lsun/jvm/hotspot/debugger/InputLexer;
            2   12     1     b  B
            5   12     2     l  J
    Exceptions:
      throws java.io.IOException

  public long parseAddress();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.InputLexer this
         0: .line 81
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.skipWhitespace:()V
         1: .line 83
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.readByte:()B
            dup
            istore 1 /* b */
        start local 1 // byte b
         2: bipush 48
            if_icmpeq 4
         3: .line 84
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.error:()V
         4: .line 86
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.readByte:()B
            istore 1 /* b */
         5: .line 87
            iload 1 /* b */
            bipush 120
            if_icmpeq 7
         6: .line 88
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.error:()V
         7: .line 90
      StackMap locals:
      StackMap stack:
            lconst_0
            lstore 2 /* val */
        start local 2 // long val
         8: .line 91
            goto 11
         9: .line 92
      StackMap locals: long
      StackMap stack:
            lload 2 /* val */
            ldc 16
            lmul
            lstore 2 /* val */
        10: .line 93
            lload 2 /* val */
            iload 1 /* b */
            i2c
            bipush 16
            invokestatic java.lang.Character.digit:(CI)I
            i2l
            ladd
            lstore 2 /* val */
        11: .line 91
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.readByte:()B
            dup
            istore 1 /* b */
            i2c
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.isHexDigit:(C)Z
            ifne 9
        12: .line 95
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.pushBack:(B)V
        13: .line 96
            lload 2 /* val */
            lreturn
        end local 2 // long val
        end local 1 // byte b
        end local 0 // sun.jvm.hotspot.debugger.InputLexer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lsun/jvm/hotspot/debugger/InputLexer;
            2   14     1     b  B
            8   14     2   val  J
    Exceptions:
      throws java.io.IOException

  public void skipByte();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.InputLexer this
         0: .line 100
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.readByte:()B
            pop
         1: .line 101
            return
        end local 0 // sun.jvm.hotspot.debugger.InputLexer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/debugger/InputLexer;
    Exceptions:
      throws java.io.IOException

  public byte readByte();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.InputLexer this
         0: .line 105
            aload 0 /* this */
            getfield sun.jvm.hotspot.debugger.InputLexer.pushedBack:Z
            ifeq 3
         1: .line 106
            aload 0 /* this */
            iconst_0
            putfield sun.jvm.hotspot.debugger.InputLexer.pushedBack:Z
         2: .line 107
            aload 0 /* this */
            getfield sun.jvm.hotspot.debugger.InputLexer.backBuf:B
            ireturn
         3: .line 109
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.readByteInternal:()B
            ireturn
        end local 0 // sun.jvm.hotspot.debugger.InputLexer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/jvm/hotspot/debugger/InputLexer;
    Exceptions:
      throws java.io.IOException

  public void readBytes(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=4
        start local 0 // sun.jvm.hotspot.debugger.InputLexer this
        start local 1 // byte[] buf
        start local 2 // int off
        start local 3 // int len
         0: .line 114
            iload 2 /* off */
            istore 4 /* startIdx */
        start local 4 // int startIdx
         1: .line 115
            iconst_0
            istore 5 /* numRead */
        start local 5 // int numRead
         2: .line 116
            aload 0 /* this */
            getfield sun.jvm.hotspot.debugger.InputLexer.pushedBack:Z
            ifeq 9
         3: .line 117
            aload 1 /* buf */
            iload 4 /* startIdx */
            aload 0 /* this */
            getfield sun.jvm.hotspot.debugger.InputLexer.backBuf:B
            bastore
         4: .line 118
            aload 0 /* this */
            iconst_0
            putfield sun.jvm.hotspot.debugger.InputLexer.pushedBack:Z
         5: .line 119
            iinc 4 /* startIdx */ 1
         6: .line 120
            iinc 5 /* numRead */ 1
         7: .line 122
            goto 9
         8: .line 123
      StackMap locals: int int
      StackMap stack:
            iload 5 /* numRead */
            aload 0 /* this */
            getfield sun.jvm.hotspot.debugger.InputLexer.in:Ljava/io/BufferedInputStream;
            aload 1 /* buf */
            iload 4 /* startIdx */
            iload 5 /* numRead */
            iadd
            iload 3 /* len */
            iload 5 /* numRead */
            isub
            invokevirtual java.io.BufferedInputStream.read:([BII)I
            iadd
            istore 5 /* numRead */
         9: .line 122
      StackMap locals:
      StackMap stack:
            iload 5 /* numRead */
            iload 3 /* len */
            if_icmplt 8
        10: .line 129
            return
        end local 5 // int numRead
        end local 4 // int startIdx
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] buf
        end local 0 // sun.jvm.hotspot.debugger.InputLexer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lsun/jvm/hotspot/debugger/InputLexer;
            0   11     1       buf  [B
            0   11     2       off  I
            0   11     3       len  I
            1   11     4  startIdx  I
            2   11     5   numRead  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      buf   
      off   
      len   

  public char readChar();
    descriptor: ()C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.InputLexer this
         0: .line 133
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.readByte:()B
            sipush 255
            iand
            istore 1 /* hi */
        start local 1 // int hi
         1: .line 134
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.readByte:()B
            sipush 255
            iand
            istore 2 /* lo */
        start local 2 // int lo
         2: .line 135
            iload 1 /* hi */
            bipush 8
            ishl
            iload 2 /* lo */
            ior
            i2c
            ireturn
        end local 2 // int lo
        end local 1 // int hi
        end local 0 // sun.jvm.hotspot.debugger.InputLexer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/jvm/hotspot/debugger/InputLexer;
            1    3     1    hi  I
            2    3     2    lo  I
    Exceptions:
      throws java.io.IOException

  public long readUnsignedInt();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=9, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.InputLexer this
         0: .line 141
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.readByte:()B
            i2l
            ldc 255
            land
            lstore 1 /* b1 */
        start local 1 // long b1
         1: .line 142
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.readByte:()B
            i2l
            ldc 255
            land
            lstore 3 /* b2 */
        start local 3 // long b2
         2: .line 143
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.readByte:()B
            i2l
            ldc 255
            land
            lstore 5 /* b3 */
        start local 5 // long b3
         3: .line 144
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.readByte:()B
            i2l
            ldc 255
            land
            lstore 7 /* b4 */
        start local 7 // long b4
         4: .line 146
            lload 1 /* b1 */
            bipush 24
            lshl
            lload 3 /* b2 */
            bipush 16
            lshl
            lor
            lload 5 /* b3 */
            bipush 8
            lshl
            lor
            lload 7 /* b4 */
            lor
            lreturn
        end local 7 // long b4
        end local 5 // long b3
        end local 3 // long b2
        end local 1 // long b1
        end local 0 // sun.jvm.hotspot.debugger.InputLexer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/jvm/hotspot/debugger/InputLexer;
            1    5     1    b1  J
            2    5     3    b2  J
            3    5     5    b3  J
            4    5     7    b4  J
    Exceptions:
      throws java.io.IOException

  public java.lang.String readByteString(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // sun.jvm.hotspot.debugger.InputLexer this
        start local 1 // int len
         0: .line 151
            iload 1 /* len */
            newarray 8
            astore 2 /* b */
        start local 2 // byte[] b
         1: .line 152
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 153
      StackMap locals: byte[] int
      StackMap stack:
            aload 2 /* b */
            iload 3 /* i */
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.readByte:()B
            bastore
         4: .line 152
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            iload 1 /* len */
            if_icmplt 3
        end local 3 // int i
         6: .line 156
            new java.lang.String
            dup
            aload 2 /* b */
            ldc "US-ASCII"
            invokespecial java.lang.String.<init>:([BLjava/lang/String;)V
         7: areturn
         8: .line 158
      StackMap locals: sun.jvm.hotspot.debugger.InputLexer int byte[]
      StackMap stack: java.io.UnsupportedEncodingException
            astore 3 /* e */
        start local 3 // java.io.UnsupportedEncodingException e
         9: .line 159
            new java.io.IOException
            dup
            aload 3 /* e */
            invokevirtual java.io.UnsupportedEncodingException.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 3 // java.io.UnsupportedEncodingException e
        end local 2 // byte[] b
        end local 1 // int len
        end local 0 // sun.jvm.hotspot.debugger.InputLexer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lsun/jvm/hotspot/debugger/InputLexer;
            0   10     1   len  I
            1   10     2     b  [B
            2    6     3     i  I
            9   10     3     e  Ljava/io/UnsupportedEncodingException;
      Exception table:
        from    to  target  type
           6     7       8  Class java.io.UnsupportedEncodingException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      len   

  public java.lang.String readCharString(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // sun.jvm.hotspot.debugger.InputLexer this
        start local 1 // int len
         0: .line 165
            iload 1 /* len */
            newarray 5
            astore 2 /* c */
        start local 2 // char[] c
         1: .line 166
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 167
      StackMap locals: char[] int
      StackMap stack:
            aload 2 /* c */
            iload 3 /* i */
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.readChar:()C
            castore
         4: .line 166
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            iload 1 /* len */
            if_icmplt 3
        end local 3 // int i
         6: .line 169
            new java.lang.String
            dup
            aload 2 /* c */
            invokespecial java.lang.String.<init>:([C)V
            areturn
        end local 2 // char[] c
        end local 1 // int len
        end local 0 // sun.jvm.hotspot.debugger.InputLexer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lsun/jvm/hotspot/debugger/InputLexer;
            0    7     1   len  I
            1    7     2     c  [C
            2    6     3     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      len   

  private void skipWhitespace();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.InputLexer this
         0: .line 178
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.readByte:()B
            dup
            istore 1 /* b */
        start local 1 // byte b
         1: i2c
            invokestatic java.lang.Character.isWhitespace:(C)Z
            ifne 0
         2: .line 180
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual sun.jvm.hotspot.debugger.InputLexer.pushBack:(B)V
         3: .line 181
            return
        end local 1 // byte b
        end local 0 // sun.jvm.hotspot.debugger.InputLexer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/jvm/hotspot/debugger/InputLexer;
            1    4     1     b  B
    Exceptions:
      throws java.io.IOException

  private boolean isHexDigit(char);
    descriptor: (C)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.debugger.InputLexer this
        start local 1 // char c
         0: .line 184
            bipush 48
            iload 1 /* c */
            if_icmpgt 1
            iload 1 /* c */
            bipush 57
            if_icmple 5
         1: .line 185
      StackMap locals:
      StackMap stack:
            bipush 97
            iload 1 /* c */
            if_icmpgt 2
            iload 1 /* c */
            bipush 102
            if_icmple 5
         2: .line 186
      StackMap locals:
      StackMap stack:
            bipush 65
            iload 1 /* c */
            if_icmpgt 4
            iload 1 /* c */
            bipush 70
         3: .line 184
            if_icmple 5
      StackMap locals:
      StackMap stack:
         4: iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_1
            ireturn
        end local 1 // char c
        end local 0 // sun.jvm.hotspot.debugger.InputLexer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/jvm/hotspot/debugger/InputLexer;
            0    6     1     c  C
    MethodParameters:
      Name  Flags
      c     

  private void pushBack(byte);
    descriptor: (B)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.debugger.InputLexer this
        start local 1 // byte b
         0: .line 190
            aload 0 /* this */
            getfield sun.jvm.hotspot.debugger.InputLexer.pushedBack:Z
            ifeq 2
         1: .line 191
            new java.lang.InternalError
            dup
            ldc "Only one character pushback supported"
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 193
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* b */
            putfield sun.jvm.hotspot.debugger.InputLexer.backBuf:B
         3: .line 194
            aload 0 /* this */
            iconst_1
            putfield sun.jvm.hotspot.debugger.InputLexer.pushedBack:Z
         4: .line 195
            return
        end local 1 // byte b
        end local 0 // sun.jvm.hotspot.debugger.InputLexer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/jvm/hotspot/debugger/InputLexer;
            0    5     1     b  B
    MethodParameters:
      Name  Flags
      b     

  private byte readByteInternal();
    descriptor: ()B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.InputLexer this
         0: .line 198
            aload 0 /* this */
            getfield sun.jvm.hotspot.debugger.InputLexer.in:Ljava/io/BufferedInputStream;
            invokevirtual java.io.BufferedInputStream.read:()I
            istore 1 /* i */
        start local 1 // int i
         1: .line 199
            iload 1 /* i */
            iconst_m1
            if_icmpne 3
         2: .line 200
            new java.io.IOException
            dup
            ldc "End-of-file reached while reading from server"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 202
      StackMap locals: int
      StackMap stack:
            iload 1 /* i */
            i2b
            ireturn
        end local 1 // int i
        end local 0 // sun.jvm.hotspot.debugger.InputLexer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/jvm/hotspot/debugger/InputLexer;
            1    4     1     i  I
    Exceptions:
      throws java.io.IOException

  private void error();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.InputLexer this
         0: .line 206
            new java.io.IOException
            dup
            ldc "Error parsing output of debug server"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // sun.jvm.hotspot.debugger.InputLexer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/debugger/InputLexer;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "InputLexer.java"