Files
rr3-apk/decompiled/sources/kotlinx/coroutines/DeferredCoroutine.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

29 lines
1.0 KiB
Java

package kotlinx.coroutines;
import kotlin.coroutines.Continuation;
import kotlin.coroutines.CoroutineContext;
import kotlin.coroutines.intrinsics.IntrinsicsKt__IntrinsicsKt;
/* loaded from: classes5.dex */
public class DeferredCoroutine extends AbstractCoroutine implements Deferred {
@Override // kotlinx.coroutines.Deferred
public Object await(Continuation continuation) {
return await$suspendImpl(this, continuation);
}
public DeferredCoroutine(CoroutineContext coroutineContext, boolean z) {
super(coroutineContext, true, z);
}
@Override // kotlinx.coroutines.Deferred
public Object getCompleted() {
return getCompletedInternal$kotlinx_coroutines_core();
}
public static /* synthetic */ Object await$suspendImpl(DeferredCoroutine deferredCoroutine, Continuation continuation) {
Object awaitInternal = deferredCoroutine.awaitInternal(continuation);
IntrinsicsKt__IntrinsicsKt.getCOROUTINE_SUSPENDED();
return awaitInternal;
}
}