mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
29 lines
1 KiB
Java
29 lines
1 KiB
Java
package kotlin.jvm.internal;
|
|
|
|
import kotlin.reflect.KClass;
|
|
import kotlin.reflect.KDeclarationContainer;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class MutablePropertyReference0Impl extends MutablePropertyReference0 {
|
|
public MutablePropertyReference0Impl(KDeclarationContainer kDeclarationContainer, String str, String str2) {
|
|
super(NO_RECEIVER, ((ClassBasedDeclarationContainer) kDeclarationContainer).getJClass(), str, str2, !(kDeclarationContainer instanceof KClass) ? 1 : 0);
|
|
}
|
|
|
|
public MutablePropertyReference0Impl(Class cls, String str, String str2, int i) {
|
|
super(NO_RECEIVER, cls, str, str2, i);
|
|
}
|
|
|
|
public MutablePropertyReference0Impl(Object obj, Class cls, String str, String str2, int i) {
|
|
super(obj, cls, str, str2, i);
|
|
}
|
|
|
|
@Override // kotlin.reflect.KProperty0
|
|
public Object get() {
|
|
return getGetter().call(new Object[0]);
|
|
}
|
|
|
|
@Override // kotlin.reflect.KMutableProperty0
|
|
public void set(Object obj) {
|
|
getSetter().call(obj);
|
|
}
|
|
}
|