class org.springframework.data.util.ReflectionUtils$KotlinReflectionUtils
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.springframework.data.util.ReflectionUtils$KotlinReflectionUtils
  super_class: java.lang.Object
{
  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.data.util.ReflectionUtils$KotlinReflectionUtils this
         0: .line 455
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.springframework.data.util.ReflectionUtils$KotlinReflectionUtils this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/data/util/ReflectionUtils$KotlinReflectionUtils;

  static boolean isNullable(org.springframework.core.MethodParameter);
    descriptor: (Lorg/springframework/core/MethodParameter;)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=7, locals=4, args_size=1
        start local 0 // org.springframework.core.MethodParameter parameter
         0: .line 466
            aload 0 /* parameter */
            invokevirtual org.springframework.core.MethodParameter.getMethod:()Ljava/lang/reflect/Method;
            astore 1 /* method */
        start local 1 // java.lang.reflect.Method method
         1: .line 468
            aload 1 /* method */
            ifnonnull 3
         2: .line 469
            new java.lang.IllegalStateException
            dup
            ldc "Cannot obtain method from parameter %s!"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* parameter */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 472
      StackMap locals: java.lang.reflect.Method
      StackMap stack:
            aload 1 /* method */
            invokestatic kotlin.reflect.jvm.ReflectJvmMapping.getKotlinFunction:(Ljava/lang/reflect/Method;)Lkotlin/reflect/KFunction;
            astore 2 /* kotlinFunction */
        start local 2 // kotlin.reflect.KFunction kotlinFunction
         4: .line 474
            aload 2 /* kotlinFunction */
            ifnonnull 8
         5: .line 478
            aload 1 /* method */
            invokestatic org.springframework.data.util.ReflectionUtils$KotlinReflectionUtils.findKFunction:(Ljava/lang/reflect/Method;)Ljava/util/Optional;
         6: .line 479
            aload 0 /* parameter */
            invokedynamic get(Lorg/springframework/core/MethodParameter;)Ljava/util/function/Supplier;
              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;
                  org/springframework/data/util/ReflectionUtils$KotlinReflectionUtils.lambda$0(Lorg/springframework/core/MethodParameter;)Ljava/lang/IllegalArgumentException; (6)
                  ()Ljava/lang/IllegalArgumentException;
            invokevirtual java.util.Optional.orElseThrow:(Ljava/util/function/Supplier;)Ljava/lang/Object;
            checkcast kotlin.reflect.KFunction
         7: .line 478
            astore 2 /* kotlinFunction */
         8: .line 483
      StackMap locals: kotlin.reflect.KFunction
      StackMap stack:
            aload 0 /* parameter */
            invokevirtual org.springframework.core.MethodParameter.getParameterIndex:()I
            iconst_m1
            if_icmpne 10
         9: .line 484
            aload 2 /* kotlinFunction */
            invokeinterface kotlin.reflect.KFunction.getReturnType:()Lkotlin/reflect/KType;
            goto 11
        10: .line 485
      StackMap locals:
      StackMap stack:
            aload 2 /* kotlinFunction */
            invokeinterface kotlin.reflect.KFunction.getParameters:()Ljava/util/List;
            aload 0 /* parameter */
            invokevirtual org.springframework.core.MethodParameter.getParameterIndex:()I
            iconst_1
            iadd
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast kotlin.reflect.KParameter
            invokeinterface kotlin.reflect.KParameter.getType:()Lkotlin/reflect/KType;
        11: .line 483
      StackMap locals:
      StackMap stack: kotlin.reflect.KType
            astore 3 /* type */
        start local 3 // kotlin.reflect.KType type
        12: .line 487
            aload 3 /* type */
            invokeinterface kotlin.reflect.KType.isMarkedNullable:()Z
            ireturn
        end local 3 // kotlin.reflect.KType type
        end local 2 // kotlin.reflect.KFunction kotlinFunction
        end local 1 // java.lang.reflect.Method method
        end local 0 // org.springframework.core.MethodParameter parameter
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   13     0       parameter  Lorg/springframework/core/MethodParameter;
            1   13     1          method  Ljava/lang/reflect/Method;
            4   13     2  kotlinFunction  Lkotlin/reflect/KFunction<*>;
           12   13     3            type  Lkotlin/reflect/KType;
    MethodParameters:
           Name  Flags
      parameter  

  private static java.util.Optional<? extends kotlin.reflect.KFunction<?>> findKFunction(java.lang.reflect.Method);
    descriptor: (Ljava/lang/reflect/Method;)Ljava/util/Optional;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.lang.reflect.Method method
         0: .line 498
            aload 0 /* method */
            invokevirtual java.lang.reflect.Method.getDeclaringClass:()Ljava/lang/Class;
            invokestatic kotlin.jvm.JvmClassMappingKt.getKotlinClass:(Ljava/lang/Class;)Lkotlin/reflect/KClass;
            astore 1 /* kotlinClass */
        start local 1 // kotlin.reflect.KClass kotlinClass
         1: .line 500
            aload 1 /* kotlinClass */
            invokeinterface kotlin.reflect.KClass.getMembers:()Ljava/util/Collection;
         2: .line 501
            invokeinterface java.util.Collection.stream:()Ljava/util/stream/Stream;
         3: .line 502
            invokedynamic apply()Ljava/util/function/Function;
              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;)Ljava/lang/Object;
                  org/springframework/data/util/ReflectionUtils$KotlinReflectionUtils.toKFunctionStream(Lkotlin/reflect/KCallable;)Ljava/util/stream/Stream; (6)
                  (Lkotlin/reflect/KCallable;)Ljava/util/stream/Stream;
            invokeinterface java.util.stream.Stream.flatMap:(Ljava/util/function/Function;)Ljava/util/stream/Stream;
         4: .line 503
            aload 0 /* method */
            invokedynamic test(Ljava/lang/reflect/Method;)Ljava/util/function/Predicate;
              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;)Z
                  org/springframework/data/util/ReflectionUtils$KotlinReflectionUtils.lambda$2(Ljava/lang/reflect/Method;Lkotlin/reflect/KFunction;)Z (6)
                  (Lkotlin/reflect/KFunction;)Z
            invokeinterface java.util.stream.Stream.filter:(Ljava/util/function/Predicate;)Ljava/util/stream/Stream;
         5: .line 504
            invokeinterface java.util.stream.Stream.findFirst:()Ljava/util/Optional;
         6: .line 500
            areturn
        end local 1 // kotlin.reflect.KClass kotlinClass
        end local 0 // java.lang.reflect.Method method
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0       method  Ljava/lang/reflect/Method;
            1    7     1  kotlinClass  Lkotlin/reflect/KClass<*>;
    Signature: (Ljava/lang/reflect/Method;)Ljava/util/Optional<+Lkotlin/reflect/KFunction<*>;>;
    MethodParameters:
        Name  Flags
      method  

  private static java.util.stream.Stream<? extends kotlin.reflect.KFunction<?>> toKFunctionStream(kotlin.reflect.KCallable<?>);
    descriptor: (Lkotlin/reflect/KCallable;)Ljava/util/stream/Stream;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // kotlin.reflect.KCallable it
         0: .line 509
            aload 0 /* it */
            instanceof kotlin.reflect.KMutableProperty
            ifeq 3
         1: .line 511
            aload 0 /* it */
            checkcast kotlin.reflect.KMutableProperty
            astore 1 /* property */
        start local 1 // kotlin.reflect.KMutableProperty property
         2: .line 512
            iconst_2
            anewarray kotlin.reflect.KProperty$Accessor
            dup
            iconst_0
            aload 1 /* property */
            invokeinterface kotlin.reflect.KMutableProperty.getGetter:()Lkotlin/reflect/KProperty$Getter;
            aastore
            dup
            iconst_1
            aload 1 /* property */
            invokeinterface kotlin.reflect.KMutableProperty.getSetter:()Lkotlin/reflect/KMutableProperty$Setter;
            aastore
            invokestatic java.util.stream.Stream.of:([Ljava/lang/Object;)Ljava/util/stream/Stream;
            areturn
        end local 1 // kotlin.reflect.KMutableProperty property
         3: .line 515
      StackMap locals:
      StackMap stack:
            aload 0 /* it */
            instanceof kotlin.reflect.KProperty
            ifeq 6
         4: .line 517
            aload 0 /* it */
            checkcast kotlin.reflect.KProperty
            astore 1 /* property */
        start local 1 // kotlin.reflect.KProperty property
         5: .line 518
            aload 1 /* property */
            invokeinterface kotlin.reflect.KProperty.getGetter:()Lkotlin/reflect/KProperty$Getter;
            invokestatic java.util.stream.Stream.of:(Ljava/lang/Object;)Ljava/util/stream/Stream;
            areturn
        end local 1 // kotlin.reflect.KProperty property
         6: .line 521
      StackMap locals:
      StackMap stack:
            aload 0 /* it */
            instanceof kotlin.reflect.KFunction
            ifeq 8
         7: .line 522
            aload 0 /* it */
            checkcast kotlin.reflect.KFunction
            invokestatic java.util.stream.Stream.of:(Ljava/lang/Object;)Ljava/util/stream/Stream;
            areturn
         8: .line 525
      StackMap locals:
      StackMap stack:
            invokestatic java.util.stream.Stream.empty:()Ljava/util/stream/Stream;
            areturn
        end local 0 // kotlin.reflect.KCallable it
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0        it  Lkotlin/reflect/KCallable<*>;
            2    3     1  property  Lkotlin/reflect/KMutableProperty<*>;
            5    6     1  property  Lkotlin/reflect/KProperty<*>;
    Signature: (Lkotlin/reflect/KCallable<*>;)Ljava/util/stream/Stream<+Lkotlin/reflect/KFunction<*>;>;
    MethodParameters:
      Name  Flags
      it    

  private static boolean isSame(kotlin.reflect.KFunction<?>, java.lang.reflect.Method);
    descriptor: (Lkotlin/reflect/KFunction;Ljava/lang/reflect/Method;)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // kotlin.reflect.KFunction function
        start local 1 // java.lang.reflect.Method method
         0: .line 530
            aload 0 /* function */
            invokestatic kotlin.reflect.jvm.ReflectJvmMapping.getJavaMethod:(Lkotlin/reflect/KFunction;)Ljava/lang/reflect/Method;
            astore 2 /* javaMethod */
        start local 2 // java.lang.reflect.Method javaMethod
         1: .line 531
            aload 2 /* javaMethod */
            ifnull 2
            aload 2 /* javaMethod */
            aload 1 /* method */
            invokevirtual java.lang.reflect.Method.equals:(Ljava/lang/Object;)Z
            ifeq 2
            iconst_1
            ireturn
      StackMap locals: java.lang.reflect.Method
      StackMap stack:
         2: iconst_0
            ireturn
        end local 2 // java.lang.reflect.Method javaMethod
        end local 1 // java.lang.reflect.Method method
        end local 0 // kotlin.reflect.KFunction function
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0    function  Lkotlin/reflect/KFunction<*>;
            0    3     1      method  Ljava/lang/reflect/Method;
            1    3     2  javaMethod  Ljava/lang/reflect/Method;
    Signature: (Lkotlin/reflect/KFunction<*>;Ljava/lang/reflect/Method;)Z
    MethodParameters:
          Name  Flags
      function  
      method    

  private static java.lang.IllegalArgumentException lambda$0(org.springframework.core.MethodParameter);
    descriptor: (Lorg/springframework/core/MethodParameter;)Ljava/lang/IllegalArgumentException;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=7, locals=1, args_size=1
         0: .line 479
            new java.lang.IllegalArgumentException
            dup
         1: .line 480
            ldc "Cannot resolve %s to a Kotlin function!"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
         2: .line 479
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
         3: .line 480
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static boolean lambda$2(java.lang.reflect.Method, kotlin.reflect.KFunction);
    descriptor: (Ljava/lang/reflect/Method;Lkotlin/reflect/KFunction;)Z
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // kotlin.reflect.KFunction it
         0: .line 503
            aload 1 /* it */
            aload 0
            invokestatic org.springframework.data.util.ReflectionUtils$KotlinReflectionUtils.isSame:(Lkotlin/reflect/KFunction;Ljava/lang/reflect/Method;)Z
            ireturn
        end local 1 // kotlin.reflect.KFunction it
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1    it  Lkotlin/reflect/KFunction<TR;>;
}
SourceFile: "ReflectionUtils.java"
NestHost: org.springframework.data.util.ReflectionUtils
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public abstract Setter = kotlin.reflect.KMutableProperty$Setter of kotlin.reflect.KMutableProperty
  public abstract Getter = kotlin.reflect.KProperty$Getter of kotlin.reflect.KProperty
  KotlinReflectionUtils = org.springframework.data.util.ReflectionUtils$KotlinReflectionUtils of org.springframework.data.util.ReflectionUtils