public class io.vertx.codegen.writer.CodeWriter extends java.io.PrintWriter
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.codegen.writer.CodeWriter
  super_class: java.io.PrintWriter
{
  private int indentSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int indent;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean first;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  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 // io.vertx.codegen.writer.CodeWriter this
        start local 1 // java.io.Writer out
         0: .line 21
            aload 0 /* this */
            aload 1 /* out */
            invokespecial java.io.PrintWriter.<init>:(Ljava/io/Writer;)V
         1: .line 16
            aload 0 /* this */
            iconst_2
            putfield io.vertx.codegen.writer.CodeWriter.indentSize:I
         2: .line 17
            aload 0 /* this */
            iconst_0
            putfield io.vertx.codegen.writer.CodeWriter.indent:I
         3: .line 18
            aload 0 /* this */
            iconst_1
            putfield io.vertx.codegen.writer.CodeWriter.first:Z
         4: .line 22
            return
        end local 1 // java.io.Writer out
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/codegen/writer/CodeWriter;
            0    5     1   out  Ljava/io/Writer;
    MethodParameters:
      Name  Flags
      out   

  public java.io.Writer writer();
    descriptor: ()Ljava/io/Writer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.codegen.writer.CodeWriter this
         0: .line 28
            aload 0 /* this */
            getfield io.vertx.codegen.writer.CodeWriter.out:Ljava/io/Writer;
            areturn
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/codegen/writer/CodeWriter;

  public int indentSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.codegen.writer.CodeWriter this
         0: .line 35
            aload 0 /* this */
            getfield io.vertx.codegen.writer.CodeWriter.indentSize:I
            ireturn
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/codegen/writer/CodeWriter;

  public io.vertx.codegen.writer.CodeWriter indentSize(int);
    descriptor: (I)Lio/vertx/codegen/writer/CodeWriter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.codegen.writer.CodeWriter this
        start local 1 // int size
         0: .line 45
            iload 1 /* size */
            ifge 2
         1: .line 46
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 48
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* size */
            putfield io.vertx.codegen.writer.CodeWriter.indentSize:I
         3: .line 49
            aload 0 /* this */
            areturn
        end local 1 // int size
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/codegen/writer/CodeWriter;
            0    4     1  size  I
    MethodParameters:
      Name  Flags
      size  

  public java.lang.String indentation();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // io.vertx.codegen.writer.CodeWriter this
         0: .line 56
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuilder sb
         1: .line 57
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 58
      StackMap locals: java.lang.StringBuilder int
      StackMap stack:
            aload 1 /* sb */
            bipush 32
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         4: .line 57
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield io.vertx.codegen.writer.CodeWriter.indent:I
            aload 0 /* this */
            getfield io.vertx.codegen.writer.CodeWriter.indentSize:I
            imul
            if_icmplt 3
        end local 2 // int i
         6: .line 60
            aload 1 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder sb
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/vertx/codegen/writer/CodeWriter;
            1    7     1    sb  Ljava/lang/StringBuilder;
            2    6     2     i  I

  public io.vertx.codegen.writer.CodeWriter indent();
    descriptor: ()Lio/vertx/codegen/writer/CodeWriter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.codegen.writer.CodeWriter this
         0: .line 69
            aload 0 /* this */
            dup
            getfield io.vertx.codegen.writer.CodeWriter.indent:I
            iconst_1
            iadd
            putfield io.vertx.codegen.writer.CodeWriter.indent:I
         1: .line 70
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/codegen/writer/CodeWriter;

  public io.vertx.codegen.writer.CodeWriter unindent();
    descriptor: ()Lio/vertx/codegen/writer/CodeWriter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.codegen.writer.CodeWriter this
         0: .line 79
            aload 0 /* this */
            getfield io.vertx.codegen.writer.CodeWriter.indent:I
            ifne 2
         1: .line 80
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         2: .line 82
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield io.vertx.codegen.writer.CodeWriter.indent:I
            iconst_1
            isub
            putfield io.vertx.codegen.writer.CodeWriter.indent:I
         3: .line 83
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/codegen/writer/CodeWriter;

  public io.vertx.codegen.writer.CodeWriter indented(java.lang.Runnable);
    descriptor: (Ljava/lang/Runnable;)Lio/vertx/codegen/writer/CodeWriter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.codegen.writer.CodeWriter this
        start local 1 // java.lang.Runnable block
         0: .line 87
            aload 0 /* this */
            invokevirtual io.vertx.codegen.writer.CodeWriter.indent:()Lio/vertx/codegen/writer/CodeWriter;
            pop
         1: .line 88
            aload 1 /* block */
            invokeinterface java.lang.Runnable.run:()V
         2: .line 89
            aload 0 /* this */
            invokevirtual io.vertx.codegen.writer.CodeWriter.unindent:()Lio/vertx/codegen/writer/CodeWriter;
            pop
         3: .line 90
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Runnable block
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lio/vertx/codegen/writer/CodeWriter;
            0    4     1  block  Ljava/lang/Runnable;
    MethodParameters:
       Name  Flags
      block  

  public io.vertx.codegen.writer.CodeWriter javaImport(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/codegen/writer/CodeWriter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.codegen.writer.CodeWriter this
        start local 1 // java.lang.String name
         0: .line 99
            aload 0 /* this */
            ldc "import "
            invokevirtual io.vertx.codegen.writer.CodeWriter.append:(Ljava/lang/CharSequence;)Lio/vertx/codegen/writer/CodeWriter;
            aload 1 /* name */
            invokevirtual io.vertx.codegen.writer.CodeWriter.append:(Ljava/lang/CharSequence;)Lio/vertx/codegen/writer/CodeWriter;
            ldc ";"
            invokevirtual io.vertx.codegen.writer.CodeWriter.append:(Ljava/lang/CharSequence;)Lio/vertx/codegen/writer/CodeWriter;
            invokevirtual io.vertx.codegen.writer.CodeWriter.newLine:()Lio/vertx/codegen/writer/CodeWriter;
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/codegen/writer/CodeWriter;
            0    1     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public io.vertx.codegen.writer.CodeWriter code(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/codegen/writer/CodeWriter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.codegen.writer.CodeWriter this
        start local 1 // java.lang.String string
         0: .line 111
            aload 0 /* this */
            getfield io.vertx.codegen.writer.CodeWriter.first:Z
            ifne 2
         1: .line 112
            aload 0 /* this */
            invokevirtual io.vertx.codegen.writer.CodeWriter.println:()V
         2: .line 114
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* string */
            invokevirtual io.vertx.codegen.writer.CodeWriter.print:(Ljava/lang/String;)V
         3: .line 115
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String string
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lio/vertx/codegen/writer/CodeWriter;
            0    4     1  string  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      string  

  public io.vertx.codegen.writer.CodeWriter codeln(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/codegen/writer/CodeWriter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.codegen.writer.CodeWriter this
        start local 1 // java.lang.String line
         0: .line 125
            aload 0 /* this */
            aload 1 /* line */
            invokevirtual io.vertx.codegen.writer.CodeWriter.code:(Ljava/lang/String;)Lio/vertx/codegen/writer/CodeWriter;
            invokevirtual io.vertx.codegen.writer.CodeWriter.newLine:()Lio/vertx/codegen/writer/CodeWriter;
            areturn
        end local 1 // java.lang.String line
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/codegen/writer/CodeWriter;
            0    1     1  line  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      line  

  public io.vertx.codegen.writer.CodeWriter stmt(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/codegen/writer/CodeWriter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.codegen.writer.CodeWriter this
        start local 1 // java.lang.String statement
         0: .line 136
            aload 0 /* this */
            aload 1 /* statement */
            invokevirtual io.vertx.codegen.writer.CodeWriter.code:(Ljava/lang/String;)Lio/vertx/codegen/writer/CodeWriter;
            ldc ";"
            invokevirtual io.vertx.codegen.writer.CodeWriter.append:(Ljava/lang/CharSequence;)Lio/vertx/codegen/writer/CodeWriter;
            invokevirtual io.vertx.codegen.writer.CodeWriter.newLine:()Lio/vertx/codegen/writer/CodeWriter;
            areturn
        end local 1 // java.lang.String statement
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/vertx/codegen/writer/CodeWriter;
            0    1     1  statement  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      statement  

  public io.vertx.codegen.writer.CodeWriter newLine();
    descriptor: ()Lio/vertx/codegen/writer/CodeWriter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.codegen.writer.CodeWriter this
         0: .line 145
            aload 0 /* this */
            invokevirtual io.vertx.codegen.writer.CodeWriter.println:()V
         1: .line 146
            aload 0 /* this */
            areturn
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/codegen/writer/CodeWriter;

  public io.vertx.codegen.writer.CodeWriter writeSeq(java.util.stream.Stream<java.lang.String>, java.lang.String);
    descriptor: (Ljava/util/stream/Stream;Ljava/lang/String;)Lio/vertx/codegen/writer/CodeWriter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.codegen.writer.CodeWriter this
        start local 1 // java.util.stream.Stream sequence
        start local 2 // java.lang.String delimiter
         0: .line 155
            aload 0 /* this */
            aload 1 /* sequence */
            aload 2 /* delimiter */
            invokestatic java.util.stream.Collectors.joining:(Ljava/lang/CharSequence;)Ljava/util/stream/Collector;
            invokeinterface java.util.stream.Stream.collect:(Ljava/util/stream/Collector;)Ljava/lang/Object;
            checkcast java.lang.CharSequence
            invokevirtual io.vertx.codegen.writer.CodeWriter.append:(Ljava/lang/CharSequence;)Lio/vertx/codegen/writer/CodeWriter;
            areturn
        end local 2 // java.lang.String delimiter
        end local 1 // java.util.stream.Stream sequence
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/vertx/codegen/writer/CodeWriter;
            0    1     1   sequence  Ljava/util/stream/Stream<Ljava/lang/String;>;
            0    1     2  delimiter  Ljava/lang/String;
    Signature: (Ljava/util/stream/Stream<Ljava/lang/String;>;Ljava/lang/String;)Lio/vertx/codegen/writer/CodeWriter;
    MethodParameters:
           Name  Flags
      sequence   
      delimiter  

  public void println();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.codegen.writer.CodeWriter this
         0: .line 159
            aload 0 /* this */
            bipush 10
            invokevirtual io.vertx.codegen.writer.CodeWriter.print:(C)V
         1: .line 160
            return
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/codegen/writer/CodeWriter;

  public void write(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // io.vertx.codegen.writer.CodeWriter this
        start local 1 // java.lang.String s
        start local 2 // int off
        start local 3 // int len
         0: .line 164
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         1: goto 4
         2: .line 165
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* s */
            iload 2 /* off */
            iload 4 /* i */
            iadd
            invokevirtual java.lang.String.charAt:(I)C
            invokevirtual io.vertx.codegen.writer.CodeWriter.write:(I)V
         3: .line 164
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 4 /* i */
            iload 3 /* len */
            if_icmplt 2
        end local 4 // int i
         5: .line 167
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // java.lang.String s
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/codegen/writer/CodeWriter;
            0    6     1     s  Ljava/lang/String;
            0    6     2   off  I
            0    6     3   len  I
            1    5     4     i  I
    MethodParameters:
      Name  Flags
      s     
      off   
      len   

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.codegen.writer.CodeWriter this
        start local 1 // int c
         0: .line 171
            iload 1 /* c */
            bipush 10
            if_icmpne 3
         1: .line 172
            aload 0 /* this */
            iconst_1
            putfield io.vertx.codegen.writer.CodeWriter.first:Z
         2: .line 173
            goto 10
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield io.vertx.codegen.writer.CodeWriter.first:Z
            ifeq 10
         4: .line 174
            aload 0 /* this */
            iconst_0
            putfield io.vertx.codegen.writer.CodeWriter.first:Z
         5: .line 175
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 9
         7: .line 176
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            bipush 32
            invokespecial java.io.PrintWriter.write:(I)V
         8: .line 175
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 2 /* i */
            aload 0 /* this */
            getfield io.vertx.codegen.writer.CodeWriter.indent:I
            aload 0 /* this */
            getfield io.vertx.codegen.writer.CodeWriter.indentSize:I
            imul
            if_icmplt 7
        end local 2 // int i
        10: .line 179
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* c */
            invokespecial java.io.PrintWriter.write:(I)V
        11: .line 180
            return
        end local 1 // int c
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lio/vertx/codegen/writer/CodeWriter;
            0   12     1     c  I
            6   10     2     i  I
    MethodParameters:
      Name  Flags
      c     

  public io.vertx.codegen.writer.CodeWriter append(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)Lio/vertx/codegen/writer/CodeWriter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.codegen.writer.CodeWriter this
        start local 1 // java.lang.CharSequence csq
         0: .line 184
            aload 0 /* this */
            aload 1 /* csq */
            invokespecial java.io.PrintWriter.append:(Ljava/lang/CharSequence;)Ljava/io/PrintWriter;
            checkcast io.vertx.codegen.writer.CodeWriter
            areturn
        end local 1 // java.lang.CharSequence csq
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/codegen/writer/CodeWriter;
            0    1     1   csq  Ljava/lang/CharSequence;
    MethodParameters:
      Name  Flags
      csq   

  public io.vertx.codegen.writer.CodeWriter append(java.lang.CharSequence, int, int);
    descriptor: (Ljava/lang/CharSequence;II)Lio/vertx/codegen/writer/CodeWriter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.codegen.writer.CodeWriter this
        start local 1 // java.lang.CharSequence csq
        start local 2 // int start
        start local 3 // int end
         0: .line 189
            aload 0 /* this */
            aload 1 /* csq */
            iload 2 /* start */
            iload 3 /* end */
            invokespecial java.io.PrintWriter.append:(Ljava/lang/CharSequence;II)Ljava/io/PrintWriter;
            checkcast io.vertx.codegen.writer.CodeWriter
            areturn
        end local 3 // int end
        end local 2 // int start
        end local 1 // java.lang.CharSequence csq
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/codegen/writer/CodeWriter;
            0    1     1    csq  Ljava/lang/CharSequence;
            0    1     2  start  I
            0    1     3    end  I
    MethodParameters:
       Name  Flags
      csq    
      start  
      end    

  public io.vertx.codegen.writer.CodeWriter append(char);
    descriptor: (C)Lio/vertx/codegen/writer/CodeWriter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.codegen.writer.CodeWriter this
        start local 1 // char c
         0: .line 194
            aload 0 /* this */
            iload 1 /* c */
            invokespecial java.io.PrintWriter.append:(C)Ljava/io/PrintWriter;
            checkcast io.vertx.codegen.writer.CodeWriter
            areturn
        end local 1 // char c
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/codegen/writer/CodeWriter;
            0    1     1     c  C
    MethodParameters:
      Name  Flags
      c     

  public io.vertx.codegen.writer.CodeWriter format(java.lang.String, java.lang.Object[]);
    descriptor: (Ljava/lang/String;[Ljava/lang/Object;)Lio/vertx/codegen/writer/CodeWriter;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.codegen.writer.CodeWriter this
        start local 1 // java.lang.String format
        start local 2 // java.lang.Object[] args
         0: .line 199
            aload 0 /* this */
            aload 1 /* format */
            aload 2 /* args */
            invokespecial java.io.PrintWriter.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintWriter;
            checkcast io.vertx.codegen.writer.CodeWriter
            areturn
        end local 2 // java.lang.Object[] args
        end local 1 // java.lang.String format
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/vertx/codegen/writer/CodeWriter;
            0    1     1  format  Ljava/lang/String;
            0    1     2    args  [Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      format  
      args    

  public io.vertx.codegen.writer.CodeWriter format(java.util.Locale, java.lang.String, java.lang.Object[]);
    descriptor: (Ljava/util/Locale;Ljava/lang/String;[Ljava/lang/Object;)Lio/vertx/codegen/writer/CodeWriter;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.vertx.codegen.writer.CodeWriter this
        start local 1 // java.util.Locale l
        start local 2 // java.lang.String format
        start local 3 // java.lang.Object[] args
         0: .line 204
            aload 0 /* this */
            aload 1 /* l */
            aload 2 /* format */
            aload 3 /* args */
            invokespecial java.io.PrintWriter.format:(Ljava/util/Locale;Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintWriter;
            checkcast io.vertx.codegen.writer.CodeWriter
            areturn
        end local 3 // java.lang.Object[] args
        end local 2 // java.lang.String format
        end local 1 // java.util.Locale l
        end local 0 // io.vertx.codegen.writer.CodeWriter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/vertx/codegen/writer/CodeWriter;
            0    1     1       l  Ljava/util/Locale;
            0    1     2  format  Ljava/lang/String;
            0    1     3    args  [Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      l       
      format  
      args    

  public java.io.PrintWriter format(java.util.Locale, java.lang.String, java.lang.Object[]);
    descriptor: (Ljava/util/Locale;Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintWriter;
    flags: (0x10c1) ACC_PUBLIC, ACC_BRIDGE, ACC_VARARGS, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            aload 2
            aload 3
            invokevirtual io.vertx.codegen.writer.CodeWriter.format:(Ljava/util/Locale;Ljava/lang/String;[Ljava/lang/Object;)Lio/vertx/codegen/writer/CodeWriter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.io.PrintWriter format(java.lang.String, java.lang.Object[]);
    descriptor: (Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintWriter;
    flags: (0x10c1) ACC_PUBLIC, ACC_BRIDGE, ACC_VARARGS, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokevirtual io.vertx.codegen.writer.CodeWriter.format:(Ljava/lang/String;[Ljava/lang/Object;)Lio/vertx/codegen/writer/CodeWriter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.io.PrintWriter append(char);
    descriptor: (C)Ljava/io/PrintWriter;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.codegen.writer.CodeWriter.append:(C)Lio/vertx/codegen/writer/CodeWriter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Appendable append(char);
    descriptor: (C)Ljava/lang/Appendable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.codegen.writer.CodeWriter.append:(C)Lio/vertx/codegen/writer/CodeWriter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException

  public java.io.Writer append(char);
    descriptor: (C)Ljava/io/Writer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.codegen.writer.CodeWriter.append:(C)Lio/vertx/codegen/writer/CodeWriter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException

  public java.io.PrintWriter append(java.lang.CharSequence, int, int);
    descriptor: (Ljava/lang/CharSequence;II)Ljava/io/PrintWriter;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            iload 2
            iload 3
            invokevirtual io.vertx.codegen.writer.CodeWriter.append:(Ljava/lang/CharSequence;II)Lio/vertx/codegen/writer/CodeWriter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Appendable append(java.lang.CharSequence, int, int);
    descriptor: (Ljava/lang/CharSequence;II)Ljava/lang/Appendable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            iload 2
            iload 3
            invokevirtual io.vertx.codegen.writer.CodeWriter.append:(Ljava/lang/CharSequence;II)Lio/vertx/codegen/writer/CodeWriter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException

  public java.io.Writer append(java.lang.CharSequence, int, int);
    descriptor: (Ljava/lang/CharSequence;II)Ljava/io/Writer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            iload 2
            iload 3
            invokevirtual io.vertx.codegen.writer.CodeWriter.append:(Ljava/lang/CharSequence;II)Lio/vertx/codegen/writer/CodeWriter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException

  public java.io.PrintWriter append(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)Ljava/io/PrintWriter;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.codegen.writer.CodeWriter.append:(Ljava/lang/CharSequence;)Lio/vertx/codegen/writer/CodeWriter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Appendable append(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)Ljava/lang/Appendable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.codegen.writer.CodeWriter.append:(Ljava/lang/CharSequence;)Lio/vertx/codegen/writer/CodeWriter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException

  public java.io.Writer append(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)Ljava/io/Writer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.codegen.writer.CodeWriter.append:(Ljava/lang/CharSequence;)Lio/vertx/codegen/writer/CodeWriter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException
}
SourceFile: "CodeWriter.java"