public class com.sun.tools.sjavac.AutoFlushWriter extends java.io.FilterWriter
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.tools.sjavac.AutoFlushWriter
  super_class: java.io.FilterWriter
{
  public void <init>(java.io.Writer);
    descriptor: (Ljava/io/Writer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.tools.sjavac.AutoFlushWriter this
        start local 1 // java.io.Writer out
         0: .line 35
            aload 0 /* this */
            aload 1 /* out */
            invokespecial java.io.FilterWriter.<init>:(Ljava/io/Writer;)V
         1: .line 36
            return
        end local 1 // java.io.Writer out
        end local 0 // com.sun.tools.sjavac.AutoFlushWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/sjavac/AutoFlushWriter;
            0    2     1   out  Ljava/io/Writer;
    MethodParameters:
      Name  Flags
      out   

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.tools.sjavac.AutoFlushWriter this
        start local 1 // int c
         0: .line 40
            aload 0 /* this */
            iload 1 /* c */
            invokespecial java.io.FilterWriter.write:(I)V
         1: .line 41
            iload 1 /* c */
            bipush 10
            if_icmpeq 2
            iload 1 /* c */
            bipush 13
            if_icmpne 3
         2: .line 42
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.tools.sjavac.AutoFlushWriter.flush:()V
         3: .line 43
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int c
        end local 0 // com.sun.tools.sjavac.AutoFlushWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/tools/sjavac/AutoFlushWriter;
            0    4     1     c  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      c     

  public void write(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.sun.tools.sjavac.AutoFlushWriter this
        start local 1 // java.lang.String str
        start local 2 // int off
        start local 3 // int len
         0: .line 47
            aload 0 /* this */
            aload 1 /* str */
            iload 2 /* off */
            iload 3 /* len */
            invokespecial java.io.FilterWriter.write:(Ljava/lang/String;II)V
         1: .line 48
            aload 1 /* str */
            ldc "\n"
            invokevirtual java.lang.String.contains:(Ljava/lang/CharSequence;)Z
            ifne 2
            aload 1 /* str */
            ldc "\r"
            invokevirtual java.lang.String.contains:(Ljava/lang/CharSequence;)Z
            ifeq 3
         2: .line 49
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.tools.sjavac.AutoFlushWriter.flush:()V
         3: .line 50
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // java.lang.String str
        end local 0 // com.sun.tools.sjavac.AutoFlushWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/tools/sjavac/AutoFlushWriter;
            0    4     1   str  Ljava/lang/String;
            0    4     2   off  I
            0    4     3   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      str   
      off   
      len   

  public void write(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=4
        start local 0 // com.sun.tools.sjavac.AutoFlushWriter this
        start local 1 // char[] cbuf
        start local 2 // int off
        start local 3 // int len
         0: .line 54
            aload 0 /* this */
            aload 1 /* cbuf */
            iload 2 /* off */
            iload 3 /* len */
            invokespecial java.io.FilterWriter.write:([CII)V
         1: .line 55
            aload 1 /* cbuf */
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 7
      StackMap locals: com.sun.tools.sjavac.AutoFlushWriter char[] int int top int int char[]
      StackMap stack:
         2: aload 7
            iload 5
            caload
            istore 4 /* c */
        start local 4 // char c
         3: .line 56
            iload 4 /* c */
            bipush 10
            if_icmpeq 4
            iload 4 /* c */
            bipush 13
            if_icmpne 6
         4: .line 57
      StackMap locals: com.sun.tools.sjavac.AutoFlushWriter char[] int int int int int char[]
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.tools.sjavac.AutoFlushWriter.flush:()V
         5: .line 58
            goto 8
        end local 4 // char c
         6: .line 55
      StackMap locals: com.sun.tools.sjavac.AutoFlushWriter char[] int int top int int char[]
      StackMap stack:
            iinc 5 1
      StackMap locals:
      StackMap stack:
         7: iload 5
            iload 6
            if_icmplt 2
         8: .line 61
      StackMap locals: com.sun.tools.sjavac.AutoFlushWriter char[] int int
      StackMap stack:
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // char[] cbuf
        end local 0 // com.sun.tools.sjavac.AutoFlushWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/sun/tools/sjavac/AutoFlushWriter;
            0    9     1  cbuf  [C
            0    9     2   off  I
            0    9     3   len  I
            3    6     4     c  C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  
      off   
      len   
}
SourceFile: "AutoFlushWriter.java"