public final class com.ctc.wstx.io.AsciiReader extends com.ctc.wstx.io.BaseReader
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.ctc.wstx.io.AsciiReader
  super_class: com.ctc.wstx.io.BaseReader
{
  boolean mXml11;
    descriptor: Z
    flags: (0x0000) 

  int mCharCount;
    descriptor: I
    flags: (0x0000) 

  public void <init>(com.ctc.wstx.api.ReaderConfig, java.io.InputStream, byte[], int, int, boolean);
    descriptor: (Lcom/ctc/wstx/api/ReaderConfig;Ljava/io/InputStream;[BIIZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=7, args_size=7
        start local 0 // com.ctc.wstx.io.AsciiReader this
        start local 1 // com.ctc.wstx.api.ReaderConfig cfg
        start local 2 // java.io.InputStream in
        start local 3 // byte[] buf
        start local 4 // int ptr
        start local 5 // int len
        start local 6 // boolean recycleBuffer
         0: .line 49
            aload 0 /* this */
            aload 1 /* cfg */
            aload 2 /* in */
            aload 3 /* buf */
            iload 4 /* ptr */
            iload 5 /* len */
            iload 6 /* recycleBuffer */
            invokespecial com.ctc.wstx.io.BaseReader.<init>:(Lcom/ctc/wstx/api/ReaderConfig;Ljava/io/InputStream;[BIIZ)V
         1: .line 32
            aload 0 /* this */
            iconst_0
            putfield com.ctc.wstx.io.AsciiReader.mXml11:Z
         2: .line 38
            aload 0 /* this */
            iconst_0
            putfield com.ctc.wstx.io.AsciiReader.mCharCount:I
         3: .line 50
            return
        end local 6 // boolean recycleBuffer
        end local 5 // int len
        end local 4 // int ptr
        end local 3 // byte[] buf
        end local 2 // java.io.InputStream in
        end local 1 // com.ctc.wstx.api.ReaderConfig cfg
        end local 0 // com.ctc.wstx.io.AsciiReader this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lcom/ctc/wstx/io/AsciiReader;
            0    4     1            cfg  Lcom/ctc/wstx/api/ReaderConfig;
            0    4     2             in  Ljava/io/InputStream;
            0    4     3            buf  [B
            0    4     4            ptr  I
            0    4     5            len  I
            0    4     6  recycleBuffer  Z
    MethodParameters:
               Name  Flags
      cfg            
      in             
      buf            
      ptr            
      len            
      recycleBuffer  

  public void setXmlCompliancy(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.ctc.wstx.io.AsciiReader this
        start local 1 // int xmlVersion
         0: .line 54
            aload 0 /* this */
            iload 1 /* xmlVersion */
            sipush 272
            if_icmpne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack: com.ctc.wstx.io.AsciiReader
         1: iconst_0
      StackMap locals: com.ctc.wstx.io.AsciiReader int
      StackMap stack: com.ctc.wstx.io.AsciiReader int
         2: putfield com.ctc.wstx.io.AsciiReader.mXml11:Z
         3: .line 55
            return
        end local 1 // int xmlVersion
        end local 0 // com.ctc.wstx.io.AsciiReader this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lcom/ctc/wstx/io/AsciiReader;
            0    4     1  xmlVersion  I
    MethodParameters:
            Name  Flags
      xmlVersion  

  public int read(char[], int, int);
    descriptor: ([CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=4
        start local 0 // com.ctc.wstx.io.AsciiReader this
        start local 1 // char[] cbuf
        start local 2 // int start
        start local 3 // int len
         0: .line 67
            iload 2 /* start */
            iflt 1
            iload 2 /* start */
            iload 3 /* len */
            iadd
            aload 1 /* cbuf */
            arraylength
            if_icmple 2
         1: .line 68
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* cbuf */
            iload 2 /* start */
            iload 3 /* len */
            invokevirtual com.ctc.wstx.io.AsciiReader.reportBounds:([CII)V
         2: .line 71
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.ctc.wstx.io.AsciiReader.mByteBuffer:[B
            ifnonnull 4
         3: .line 72
            iconst_m1
            ireturn
         4: .line 74
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            iconst_1
            if_icmpge 6
         5: .line 75
            iconst_0
            ireturn
         6: .line 79
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.ctc.wstx.io.AsciiReader.mByteBufferEnd:I
            aload 0 /* this */
            getfield com.ctc.wstx.io.AsciiReader.mBytePtr:I
            isub
            istore 4 /* avail */
        start local 4 // int avail
         7: .line 80
            iload 4 /* avail */
            ifgt 16
         8: .line 81
            aload 0 /* this */
            dup
            getfield com.ctc.wstx.io.AsciiReader.mCharCount:I
            aload 0 /* this */
            getfield com.ctc.wstx.io.AsciiReader.mByteBufferEnd:I
            iadd
            putfield com.ctc.wstx.io.AsciiReader.mCharCount:I
         9: .line 83
            aload 0 /* this */
            invokevirtual com.ctc.wstx.io.AsciiReader.readBytes:()I
            istore 5 /* count */
        start local 5 // int count
        10: .line 84
            iload 5 /* count */
            ifgt 15
        11: .line 85
            iload 5 /* count */
            ifne 13
        12: .line 86
            aload 0 /* this */
            invokevirtual com.ctc.wstx.io.AsciiReader.reportStrangeStream:()V
        13: .line 91
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.ctc.wstx.io.AsciiReader.freeBuffers:()V
        14: .line 92
            iconst_m1
            ireturn
        15: .line 94
      StackMap locals:
      StackMap stack:
            iload 5 /* count */
            istore 4 /* avail */
        end local 5 // int count
        16: .line 99
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            iload 4 /* avail */
            if_icmple 18
        17: .line 100
            iload 4 /* avail */
            istore 3 /* len */
        18: .line 102
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.ctc.wstx.io.AsciiReader.mBytePtr:I
            istore 5 /* i */
        start local 5 // int i
        19: .line 103
            iload 5 /* i */
            iload 3 /* len */
            iadd
            istore 6 /* last */
        start local 6 // int last
        20: .line 105
            goto 30
        21: .line 106
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.ctc.wstx.io.AsciiReader.mByteBuffer:[B
            iload 5 /* i */
            iinc 5 /* i */ 1
            baload
            i2c
            istore 7 /* c */
        start local 7 // char c
        22: .line 107
            iload 7 /* c */
            bipush 127
            if_icmplt 29
        23: .line 108
            iload 7 /* c */
            bipush 127
            if_icmple 26
        24: .line 109
            aload 0 /* this */
            iload 7 /* c */
            invokevirtual com.ctc.wstx.io.AsciiReader.reportInvalidAscii:(C)V
        25: .line 110
            goto 29
        26: .line 111
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.ctc.wstx.io.AsciiReader.mXml11:Z
            ifeq 29
        27: .line 112
            aload 0 /* this */
            getfield com.ctc.wstx.io.AsciiReader.mCharCount:I
            aload 0 /* this */
            getfield com.ctc.wstx.io.AsciiReader.mBytePtr:I
            iadd
            istore 8 /* pos */
        start local 8 // int pos
        28: .line 113
            aload 0 /* this */
            iload 7 /* c */
            iload 8 /* pos */
            iload 8 /* pos */
            invokevirtual com.ctc.wstx.io.AsciiReader.reportInvalidXml11:(III)V
        end local 8 // int pos
        29: .line 117
      StackMap locals:
      StackMap stack:
            aload 1 /* cbuf */
            iload 2 /* start */
            iinc 2 /* start */ 1
            iload 7 /* c */
            castore
        end local 7 // char c
        30: .line 105
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            iload 6 /* last */
            if_icmplt 21
        31: .line 120
            aload 0 /* this */
            iload 6 /* last */
            putfield com.ctc.wstx.io.AsciiReader.mBytePtr:I
        32: .line 121
            iload 3 /* len */
            ireturn
        end local 6 // int last
        end local 5 // int i
        end local 4 // int avail
        end local 3 // int len
        end local 2 // int start
        end local 1 // char[] cbuf
        end local 0 // com.ctc.wstx.io.AsciiReader this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   33     0   this  Lcom/ctc/wstx/io/AsciiReader;
            0   33     1   cbuf  [C
            0   33     2  start  I
            0   33     3    len  I
            7   33     4  avail  I
           10   16     5  count  I
           19   33     5      i  I
           20   33     6   last  I
           22   30     7      c  C
           28   29     8    pos  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      cbuf   
      start  
      len    

  private void reportInvalidAscii(char);
    descriptor: (C)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.ctc.wstx.io.AsciiReader this
        start local 1 // char c
         0: .line 131
            new java.io.CharConversionException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid ascii byte; value above 7-bit ascii range ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* c */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "; at pos #"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.ctc.wstx.io.AsciiReader.mCharCount:I
            aload 0 /* this */
            getfield com.ctc.wstx.io.AsciiReader.mBytePtr:I
            iadd
            invokevirtual java.lang.StringBuilder.append:(I)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.CharConversionException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // char c
        end local 0 // com.ctc.wstx.io.AsciiReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/ctc/wstx/io/AsciiReader;
            0    1     1     c  C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      c     

  public void close();
    descriptor: ()V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial com.ctc.wstx.io.BaseReader.close:()V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException

  public int read();
    descriptor: ()I
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokespecial com.ctc.wstx.io.BaseReader.read:()I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException
}
SourceFile: "AsciiReader.java"