class examples.Examples$ATest
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: examples.Examples$ATest
  super_class: java.lang.Object
{
  final examples.Examples this$0;
    descriptor: Lexamples/Examples;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  void <init>(examples.Examples);
    descriptor: (Lexamples/Examples;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // examples.Examples$ATest this
         0: .line 42
            aload 0 /* this */
            aload 1
            putfield examples.Examples$ATest.this$0:Lexamples/Examples;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // examples.Examples$ATest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lexamples/Examples$ATest;
    MethodParameters:
        Name  Flags
      this$0  final

  void start_server();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // examples.Examples$ATest this
         0: .line 46
            invokestatic io.vertx.core.Vertx.vertx:()Lio/vertx/core/Vertx;
            astore 1 /* vertx */
        start local 1 // io.vertx.core.Vertx vertx
         1: .line 47
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.createHttpServer:()Lio/vertx/core/http/HttpServer;
         2: .line 48
            invokedynamic handle()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
                  examples/Examples$ATest.lambda$0(Lio/vertx/core/http/HttpServerRequest;)V (6)
                  (Lio/vertx/core/http/HttpServerRequest;)V
            invokeinterface io.vertx.core.http.HttpServer.requestHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/http/HttpServer;
         3: .line 49
            sipush 16969
            invokedynamic handle()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
                  examples/Examples$ATest.lambda$1(Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.http.HttpServer.listen:(ILio/vertx/core/Handler;)Lio/vertx/core/http/HttpServer;
            pop
         4: .line 52
            return
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.Examples$ATest this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lexamples/Examples$ATest;
            1    5     1  vertx  Lio/vertx/core/Vertx;
    RuntimeVisibleAnnotations: 
      org.junit.jupiter.api.Test()

  private static void lambda$0(io.vertx.core.http.HttpServerRequest);
    descriptor: (Lio/vertx/core/http/HttpServerRequest;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.http.HttpServerRequest req
         0: .line 48
            aload 0 /* req */
            invokeinterface io.vertx.core.http.HttpServerRequest.response:()Lio/vertx/core/http/HttpServerResponse;
            ldc "Ok"
            invokeinterface io.vertx.core.http.HttpServerResponse.end:(Ljava/lang/String;)V
            return
        end local 0 // io.vertx.core.http.HttpServerRequest req
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   req  Lio/vertx/core/http/HttpServerRequest;

  private static void lambda$1(io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.core.AsyncResult ar
         0: .line 51
            return
        end local 0 // io.vertx.core.AsyncResult ar
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0    ar  Lio/vertx/core/AsyncResult<Lio/vertx/core/http/HttpServer;>;
}
SourceFile: "Examples.java"
NestHost: examples.Examples
InnerClasses:
  ATest = examples.Examples$ATest of examples.Examples
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
    RuntimeVisibleAnnotations: 
      org.junit.jupiter.api.extension.ExtendWith(value = {Lio/vertx/junit5/VertxExtension;})