package kotlin.jvm.internal;

/* JADX INFO: loaded from: classes3.dex */
public abstract class x extends AbstractC2442e implements Q4.m {
    private final boolean syntheticJavaProperty;

    public x(Object obj, Class cls, String str, String str2, int i6) {
        super(obj, cls, str, str2, (i6 & 1) == 1);
        this.syntheticJavaProperty = (i6 & 2) == 2;
    }

    @Override // kotlin.jvm.internal.AbstractC2442e
    public Q4.b compute() {
        return this.syntheticJavaProperty ? this : super.compute();
    }

    public boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (obj instanceof x) {
            x xVar = (x) obj;
            return getOwner().equals(xVar.getOwner()) && getName().equals(xVar.getName()) && getSignature().equals(xVar.getSignature()) && o.c(getBoundReceiver(), xVar.getBoundReceiver());
        }
        if (obj instanceof Q4.m) {
            return obj.equals(compute());
        }
        return false;
    }

    public int hashCode() {
        return getSignature().hashCode() + ((getName().hashCode() + (getOwner().hashCode() * 31)) * 31);
    }

    @Override // Q4.m
    public boolean isConst() {
        return getReflected().isConst();
    }

    @Override // Q4.m
    public boolean isLateinit() {
        return getReflected().isLateinit();
    }

    public String toString() {
        Q4.b bVarCompute = compute();
        if (bVarCompute != this) {
            return bVarCompute.toString();
        }
        return "property " + getName() + " (Kotlin reflection is not available)";
    }

    @Override // kotlin.jvm.internal.AbstractC2442e
    public Q4.m getReflected() {
        if (this.syntheticJavaProperty) {
            throw new UnsupportedOperationException("Kotlin reflection is not yet supported for synthetic Java properties. Please follow/upvote https://youtrack.jetbrains.com/issue/KT-55980");
        }
        Q4.b bVarCompute = compute();
        if (bVarCompute != this) {
            return (Q4.m) bVarCompute;
        }
        throw new I4.a("Kotlin reflection implementation is not found at runtime. Make sure you have kotlin-reflect.jar in the classpath");
    }
}
