- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
22 lines
645 B
Java
22 lines
645 B
Java
package kotlinx.coroutines;
|
|
|
|
import kotlin.coroutines.Continuation;
|
|
import kotlin.coroutines.jvm.internal.ContinuationImpl;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class DelayKt$awaitCancellation$1 extends ContinuationImpl {
|
|
public int label;
|
|
public /* synthetic */ Object result;
|
|
|
|
public DelayKt$awaitCancellation$1(Continuation continuation) {
|
|
super(continuation);
|
|
}
|
|
|
|
@Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl
|
|
public final Object invokeSuspend(Object obj) {
|
|
this.result = obj;
|
|
this.label |= Integer.MIN_VALUE;
|
|
return DelayKt.awaitCancellation(this);
|
|
}
|
|
}
|