public class org.yaml.snakeyaml.reader.UnicodeReader extends java.io.Reader
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.yaml.snakeyaml.reader.UnicodeReader
  super_class: java.io.Reader
{
  private static final java.nio.charset.Charset UTF8;
    descriptor: Ljava/nio/charset/Charset;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.nio.charset.Charset UTF16BE;
    descriptor: Ljava/nio/charset/Charset;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.nio.charset.Charset UTF16LE;
    descriptor: Ljava/nio/charset/Charset;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  java.io.PushbackInputStream internalIn;
    descriptor: Ljava/io/PushbackInputStream;
    flags: (0x0000) 

  java.io.InputStreamReader internalIn2;
    descriptor: Ljava/io/InputStreamReader;
    flags: (0x0000) 

  private static final int BOM_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 3

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 54
            ldc "UTF-8"
            invokestatic java.nio.charset.Charset.forName:(Ljava/lang/String;)Ljava/nio/charset/Charset;
            putstatic org.yaml.snakeyaml.reader.UnicodeReader.UTF8:Ljava/nio/charset/Charset;
         1: .line 55
            ldc "UTF-16BE"
            invokestatic java.nio.charset.Charset.forName:(Ljava/lang/String;)Ljava/nio/charset/Charset;
            putstatic org.yaml.snakeyaml.reader.UnicodeReader.UTF16BE:Ljava/nio/charset/Charset;
         2: .line 56
            ldc "UTF-16LE"
            invokestatic java.nio.charset.Charset.forName:(Ljava/lang/String;)Ljava/nio/charset/Charset;
            putstatic org.yaml.snakeyaml.reader.UnicodeReader.UTF16LE:Ljava/nio/charset/Charset;
         3: .line 61
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.yaml.snakeyaml.reader.UnicodeReader this
        start local 1 // java.io.InputStream in
         0: .line 67
            aload 0 /* this */
            invokespecial java.io.Reader.<init>:()V
         1: .line 59
            aload 0 /* this */
            aconst_null
            putfield org.yaml.snakeyaml.reader.UnicodeReader.internalIn2:Ljava/io/InputStreamReader;
         2: .line 68
            aload 0 /* this */
            new java.io.PushbackInputStream
            dup
            aload 1 /* in */
            iconst_3
            invokespecial java.io.PushbackInputStream.<init>:(Ljava/io/InputStream;I)V
            putfield org.yaml.snakeyaml.reader.UnicodeReader.internalIn:Ljava/io/PushbackInputStream;
         3: .line 69
            return
        end local 1 // java.io.InputStream in
        end local 0 // org.yaml.snakeyaml.reader.UnicodeReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/yaml/snakeyaml/reader/UnicodeReader;
            0    4     1    in  Ljava/io/InputStream;
    MethodParameters:
      Name  Flags
      in    

  public java.lang.String getEncoding();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.yaml.snakeyaml.reader.UnicodeReader this
         0: .line 77
            aload 0 /* this */
            getfield org.yaml.snakeyaml.reader.UnicodeReader.internalIn2:Ljava/io/InputStreamReader;
            invokevirtual java.io.InputStreamReader.getEncoding:()Ljava/lang/String;
            areturn
        end local 0 // org.yaml.snakeyaml.reader.UnicodeReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/yaml/snakeyaml/reader/UnicodeReader;

  protected void init();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=6, args_size=1
        start local 0 // org.yaml.snakeyaml.reader.UnicodeReader this
         0: .line 86
            aload 0 /* this */
            getfield org.yaml.snakeyaml.reader.UnicodeReader.internalIn2:Ljava/io/InputStreamReader;
            ifnull 2
         1: .line 87
            return
         2: .line 90
      StackMap locals:
      StackMap stack:
            iconst_3
            newarray 8
            astore 2 /* bom */
        start local 2 // byte[] bom
         3: .line 92
            aload 0 /* this */
            getfield org.yaml.snakeyaml.reader.UnicodeReader.internalIn:Ljava/io/PushbackInputStream;
            aload 2 /* bom */
            iconst_0
            aload 2 /* bom */
            arraylength
            invokevirtual java.io.PushbackInputStream.read:([BII)I
            istore 3 /* n */
        start local 3 // int n
         4: .line 94
            aload 2 /* bom */
            iconst_0
            baload
            bipush -17
            if_icmpne 8
            aload 2 /* bom */
            iconst_1
            baload
            bipush -69
            if_icmpne 8
            aload 2 /* bom */
            iconst_2
            baload
            bipush -65
            if_icmpne 8
         5: .line 95
            getstatic org.yaml.snakeyaml.reader.UnicodeReader.UTF8:Ljava/nio/charset/Charset;
            astore 1 /* encoding */
        start local 1 // java.nio.charset.Charset encoding
         6: .line 96
            iload 3 /* n */
            iconst_3
            isub
            istore 4 /* unread */
        start local 4 // int unread
         7: .line 97
            goto 18
        end local 4 // int unread
        end local 1 // java.nio.charset.Charset encoding
      StackMap locals: org.yaml.snakeyaml.reader.UnicodeReader top byte[] int
      StackMap stack:
         8: aload 2 /* bom */
            iconst_0
            baload
            bipush -2
            if_icmpne 12
            aload 2 /* bom */
            iconst_1
            baload
            iconst_m1
            if_icmpne 12
         9: .line 98
            getstatic org.yaml.snakeyaml.reader.UnicodeReader.UTF16BE:Ljava/nio/charset/Charset;
            astore 1 /* encoding */
        start local 1 // java.nio.charset.Charset encoding
        10: .line 99
            iload 3 /* n */
            iconst_2
            isub
            istore 4 /* unread */
        start local 4 // int unread
        11: .line 100
            goto 18
        end local 4 // int unread
        end local 1 // java.nio.charset.Charset encoding
      StackMap locals:
      StackMap stack:
        12: aload 2 /* bom */
            iconst_0
            baload
            iconst_m1
            if_icmpne 16
            aload 2 /* bom */
            iconst_1
            baload
            bipush -2
            if_icmpne 16
        13: .line 101
            getstatic org.yaml.snakeyaml.reader.UnicodeReader.UTF16LE:Ljava/nio/charset/Charset;
            astore 1 /* encoding */
        start local 1 // java.nio.charset.Charset encoding
        14: .line 102
            iload 3 /* n */
            iconst_2
            isub
            istore 4 /* unread */
        start local 4 // int unread
        15: .line 103
            goto 18
        end local 4 // int unread
        end local 1 // java.nio.charset.Charset encoding
        16: .line 105
      StackMap locals:
      StackMap stack:
            getstatic org.yaml.snakeyaml.reader.UnicodeReader.UTF8:Ljava/nio/charset/Charset;
            astore 1 /* encoding */
        start local 1 // java.nio.charset.Charset encoding
        17: .line 106
            iload 3 /* n */
            istore 4 /* unread */
        start local 4 // int unread
        18: .line 109
      StackMap locals: org.yaml.snakeyaml.reader.UnicodeReader java.nio.charset.Charset byte[] int int
      StackMap stack:
            iload 4 /* unread */
            ifle 20
        19: .line 110
            aload 0 /* this */
            getfield org.yaml.snakeyaml.reader.UnicodeReader.internalIn:Ljava/io/PushbackInputStream;
            aload 2 /* bom */
            iload 3 /* n */
            iload 4 /* unread */
            isub
            iload 4 /* unread */
            invokevirtual java.io.PushbackInputStream.unread:([BII)V
        20: .line 113
      StackMap locals:
      StackMap stack:
            aload 1 /* encoding */
            invokevirtual java.nio.charset.Charset.newDecoder:()Ljava/nio/charset/CharsetDecoder;
        21: .line 114
            getstatic java.nio.charset.CodingErrorAction.REPORT:Ljava/nio/charset/CodingErrorAction;
        22: .line 113
            invokevirtual java.nio.charset.CharsetDecoder.onUnmappableCharacter:(Ljava/nio/charset/CodingErrorAction;)Ljava/nio/charset/CharsetDecoder;
            astore 5 /* decoder */
        start local 5 // java.nio.charset.CharsetDecoder decoder
        23: .line 115
            aload 0 /* this */
            new java.io.InputStreamReader
            dup
            aload 0 /* this */
            getfield org.yaml.snakeyaml.reader.UnicodeReader.internalIn:Ljava/io/PushbackInputStream;
            aload 5 /* decoder */
            invokespecial java.io.InputStreamReader.<init>:(Ljava/io/InputStream;Ljava/nio/charset/CharsetDecoder;)V
            putfield org.yaml.snakeyaml.reader.UnicodeReader.internalIn2:Ljava/io/InputStreamReader;
        24: .line 116
            return
        end local 5 // java.nio.charset.CharsetDecoder decoder
        end local 4 // int unread
        end local 3 // int n
        end local 2 // byte[] bom
        end local 1 // java.nio.charset.Charset encoding
        end local 0 // org.yaml.snakeyaml.reader.UnicodeReader this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   25     0      this  Lorg/yaml/snakeyaml/reader/UnicodeReader;
            6    8     1  encoding  Ljava/nio/charset/Charset;
           10   12     1  encoding  Ljava/nio/charset/Charset;
           14   16     1  encoding  Ljava/nio/charset/Charset;
           17   25     1  encoding  Ljava/nio/charset/Charset;
            3   25     2       bom  [B
            4   25     3         n  I
            7    8     4    unread  I
           11   12     4    unread  I
           15   16     4    unread  I
           18   25     4    unread  I
           23   25     5   decoder  Ljava/nio/charset/CharsetDecoder;
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.yaml.snakeyaml.reader.UnicodeReader this
         0: .line 119
            aload 0 /* this */
            invokevirtual org.yaml.snakeyaml.reader.UnicodeReader.init:()V
         1: .line 120
            aload 0 /* this */
            getfield org.yaml.snakeyaml.reader.UnicodeReader.internalIn2:Ljava/io/InputStreamReader;
            invokevirtual java.io.InputStreamReader.close:()V
         2: .line 121
            return
        end local 0 // org.yaml.snakeyaml.reader.UnicodeReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/yaml/snakeyaml/reader/UnicodeReader;
    Exceptions:
      throws java.io.IOException

  public int read(char[], int, int);
    descriptor: ([CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.yaml.snakeyaml.reader.UnicodeReader this
        start local 1 // char[] cbuf
        start local 2 // int off
        start local 3 // int len
         0: .line 124
            aload 0 /* this */
            invokevirtual org.yaml.snakeyaml.reader.UnicodeReader.init:()V
         1: .line 125
            aload 0 /* this */
            getfield org.yaml.snakeyaml.reader.UnicodeReader.internalIn2:Ljava/io/InputStreamReader;
            aload 1 /* cbuf */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.InputStreamReader.read:([CII)I
            ireturn
        end local 3 // int len
        end local 2 // int off
        end local 1 // char[] cbuf
        end local 0 // org.yaml.snakeyaml.reader.UnicodeReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/yaml/snakeyaml/reader/UnicodeReader;
            0    2     1  cbuf  [C
            0    2     2   off  I
            0    2     3   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  
      off   
      len   
}
SourceFile: "UnicodeReader.java"