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
{
  io.vertx.core.Vertx vertx;
    descriptor: Lio/vertx/core/Vertx;
    flags: (0x0000) 

  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 49
            aload 0 /* this */
            aload 1
            putfield examples.Examples$ATest.this$0:Lexamples/Examples;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 50
            aload 0 /* this */
            invokestatic io.vertx.core.Vertx.vertx:()Lio/vertx/core/Vertx;
            putfield examples.Examples$ATest.vertx:Lio/vertx/core/Vertx;
         2: .line 49
            return
        end local 0 // examples.Examples$ATest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lexamples/Examples$ATest;
    MethodParameters:
        Name  Flags
      this$0  final

  void start_server();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // examples.Examples$ATest this
         0: .line 54
            aload 0 /* this */
            getfield examples.Examples$ATest.vertx:Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.createHttpServer:()Lio/vertx/core/http/HttpServer;
         1: .line 55
            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;
         2: .line 56
            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
         3: .line 59
            return
        end local 0 // examples.Examples$ATest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lexamples/Examples$ATest;
    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 55
            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;)Lio/vertx/core/Future;
            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 58
            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;})