class io.vertx.ext.shell.command.impl.CommandBuilderImpl$1 implements io.vertx.ext.shell.command.Command
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.vertx.ext.shell.command.impl.CommandBuilderImpl$1
  super_class: java.lang.Object
{
  final io.vertx.ext.shell.command.impl.CommandBuilderImpl this$0;
    descriptor: Lio/vertx/ext/shell/command/impl/CommandBuilderImpl;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  private final io.vertx.core.Vertx val$vertx;
    descriptor: Lio/vertx/core/Vertx;
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  private final io.vertx.core.Context val$context;
    descriptor: Lio/vertx/core/Context;
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  void <init>(io.vertx.ext.shell.command.impl.CommandBuilderImpl, io.vertx.core.Vertx, io.vertx.core.Context);
    descriptor: (Lio/vertx/ext/shell/command/impl/CommandBuilderImpl;Lio/vertx/core/Vertx;Lio/vertx/core/Context;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // io.vertx.ext.shell.command.impl.CommandBuilderImpl$1 this
         0: .line 79
            aload 0 /* this */
            aload 1
            putfield io.vertx.ext.shell.command.impl.CommandBuilderImpl$1.this$0:Lio/vertx/ext/shell/command/impl/CommandBuilderImpl;
            aload 0 /* this */
            aload 2
            putfield io.vertx.ext.shell.command.impl.CommandBuilderImpl$1.val$vertx:Lio/vertx/core/Vertx;
            aload 0 /* this */
            aload 3
            putfield io.vertx.ext.shell.command.impl.CommandBuilderImpl$1.val$context:Lio/vertx/core/Context;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // io.vertx.ext.shell.command.impl.CommandBuilderImpl$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/command/impl/CommandBuilderImpl$1;
    MethodParameters:
             Name  Flags
      this$0       final
      val$vertx    final
      val$context  final

  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.impl.CommandBuilderImpl$1 this
         0: .line 82
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.impl.CommandBuilderImpl$1.this$0:Lio/vertx/ext/shell/command/impl/CommandBuilderImpl;
            getfield io.vertx.ext.shell.command.impl.CommandBuilderImpl.name:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.ext.shell.command.impl.CommandBuilderImpl$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/command/impl/CommandBuilderImpl$1;

  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.impl.CommandBuilderImpl$1 this
         0: .line 86
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.impl.CommandBuilderImpl$1.this$0:Lio/vertx/ext/shell/command/impl/CommandBuilderImpl;
            getfield io.vertx.ext.shell.command.impl.CommandBuilderImpl.cli:Lio/vertx/core/cli/CLI;
            areturn
        end local 0 // io.vertx.ext.shell.command.impl.CommandBuilderImpl$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/command/impl/CommandBuilderImpl$1;

  public io.vertx.ext.shell.system.Process createProcess(java.util.List<io.vertx.ext.shell.cli.CliToken>);
    descriptor: (Ljava/util/List;)Lio/vertx/ext/shell/system/Process;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.command.impl.CommandBuilderImpl$1 this
        start local 1 // java.util.List args
         0: .line 91
            new io.vertx.ext.shell.command.impl.ProcessImpl
            dup
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.impl.CommandBuilderImpl$1.val$vertx:Lio/vertx/core/Vertx;
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.impl.CommandBuilderImpl$1.val$context:Lio/vertx/core/Context;
            aload 0 /* this */
            aload 1 /* args */
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.impl.CommandBuilderImpl$1.this$0:Lio/vertx/ext/shell/command/impl/CommandBuilderImpl;
            getfield io.vertx.ext.shell.command.impl.CommandBuilderImpl.processHandler:Lio/vertx/core/Handler;
            invokespecial io.vertx.ext.shell.command.impl.ProcessImpl.<init>:(Lio/vertx/core/Vertx;Lio/vertx/core/Context;Lio/vertx/ext/shell/command/Command;Ljava/util/List;Lio/vertx/core/Handler;)V
            areturn
        end local 1 // java.util.List args
        end local 0 // io.vertx.ext.shell.command.impl.CommandBuilderImpl$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/command/impl/CommandBuilderImpl$1;
            0    1     1  args  Ljava/util/List<Lio/vertx/ext/shell/cli/CliToken;>;
    Signature: (Ljava/util/List<Lio/vertx/ext/shell/cli/CliToken;>;)Lio/vertx/ext/shell/system/Process;
    MethodParameters:
      Name  Flags
      args  

  public void complete(io.vertx.ext.shell.cli.Completion);
    descriptor: (Lio/vertx/ext/shell/cli/Completion;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.command.impl.CommandBuilderImpl$1 this
        start local 1 // io.vertx.ext.shell.cli.Completion completion
         0: .line 96
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.impl.CommandBuilderImpl$1.this$0:Lio/vertx/ext/shell/command/impl/CommandBuilderImpl;
            getfield io.vertx.ext.shell.command.impl.CommandBuilderImpl.completeHandler:Lio/vertx/core/Handler;
            ifnull 3
         1: .line 97
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.impl.CommandBuilderImpl$1.val$context:Lio/vertx/core/Context;
            aload 0 /* this */
            aload 1 /* completion */
            invokedynamic handle(Lio/vertx/ext/shell/command/impl/CommandBuilderImpl$1;Lio/vertx/ext/shell/cli/Completion;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/ext/shell/command/impl/CommandBuilderImpl$1.lambda$0(Lio/vertx/ext/shell/cli/Completion;Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Context.runOnContext:(Lio/vertx/core/Handler;)V
         2: .line 105
            goto 4
         3: .line 106
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* completion */
            invokespecial io.vertx.ext.shell.command.Command.complete:(Lio/vertx/ext/shell/cli/Completion;)V
         4: .line 108
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.ext.shell.cli.Completion completion
        end local 0 // io.vertx.ext.shell.command.impl.CommandBuilderImpl$1 this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lio/vertx/ext/shell/command/impl/CommandBuilderImpl$1;
            0    5     1  completion  Lio/vertx/ext/shell/cli/Completion;
    MethodParameters:
            Name  Flags
      completion  

  private void lambda$0(io.vertx.ext.shell.cli.Completion, java.lang.Void);
    descriptor: (Lio/vertx/ext/shell/cli/Completion;Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.vertx.ext.shell.command.impl.CommandBuilderImpl$1 this
        start local 2 // java.lang.Void v
         0: .line 99
            aload 0 /* this */
            getfield io.vertx.ext.shell.command.impl.CommandBuilderImpl$1.this$0:Lio/vertx/ext/shell/command/impl/CommandBuilderImpl;
            getfield io.vertx.ext.shell.command.impl.CommandBuilderImpl.completeHandler:Lio/vertx/core/Handler;
            aload 1
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         1: .line 100
            goto 5
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 3 /* t */
        start local 3 // java.lang.Throwable t
         3: .line 101
            aload 1
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            invokeinterface io.vertx.ext.shell.cli.Completion.complete:(Ljava/util/List;)V
         4: .line 102
            aload 3 /* t */
            athrow
        end local 3 // java.lang.Throwable t
         5: .line 104
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Void v
        end local 0 // io.vertx.ext.shell.command.impl.CommandBuilderImpl$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/ext/shell/command/impl/CommandBuilderImpl$1;
            0    6     2     v  Ljava/lang/Void;
            3    5     3     t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Throwable
}
SourceFile: "CommandBuilderImpl.java"
EnclosingMethod: io.vertx.ext.shell.command.impl.CommandBuilderImpl.build:(Lio/vertx/core/Vertx;)Lio/vertx/ext/shell/command/Command;
NestHost: io.vertx.ext.shell.command.impl.CommandBuilderImpl
InnerClasses:
  io.vertx.ext.shell.command.impl.CommandBuilderImpl$1
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles