class org.junit.jupiter.engine.execution.ConstructorInvocation<T> implements org.junit.jupiter.api.extension.InvocationInterceptor$Invocation<T>, org.junit.jupiter.api.extension.ReflectiveInvocationContext<java.lang.reflect.Constructor<T>>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.junit.jupiter.engine.execution.ConstructorInvocation
  super_class: java.lang.Object
{
  private final java.lang.reflect.Constructor<T> constructor;
    descriptor: Ljava/lang/reflect/Constructor;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/lang/reflect/Constructor<TT;>;

  private final java.lang.Object[] arguments;
    descriptor: [Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(java.lang.reflect.Constructor<T>, []);
    descriptor: (Ljava/lang/reflect/Constructor;[Ljava/lang/Object;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.junit.jupiter.engine.execution.ConstructorInvocation this
        start local 1 // java.lang.reflect.Constructor constructor
        start local 2 // java.lang.Object[] arguments
         0: .line 29
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 30
            aload 0 /* this */
            aload 1 /* constructor */
            putfield org.junit.jupiter.engine.execution.ConstructorInvocation.constructor:Ljava/lang/reflect/Constructor;
         2: .line 31
            aload 0 /* this */
            aload 2 /* arguments */
            putfield org.junit.jupiter.engine.execution.ConstructorInvocation.arguments:[Ljava/lang/Object;
         3: .line 32
            return
        end local 2 // java.lang.Object[] arguments
        end local 1 // java.lang.reflect.Constructor constructor
        end local 0 // org.junit.jupiter.engine.execution.ConstructorInvocation this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/junit/jupiter/engine/execution/ConstructorInvocation<TT;>;
            0    4     1  constructor  Ljava/lang/reflect/Constructor<TT;>;
            0    4     2    arguments  [Ljava/lang/Object;
    Signature: (Ljava/lang/reflect/Constructor<TT;>;[Ljava/lang/Object;)V
    MethodParameters:
             Name  Flags
      constructor  
      arguments    

  public java.lang.Class<?> getTargetClass();
    descriptor: ()Ljava/lang/Class;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.junit.jupiter.engine.execution.ConstructorInvocation this
         0: .line 36
            aload 0 /* this */
            getfield org.junit.jupiter.engine.execution.ConstructorInvocation.constructor:Ljava/lang/reflect/Constructor;
            invokevirtual java.lang.reflect.Constructor.getDeclaringClass:()Ljava/lang/Class;
            areturn
        end local 0 // org.junit.jupiter.engine.execution.ConstructorInvocation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/junit/jupiter/engine/execution/ConstructorInvocation<TT;>;
    Signature: ()Ljava/lang/Class<*>;

  public java.lang.reflect.Constructor<T> getExecutable();
    descriptor: ()Ljava/lang/reflect/Constructor;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.junit.jupiter.engine.execution.ConstructorInvocation this
         0: .line 41
            aload 0 /* this */
            getfield org.junit.jupiter.engine.execution.ConstructorInvocation.constructor:Ljava/lang/reflect/Constructor;
            areturn
        end local 0 // org.junit.jupiter.engine.execution.ConstructorInvocation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/junit/jupiter/engine/execution/ConstructorInvocation<TT;>;
    Signature: ()Ljava/lang/reflect/Constructor<TT;>;

  public java.util.List<java.lang.Object> getArguments();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.junit.jupiter.engine.execution.ConstructorInvocation this
         0: .line 46
            aload 0 /* this */
            getfield org.junit.jupiter.engine.execution.ConstructorInvocation.arguments:[Ljava/lang/Object;
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            areturn
        end local 0 // org.junit.jupiter.engine.execution.ConstructorInvocation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/junit/jupiter/engine/execution/ConstructorInvocation<TT;>;
    Signature: ()Ljava/util/List<Ljava/lang/Object;>;

  public java.util.Optional<java.lang.Object> getTarget();
    descriptor: ()Ljava/util/Optional;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.junit.jupiter.engine.execution.ConstructorInvocation this
         0: .line 51
            invokestatic java.util.Optional.empty:()Ljava/util/Optional;
            areturn
        end local 0 // org.junit.jupiter.engine.execution.ConstructorInvocation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/junit/jupiter/engine/execution/ConstructorInvocation<TT;>;
    Signature: ()Ljava/util/Optional<Ljava/lang/Object;>;

  public T proceed();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.junit.jupiter.engine.execution.ConstructorInvocation this
         0: .line 56
            aload 0 /* this */
            getfield org.junit.jupiter.engine.execution.ConstructorInvocation.constructor:Ljava/lang/reflect/Constructor;
            aload 0 /* this */
            getfield org.junit.jupiter.engine.execution.ConstructorInvocation.arguments:[Ljava/lang/Object;
            invokestatic org.junit.platform.commons.util.ReflectionUtils.newInstance:(Ljava/lang/reflect/Constructor;[Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 0 // org.junit.jupiter.engine.execution.ConstructorInvocation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/junit/jupiter/engine/execution/ConstructorInvocation<TT;>;
    Signature: ()TT;

  public java.lang.reflect.Executable getExecutable();
    descriptor: ()Ljava/lang/reflect/Executable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.junit.jupiter.engine.execution.ConstructorInvocation.getExecutable:()Ljava/lang/reflect/Constructor;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation<TT;>;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext<Ljava/lang/reflect/Constructor<TT;>;>;
SourceFile: "ConstructorInvocation.java"
InnerClasses:
  public abstract Invocation = org.junit.jupiter.api.extension.InvocationInterceptor$Invocation of org.junit.jupiter.api.extension.InvocationInterceptor