public class sun.io.ByteToCharASCII extends sun.io.ByteToCharConverter
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.io.ByteToCharASCII
  super_class: sun.io.ByteToCharConverter
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.io.ByteToCharASCII this
         0: .line 33
            aload 0 /* this */
            invokespecial sun.io.ByteToCharConverter.<init>:()V
            return
        end local 0 // sun.io.ByteToCharASCII this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/io/ByteToCharASCII;

  public java.lang.String getCharacterEncoding();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.io.ByteToCharASCII this
         0: .line 38
            ldc "ASCII"
            areturn
        end local 0 // sun.io.ByteToCharASCII this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/io/ByteToCharASCII;

  public int flush(char[], int, int);
    descriptor: ([CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // sun.io.ByteToCharASCII this
        start local 1 // char[] output
        start local 2 // int outStart
        start local 3 // int outEnd
         0: .line 43
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield sun.io.ByteToCharASCII.charOff:I
            putfield sun.io.ByteToCharASCII.byteOff:I
         1: .line 44
            iconst_0
            ireturn
        end local 3 // int outEnd
        end local 2 // int outStart
        end local 1 // char[] output
        end local 0 // sun.io.ByteToCharASCII this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lsun/io/ByteToCharASCII;
            0    2     1    output  [C
            0    2     2  outStart  I
            0    2     3    outEnd  I
    MethodParameters:
          Name  Flags
      output    
      outStart  
      outEnd    

  public int convert(byte[], int, int, char[], int, int);
    descriptor: ([BII[CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=7
        start local 0 // sun.io.ByteToCharASCII this
        start local 1 // byte[] input
        start local 2 // int inOff
        start local 3 // int inEnd
        start local 4 // char[] output
        start local 5 // int outOff
        start local 6 // int outEnd
         0: .line 56
            aload 0 /* this */
            iload 5 /* outOff */
            putfield sun.io.ByteToCharASCII.charOff:I
         1: .line 57
            aload 0 /* this */
            iload 2 /* inOff */
            putfield sun.io.ByteToCharASCII.byteOff:I
         2: .line 60
            goto 12
         3: .line 63
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.io.ByteToCharASCII.charOff:I
            iload 6 /* outEnd */
            if_icmplt 5
         4: .line 64
            new sun.io.ConversionBufferFullException
            dup
            invokespecial sun.io.ConversionBufferFullException.<init>:()V
            athrow
         5: .line 67
      StackMap locals:
      StackMap stack:
            aload 1 /* input */
            aload 0 /* this */
            dup
            getfield sun.io.ByteToCharASCII.byteOff:I
            dup_x1
            iconst_1
            iadd
            putfield sun.io.ByteToCharASCII.byteOff:I
            baload
            istore 7 /* inputByte */
        start local 7 // byte inputByte
         6: .line 69
            iload 7 /* inputByte */
            iflt 8
         7: .line 70
            aload 4 /* output */
            aload 0 /* this */
            dup
            getfield sun.io.ByteToCharASCII.charOff:I
            dup_x1
            iconst_1
            iadd
            putfield sun.io.ByteToCharASCII.charOff:I
            iload 7 /* inputByte */
            i2c
            castore
            goto 12
         8: .line 72
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.io.ByteToCharASCII.subMode:Z
            ifeq 10
         9: .line 73
            aload 4 /* output */
            aload 0 /* this */
            dup
            getfield sun.io.ByteToCharASCII.charOff:I
            dup_x1
            iconst_1
            iadd
            putfield sun.io.ByteToCharASCII.charOff:I
            ldc 65533
            castore
            goto 12
        10: .line 75
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield sun.io.ByteToCharASCII.badInputLength:I
        11: .line 76
            new sun.io.UnknownCharacterException
            dup
            invokespecial sun.io.UnknownCharacterException.<init>:()V
            athrow
        end local 7 // byte inputByte
        12: .line 60
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.io.ByteToCharASCII.byteOff:I
            iload 3 /* inEnd */
            if_icmplt 3
        13: .line 82
            aload 0 /* this */
            getfield sun.io.ByteToCharASCII.charOff:I
            iload 5 /* outOff */
            isub
            ireturn
        end local 6 // int outEnd
        end local 5 // int outOff
        end local 4 // char[] output
        end local 3 // int inEnd
        end local 2 // int inOff
        end local 1 // byte[] input
        end local 0 // sun.io.ByteToCharASCII this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   14     0       this  Lsun/io/ByteToCharASCII;
            0   14     1      input  [B
            0   14     2      inOff  I
            0   14     3      inEnd  I
            0   14     4     output  [C
            0   14     5     outOff  I
            0   14     6     outEnd  I
            6   12     7  inputByte  B
    Exceptions:
      throws sun.io.ConversionBufferFullException, sun.io.UnknownCharacterException
    MethodParameters:
        Name  Flags
      input   
      inOff   
      inEnd   
      output  
      outOff  
      outEnd  

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // sun.io.ByteToCharASCII this
         0: .line 89
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield sun.io.ByteToCharASCII.charOff:I
            putfield sun.io.ByteToCharASCII.byteOff:I
         1: .line 90
            return
        end local 0 // sun.io.ByteToCharASCII this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/io/ByteToCharASCII;
}
SourceFile: "ByteToCharASCII.java"