44 lines
1.8 KiB
Java
44 lines
1.8 KiB
Java
package kotlin.reflect.jvm.internal;
|
|
|
|
import kotlin.Metadata;
|
|
import kotlin.jvm.functions.Function2;
|
|
import kotlin.jvm.internal.FunctionReference;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
import kotlin.jvm.internal.Reflection;
|
|
import kotlin.reflect.KDeclarationContainer;
|
|
import kotlin.reflect.jvm.internal.impl.descriptors.PropertyDescriptor;
|
|
import kotlin.reflect.jvm.internal.impl.metadata.ProtoBuf;
|
|
import kotlin.reflect.jvm.internal.impl.serialization.deserialization.MemberDeserializer;
|
|
|
|
@Metadata(k = 3, mv = {1, 9, 0}, xi = 48)
|
|
/* loaded from: classes3.dex */
|
|
public /* synthetic */ class KClassImpl$getLocalProperty$2$1$1 extends FunctionReference implements Function2<MemberDeserializer, ProtoBuf.Property, PropertyDescriptor> {
|
|
public static final KClassImpl$getLocalProperty$2$1$1 INSTANCE = new KClassImpl$getLocalProperty$2$1$1();
|
|
|
|
public KClassImpl$getLocalProperty$2$1$1() {
|
|
super(2);
|
|
}
|
|
|
|
@Override // kotlin.jvm.internal.CallableReference, kotlin.reflect.KCallable
|
|
public final String getName() {
|
|
return "loadProperty";
|
|
}
|
|
|
|
@Override // kotlin.jvm.internal.CallableReference
|
|
public final KDeclarationContainer getOwner() {
|
|
return Reflection.getOrCreateKotlinClass(MemberDeserializer.class);
|
|
}
|
|
|
|
@Override // kotlin.jvm.internal.CallableReference
|
|
public final String getSignature() {
|
|
return "loadProperty(Lorg/jetbrains/kotlin/metadata/ProtoBuf$Property;)Lorg/jetbrains/kotlin/descriptors/PropertyDescriptor;";
|
|
}
|
|
|
|
@Override // kotlin.jvm.functions.Function2
|
|
public final PropertyDescriptor invoke(MemberDeserializer p02, ProtoBuf.Property p12) {
|
|
Intrinsics.checkNotNullParameter(p02, "p0");
|
|
Intrinsics.checkNotNullParameter(p12, "p1");
|
|
return p02.loadProperty(p12);
|
|
}
|
|
}
|