mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
20 lines
777 B
Java
20 lines
777 B
Java
|
package kotlin.jvm.internal;
|
||
|
|
||
|
import kotlin.reflect.KClass;
|
||
|
import kotlin.reflect.KDeclarationContainer;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class FunctionReferenceImpl extends FunctionReference {
|
||
|
public FunctionReferenceImpl(int i, KDeclarationContainer kDeclarationContainer, String str, String str2) {
|
||
|
super(i, NO_RECEIVER, ((ClassBasedDeclarationContainer) kDeclarationContainer).getJClass(), str, str2, !(kDeclarationContainer instanceof KClass) ? 1 : 0);
|
||
|
}
|
||
|
|
||
|
public FunctionReferenceImpl(int i, Class cls, String str, String str2, int i2) {
|
||
|
super(i, NO_RECEIVER, cls, str, str2, i2);
|
||
|
}
|
||
|
|
||
|
public FunctionReferenceImpl(int i, Object obj, Class cls, String str, String str2, int i2) {
|
||
|
super(i, obj, cls, str, str2, i2);
|
||
|
}
|
||
|
}
|