public class io.vertx.config.hocon.HoconProcessor implements io.vertx.config.spi.ConfigProcessor
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.config.hocon.HoconProcessor
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.config.hocon.HoconProcessor this
         0: .line 42
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // io.vertx.config.hocon.HoconProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/config/hocon/HoconProcessor;

  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.config.hocon.HoconProcessor this
         0: .line 45
            ldc "hocon"
            areturn
        end local 0 // io.vertx.config.hocon.HoconProcessor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/config/hocon/HoconProcessor;

  public void process(io.vertx.core.Vertx, io.vertx.core.json.JsonObject, io.vertx.core.buffer.Buffer, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonObject>>);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // io.vertx.config.hocon.HoconProcessor this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.core.json.JsonObject configuration
        start local 3 // io.vertx.core.buffer.Buffer input
        start local 4 // io.vertx.core.Handler handler
         0: .line 52
            aload 1 /* vertx */
         1: .line 53
            aload 3 /* input */
            invokedynamic handle(Lio/vertx/core/buffer/Buffer;)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/config/hocon/HoconProcessor.lambda$0(Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Promise;)V (6)
                  (Lio/vertx/core/Promise;)V
         2: .line 68
            aload 4 /* handler */
         3: .line 52
            invokeinterface io.vertx.core.Vertx.executeBlocking:(Lio/vertx/core/Handler;Lio/vertx/core/Handler;)V
         4: .line 70
            return
        end local 4 // io.vertx.core.Handler handler
        end local 3 // io.vertx.core.buffer.Buffer input
        end local 2 // io.vertx.core.json.JsonObject configuration
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.config.hocon.HoconProcessor this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lio/vertx/config/hocon/HoconProcessor;
            0    5     1          vertx  Lio/vertx/core/Vertx;
            0    5     2  configuration  Lio/vertx/core/json/JsonObject;
            0    5     3          input  Lio/vertx/core/buffer/Buffer;
            0    5     4        handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/json/JsonObject;>;>;
    Signature: (Lio/vertx/core/Vertx;Lio/vertx/core/json/JsonObject;Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/json/JsonObject;>;>;)V
    MethodParameters:
               Name  Flags
      vertx          
      configuration  
      input          
      handler        

  private static void lambda$0(io.vertx.core.buffer.Buffer, io.vertx.core.Promise);
    descriptor: (Lio/vertx/core/buffer/Buffer;Lio/vertx/core/Promise;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=7, args_size=2
        start local 1 // io.vertx.core.Promise future
         0: .line 54
            new java.io.StringReader
            dup
            aload 0
            ldc "UTF-8"
            invokeinterface io.vertx.core.buffer.Buffer.toString:(Ljava/lang/String;)Ljava/lang/String;
            invokespecial java.io.StringReader.<init>:(Ljava/lang/String;)V
            astore 2 /* reader */
        start local 2 // java.io.Reader reader
         1: .line 56
            aload 2 /* reader */
            invokestatic com.typesafe.config.ConfigFactory.parseReader:(Ljava/io/Reader;)Lcom/typesafe/config/Config;
            astore 3 /* conf */
        start local 3 // com.typesafe.config.Config conf
         2: .line 57
            aload 3 /* conf */
            invokeinterface com.typesafe.config.Config.resolve:()Lcom/typesafe/config/Config;
            astore 3 /* conf */
         3: .line 58
            aload 3 /* conf */
            invokeinterface com.typesafe.config.Config.root:()Lcom/typesafe/config/ConfigObject;
            invokestatic com.typesafe.config.ConfigRenderOptions.concise:()Lcom/typesafe/config/ConfigRenderOptions;
         4: .line 59
            iconst_1
            invokevirtual com.typesafe.config.ConfigRenderOptions.setJson:(Z)Lcom/typesafe/config/ConfigRenderOptions;
            iconst_0
            invokevirtual com.typesafe.config.ConfigRenderOptions.setComments:(Z)Lcom/typesafe/config/ConfigRenderOptions;
            iconst_0
            invokevirtual com.typesafe.config.ConfigRenderOptions.setFormatted:(Z)Lcom/typesafe/config/ConfigRenderOptions;
         5: .line 58
            invokeinterface com.typesafe.config.ConfigObject.render:(Lcom/typesafe/config/ConfigRenderOptions;)Ljava/lang/String;
            astore 4 /* output */
        start local 4 // java.lang.String output
         6: .line 60
            new io.vertx.core.json.JsonObject
            dup
            aload 4 /* output */
            invokespecial io.vertx.core.json.JsonObject.<init>:(Ljava/lang/String;)V
            astore 5 /* json */
        start local 5 // io.vertx.core.json.JsonObject json
         7: .line 61
            aload 1 /* future */
            aload 5 /* json */
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
        end local 5 // io.vertx.core.json.JsonObject json
        end local 4 // java.lang.String output
        end local 3 // com.typesafe.config.Config conf
         8: .line 62
            goto 15
      StackMap locals: io.vertx.core.buffer.Buffer io.vertx.core.Promise java.io.Reader
      StackMap stack: java.lang.Exception
         9: astore 3 /* e */
        start local 3 // java.lang.Exception e
        10: .line 63
            aload 1 /* future */
            aload 3 /* e */
            invokeinterface io.vertx.core.Promise.fail:(Ljava/lang/Throwable;)V
        end local 3 // java.lang.Exception e
        11: .line 65
            aload 2 /* reader */
            invokestatic io.vertx.config.impl.spi.PropertiesConfigProcessor.closeQuietly:(Ljava/io/Closeable;)V
            goto 16
        12: .line 64
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 6
        13: .line 65
            aload 2 /* reader */
            invokestatic io.vertx.config.impl.spi.PropertiesConfigProcessor.closeQuietly:(Ljava/io/Closeable;)V
        14: .line 66
            aload 6
            athrow
        15: .line 65
      StackMap locals:
      StackMap stack:
            aload 2 /* reader */
            invokestatic io.vertx.config.impl.spi.PropertiesConfigProcessor.closeQuietly:(Ljava/io/Closeable;)V
        end local 2 // java.io.Reader reader
        16: .line 67
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.Promise future
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   17     1  future  Lio/vertx/core/Promise<Lio/vertx/core/json/JsonObject;>;
            1   16     2  reader  Ljava/io/Reader;
            2    8     3    conf  Lcom/typesafe/config/Config;
            6    8     4  output  Ljava/lang/String;
            7    8     5    json  Lio/vertx/core/json/JsonObject;
           10   11     3       e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           1     8       9  Class java.lang.Exception
           1    11      12  any
}
SourceFile: "HoconProcessor.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles