class org.apache.bcel.classfile.Utility$JavaReader extends java.io.FilterReader
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.bcel.classfile.Utility$JavaReader
  super_class: java.io.FilterReader
{
  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 // org.apache.bcel.classfile.Utility$JavaReader this
        start local 1 // java.io.Reader in
         0: .line 1538
            aload 0 /* this */
            aload 1 /* in */
            invokespecial java.io.FilterReader.<init>:(Ljava/io/Reader;)V
         1: .line 1539
            return
        end local 1 // java.io.Reader in
        end local 0 // org.apache.bcel.classfile.Utility$JavaReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/bcel/classfile/Utility$JavaReader;
            0    2     1    in  Ljava/io/Reader;
    MethodParameters:
      Name  Flags
      in    final

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // org.apache.bcel.classfile.Utility$JavaReader this
         0: .line 1544
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Utility$JavaReader.in:Ljava/io/Reader;
            invokevirtual java.io.Reader.read:()I
            istore 1 /* b */
        start local 1 // int b
         1: .line 1545
            iload 1 /* b */
            bipush 36
            if_icmpeq 3
         2: .line 1546
            iload 1 /* b */
            ireturn
         3: .line 1548
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Utility$JavaReader.in:Ljava/io/Reader;
            invokevirtual java.io.Reader.read:()I
            istore 2 /* i */
        start local 2 // int i
         4: .line 1549
            iload 2 /* i */
            ifge 6
         5: .line 1550
            iconst_m1
            ireturn
         6: .line 1552
      StackMap locals: int
      StackMap stack:
            iload 2 /* i */
            bipush 48
            if_icmplt 7
            iload 2 /* i */
            bipush 57
            if_icmple 8
      StackMap locals:
      StackMap stack:
         7: iload 2 /* i */
            bipush 97
            if_icmplt 16
            iload 2 /* i */
            bipush 102
            if_icmpgt 16
         8: .line 1553
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.bcel.classfile.Utility$JavaReader.in:Ljava/io/Reader;
            invokevirtual java.io.Reader.read:()I
            istore 3 /* j */
        start local 3 // int j
         9: .line 1554
            iload 3 /* j */
            ifge 11
        10: .line 1555
            iconst_m1
            ireturn
        11: .line 1557
      StackMap locals: int
      StackMap stack:
            iconst_2
            newarray 5
            dup
            iconst_0
        12: .line 1558
            iload 2 /* i */
            i2c
            castore
            dup
            iconst_1
            iload 3 /* j */
            i2c
            castore
        13: .line 1557
            astore 4 /* tmp */
        start local 4 // char[] tmp
        14: .line 1560
            new java.lang.String
            dup
            aload 4 /* tmp */
            invokespecial java.lang.String.<init>:([C)V
            bipush 16
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/String;I)I
            istore 5 /* s */
        start local 5 // int s
        15: .line 1561
            iload 5 /* s */
            ireturn
        end local 5 // int s
        end local 4 // char[] tmp
        end local 3 // int j
        16: .line 1563
      StackMap locals:
      StackMap stack:
            getstatic org.apache.bcel.classfile.Utility.MAP_CHAR:[I
            iload 2 /* i */
            iaload
            ireturn
        end local 2 // int i
        end local 1 // int b
        end local 0 // org.apache.bcel.classfile.Utility$JavaReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lorg/apache/bcel/classfile/Utility$JavaReader;
            1   17     1     b  I
            4   17     2     i  I
            9   16     3     j  I
           14   16     4   tmp  [C
           15   16     5     s  I
    Exceptions:
      throws java.io.IOException

  public int read(char[], int, int);
    descriptor: ([CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // org.apache.bcel.classfile.Utility$JavaReader this
        start local 1 // char[] cbuf
        start local 2 // int off
        start local 3 // int len
         0: .line 1569
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         1: goto 4
         2: .line 1570
      StackMap locals: int
      StackMap stack:
            aload 1 /* cbuf */
            iload 2 /* off */
            iload 4 /* i */
            iadd
            aload 0 /* this */
            invokevirtual org.apache.bcel.classfile.Utility$JavaReader.read:()I
            i2c
            castore
         3: .line 1569
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 4 /* i */
            iload 3 /* len */
            if_icmplt 2
        end local 4 // int i
         5: .line 1572
            iload 3 /* len */
            ireturn
        end local 3 // int len
        end local 2 // int off
        end local 1 // char[] cbuf
        end local 0 // org.apache.bcel.classfile.Utility$JavaReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/bcel/classfile/Utility$JavaReader;
            0    6     1  cbuf  [C
            0    6     2   off  I
            0    6     3   len  I
            1    5     4     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  final
      off   final
      len   final
}
SourceFile: "Utility.java"
NestHost: org.apache.bcel.classfile.Utility
InnerClasses:
  private JavaReader = org.apache.bcel.classfile.Utility$JavaReader of org.apache.bcel.classfile.Utility