mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
23 lines
829 B
Java
23 lines
829 B
Java
package kotlin.jvm.internal;
|
|
|
|
import kotlin.reflect.KClass;
|
|
import kotlin.reflect.KDeclarationContainer;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class PropertyReference1Impl extends PropertyReference1 {
|
|
public PropertyReference1Impl(KDeclarationContainer kDeclarationContainer, String str, String str2) {
|
|
super(NO_RECEIVER, ((ClassBasedDeclarationContainer) kDeclarationContainer).getJClass(), str, str2, !(kDeclarationContainer instanceof KClass) ? 1 : 0);
|
|
}
|
|
|
|
public PropertyReference1Impl(Class cls, String str, String str2, int i) {
|
|
super(NO_RECEIVER, cls, str, str2, i);
|
|
}
|
|
|
|
public PropertyReference1Impl(Object obj, Class cls, String str, String str2, int i) {
|
|
super(obj, cls, str, str2, i);
|
|
}
|
|
|
|
public Object get(Object obj) {
|
|
return getGetter().call(obj);
|
|
}
|
|
}
|