public class lombok.core.AgentLauncher
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: lombok.core.AgentLauncher
  super_class: java.lang.Object
{
  private static final java.util.List<lombok.core.AgentLauncher$AgentInfo> AGENTS;
    descriptor: Ljava/util/List;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/List<Llombok/core/AgentLauncher$AgentInfo;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=0, args_size=0
         0: .line 48
            iconst_1
            anewarray lombok.core.AgentLauncher$AgentInfo
            dup
            iconst_0
         1: .line 49
            new lombok.core.AgentLauncher$EclipsePatcherInfo
            dup
            invokespecial lombok.core.AgentLauncher$EclipsePatcherInfo.<init>:()V
            aastore
         2: .line 48
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            putstatic lombok.core.AgentLauncher.AGENTS:Ljava/util/List;
         3: .line 50
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // lombok.core.AgentLauncher this
         0: .line 30
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // lombok.core.AgentLauncher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Llombok/core/AgentLauncher;

  public static void runAgents(java.lang.String, java.lang.instrument.Instrumentation, boolean, java.lang.Class<?>);
    descriptor: (Ljava/lang/String;Ljava/lang/instrument/Instrumentation;ZLjava/lang/Class;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=8, args_size=4
        start local 0 // java.lang.String agentArgs
        start local 1 // java.lang.instrument.Instrumentation instrumentation
        start local 2 // boolean injected
        start local 3 // java.lang.Class launchingContext
         0: .line 36
            getstatic lombok.core.AgentLauncher.AGENTS:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 5
            goto 9
      StackMap locals: java.lang.String java.lang.instrument.Instrumentation int java.lang.Class top java.util.Iterator
      StackMap stack:
         1: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast lombok.core.AgentLauncher$AgentInfo
            astore 4 /* info */
        start local 4 // lombok.core.AgentLauncher$AgentInfo info
         2: .line 38
            aload 4 /* info */
            invokevirtual lombok.core.AgentLauncher$AgentInfo.className:()Ljava/lang/String;
            invokestatic java.lang.Class.forName:(Ljava/lang/String;)Ljava/lang/Class;
            astore 6 /* agentClass */
        start local 6 // java.lang.Class agentClass
         3: .line 39
            aload 6 /* agentClass */
            iconst_0
            anewarray java.lang.Class
            invokevirtual java.lang.Class.getConstructor:([Ljava/lang/Class;)Ljava/lang/reflect/Constructor;
            iconst_0
            anewarray java.lang.Object
            invokevirtual java.lang.reflect.Constructor.newInstance:([Ljava/lang/Object;)Ljava/lang/Object;
            checkcast lombok.core.AgentLauncher$AgentLaunchable
            astore 7 /* agent */
        start local 7 // lombok.core.AgentLauncher$AgentLaunchable agent
         4: .line 40
            aload 7 /* agent */
            aload 0 /* agentArgs */
            aload 1 /* instrumentation */
            iload 2 /* injected */
            aload 3 /* launchingContext */
            invokeinterface lombok.core.AgentLauncher$AgentLaunchable.runAgent:(Ljava/lang/String;Ljava/lang/instrument/Instrumentation;ZLjava/lang/Class;)V
        end local 7 // lombok.core.AgentLauncher$AgentLaunchable agent
        end local 6 // java.lang.Class agentClass
         5: .line 41
            goto 9
      StackMap locals: java.lang.String java.lang.instrument.Instrumentation int java.lang.Class lombok.core.AgentLauncher$AgentInfo java.util.Iterator
      StackMap stack: java.lang.Throwable
         6: astore 6 /* t */
        start local 6 // java.lang.Throwable t
         7: .line 42
            aload 6 /* t */
            instanceof java.lang.reflect.InvocationTargetException
            ifeq 8
            aload 6 /* t */
            invokevirtual java.lang.Throwable.getCause:()Ljava/lang/Throwable;
            astore 6 /* t */
         8: .line 43
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 4 /* info */
            aload 6 /* t */
            aload 1 /* instrumentation */
            invokevirtual lombok.core.AgentLauncher$AgentInfo.problem:(Ljava/lang/Throwable;Ljava/lang/instrument/Instrumentation;)V
        end local 6 // java.lang.Throwable t
        end local 4 // lombok.core.AgentLauncher$AgentInfo info
         9: .line 36
      StackMap locals: java.lang.String java.lang.instrument.Instrumentation int java.lang.Class top java.util.Iterator
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
        10: .line 46
            return
        end local 3 // java.lang.Class launchingContext
        end local 2 // boolean injected
        end local 1 // java.lang.instrument.Instrumentation instrumentation
        end local 0 // java.lang.String agentArgs
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   11     0         agentArgs  Ljava/lang/String;
            0   11     1   instrumentation  Ljava/lang/instrument/Instrumentation;
            0   11     2          injected  Z
            0   11     3  launchingContext  Ljava/lang/Class<*>;
            2    9     4              info  Llombok/core/AgentLauncher$AgentInfo;
            3    5     6        agentClass  Ljava/lang/Class<*>;
            4    5     7             agent  Llombok/core/AgentLauncher$AgentLaunchable;
            7    9     6                 t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           2     5       6  Class java.lang.Throwable
    Exceptions:
      throws java.lang.Throwable
    Signature: (Ljava/lang/String;Ljava/lang/instrument/Instrumentation;ZLjava/lang/Class<*>;)V
    MethodParameters:
                  Name  Flags
      agentArgs         
      instrumentation   
      injected          
      launchingContext  
}
SourceFile: "AgentLauncher.java"
NestMembers:
  lombok.core.AgentLauncher$AgentInfo  lombok.core.AgentLauncher$AgentLaunchable  lombok.core.AgentLauncher$EclipsePatcherInfo
InnerClasses:
  private abstract AgentInfo = lombok.core.AgentLauncher$AgentInfo of lombok.core.AgentLauncher
  public abstract AgentLaunchable = lombok.core.AgentLauncher$AgentLaunchable of lombok.core.AgentLauncher
  private EclipsePatcherInfo = lombok.core.AgentLauncher$EclipsePatcherInfo of lombok.core.AgentLauncher