public class io.vertx.ext.shell.command.base.Echo extends io.vertx.ext.shell.command.AnnotatedCommand
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.shell.command.base.Echo
  super_class: io.vertx.ext.shell.command.AnnotatedCommand
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.command.base.Echo this
         0: .line 44
            aload 0 /* this */
            invokespecial io.vertx.ext.shell.command.AnnotatedCommand.<init>:()V
            return
        end local 0 // io.vertx.ext.shell.command.base.Echo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/command/base/Echo;

  public java.lang.String name();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.command.base.Echo this
         0: .line 48
            ldc "echo"
            areturn
        end local 0 // io.vertx.ext.shell.command.base.Echo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/command/base/Echo;

  public io.vertx.core.cli.CLI cli();
    descriptor: ()Lio/vertx/core/cli/CLI;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.command.base.Echo this
         0: .line 54
            aconst_null
            areturn
        end local 0 // io.vertx.ext.shell.command.base.Echo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/command/base/Echo;

  public void process(io.vertx.ext.shell.command.CommandProcess);
    descriptor: (Lio/vertx/ext/shell/command/CommandProcess;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // io.vertx.ext.shell.command.base.Echo this
        start local 1 // io.vertx.ext.shell.command.CommandProcess process
         0: .line 59
            iconst_1
            istore 2 /* first */
        start local 2 // boolean first
         1: .line 60
            aload 1 /* process */
            invokeinterface io.vertx.ext.shell.command.CommandProcess.args:()Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 7
      StackMap locals: io.vertx.ext.shell.command.base.Echo io.vertx.ext.shell.command.CommandProcess int top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 3 /* token */
        start local 3 // java.lang.String token
         3: .line 61
            iload 2 /* first */
            ifne 5
         4: .line 62
            aload 1 /* process */
            ldc " "
            invokeinterface io.vertx.ext.shell.command.CommandProcess.write:(Ljava/lang/String;)Lio/vertx/ext/shell/command/CommandProcess;
            pop
         5: .line 64
      StackMap locals: io.vertx.ext.shell.command.base.Echo io.vertx.ext.shell.command.CommandProcess int java.lang.String java.util.Iterator
      StackMap stack:
            aload 1 /* process */
            aload 3 /* token */
            invokeinterface io.vertx.ext.shell.command.CommandProcess.write:(Ljava/lang/String;)Lio/vertx/ext/shell/command/CommandProcess;
            pop
         6: .line 65
            iconst_0
            istore 2 /* first */
        end local 3 // java.lang.String token
         7: .line 60
      StackMap locals: io.vertx.ext.shell.command.base.Echo io.vertx.ext.shell.command.CommandProcess int top java.util.Iterator
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         8: .line 67
            aload 1 /* process */
            ldc "\n"
            invokeinterface io.vertx.ext.shell.command.CommandProcess.write:(Ljava/lang/String;)Lio/vertx/ext/shell/command/CommandProcess;
            pop
         9: .line 68
            aload 1 /* process */
            invokeinterface io.vertx.ext.shell.command.CommandProcess.end:()V
        10: .line 69
            return
        end local 2 // boolean first
        end local 1 // io.vertx.ext.shell.command.CommandProcess process
        end local 0 // io.vertx.ext.shell.command.base.Echo this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lio/vertx/ext/shell/command/base/Echo;
            0   11     1  process  Lio/vertx/ext/shell/command/CommandProcess;
            1   11     2    first  Z
            3    7     3    token  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      process  
}
SourceFile: "Echo.java"
    RuntimeVisibleAnnotations: 
      io.vertx.core.cli.annotations.Name(value = "echo")