public class lombok.delombok.UnicodeEscapeWriter extends java.io.Writer
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: lombok.delombok.UnicodeEscapeWriter
  super_class: java.io.Writer
{
  private final java.io.Writer writer;
    descriptor: Ljava/io/Writer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.nio.charset.CharsetEncoder encoder;
    descriptor: Ljava/nio/charset/CharsetEncoder;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(java.io.Writer, java.nio.charset.Charset);
    descriptor: (Ljava/io/Writer;Ljava/nio/charset/Charset;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // lombok.delombok.UnicodeEscapeWriter this
        start local 1 // java.io.Writer writer
        start local 2 // java.nio.charset.Charset charset
         0: .line 32
            aload 0 /* this */
            invokespecial java.io.Writer.<init>:()V
         1: .line 33
            aload 0 /* this */
            aload 1 /* writer */
            putfield lombok.delombok.UnicodeEscapeWriter.writer:Ljava/io/Writer;
         2: .line 34
            aload 0 /* this */
            aload 2 /* charset */
            invokevirtual java.nio.charset.Charset.newEncoder:()Ljava/nio/charset/CharsetEncoder;
            putfield lombok.delombok.UnicodeEscapeWriter.encoder:Ljava/nio/charset/CharsetEncoder;
         3: .line 35
            return
        end local 2 // java.nio.charset.Charset charset
        end local 1 // java.io.Writer writer
        end local 0 // lombok.delombok.UnicodeEscapeWriter this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Llombok/delombok/UnicodeEscapeWriter;
            0    4     1   writer  Ljava/io/Writer;
            0    4     2  charset  Ljava/nio/charset/Charset;
    MethodParameters:
         Name  Flags
      writer   
      charset  

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // lombok.delombok.UnicodeEscapeWriter this
         0: .line 39
            aload 0 /* this */
            getfield lombok.delombok.UnicodeEscapeWriter.writer:Ljava/io/Writer;
            invokevirtual java.io.Writer.close:()V
         1: .line 40
            return
        end local 0 // lombok.delombok.UnicodeEscapeWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Llombok/delombok/UnicodeEscapeWriter;
    Exceptions:
      throws java.io.IOException

  public void flush();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // lombok.delombok.UnicodeEscapeWriter this
         0: .line 44
            aload 0 /* this */
            getfield lombok.delombok.UnicodeEscapeWriter.writer:Ljava/io/Writer;
            invokevirtual java.io.Writer.flush:()V
         1: .line 45
            return
        end local 0 // lombok.delombok.UnicodeEscapeWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Llombok/delombok/UnicodeEscapeWriter;
    Exceptions:
      throws java.io.IOException

  public final void write(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // lombok.delombok.UnicodeEscapeWriter this
        start local 1 // char[] cbuf
        start local 2 // int off
        start local 3 // int len
         0: .line 49
            iload 2 /* off */
            istore 4 /* start */
        start local 4 // int start
         1: .line 50
            iload 4 /* start */
            istore 5 /* index */
        start local 5 // int index
         2: .line 51
            iload 2 /* off */
            iload 3 /* len */
            iadd
            istore 6 /* end */
        start local 6 // int end
         3: .line 52
            goto 9
         4: .line 53
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield lombok.delombok.UnicodeEscapeWriter.encoder:Ljava/nio/charset/CharsetEncoder;
            aload 1 /* cbuf */
            iload 5 /* index */
            caload
            invokevirtual java.nio.charset.CharsetEncoder.canEncode:(C)Z
            ifne 8
         5: .line 54
            aload 0 /* this */
            getfield lombok.delombok.UnicodeEscapeWriter.writer:Ljava/io/Writer;
            aload 1 /* cbuf */
            iload 4 /* start */
            iload 5 /* index */
            iload 4 /* start */
            isub
            invokevirtual java.io.Writer.write:([CII)V
         6: .line 55
            aload 0 /* this */
            aload 1 /* cbuf */
            iload 5 /* index */
            caload
            invokevirtual lombok.delombok.UnicodeEscapeWriter.writeUnicodeEscape:(C)V
         7: .line 56
            iload 5 /* index */
            iconst_1
            iadd
            istore 4 /* start */
         8: .line 58
      StackMap locals:
      StackMap stack:
            iinc 5 /* index */ 1
         9: .line 52
      StackMap locals:
      StackMap stack:
            iload 5 /* index */
            iload 6 /* end */
            if_icmplt 4
        10: .line 60
            iload 4 /* start */
            iload 6 /* end */
            if_icmpge 12
        11: .line 61
            aload 0 /* this */
            getfield lombok.delombok.UnicodeEscapeWriter.writer:Ljava/io/Writer;
            aload 1 /* cbuf */
            iload 4 /* start */
            iload 6 /* end */
            iload 4 /* start */
            isub
            invokevirtual java.io.Writer.write:([CII)V
        12: .line 63
      StackMap locals:
      StackMap stack:
            return
        end local 6 // int end
        end local 5 // int index
        end local 4 // int start
        end local 3 // int len
        end local 2 // int off
        end local 1 // char[] cbuf
        end local 0 // lombok.delombok.UnicodeEscapeWriter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Llombok/delombok/UnicodeEscapeWriter;
            0   13     1   cbuf  [C
            0   13     2    off  I
            0   13     3    len  I
            1   13     4  start  I
            2   13     5  index  I
            3   13     6    end  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  
      off   
      len   

  protected void writeUnicodeEscape(char);
    descriptor: (C)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // lombok.delombok.UnicodeEscapeWriter this
        start local 1 // char c
         0: .line 66
            aload 0 /* this */
            getfield lombok.delombok.UnicodeEscapeWriter.writer:Ljava/io/Writer;
            ldc "\\u%04x"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            iload 1 /* c */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
         1: .line 67
            return
        end local 1 // char c
        end local 0 // lombok.delombok.UnicodeEscapeWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Llombok/delombok/UnicodeEscapeWriter;
            0    2     1     c  C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      c     
}
SourceFile: "UnicodeEscapeWriter.java"