Files
rr3-apk/decompiled/sources/com/unity3d/ads/adplayer/AndroidFullscreenWebViewAdPlayer$show$5.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

55 lines
2.4 KiB
Java

package com.unity3d.ads.adplayer;
import com.unity3d.ads.core.data.model.ShowEvent;
import kotlin.ResultKt;
import kotlin.Unit;
import kotlin.coroutines.Continuation;
import kotlin.coroutines.intrinsics.IntrinsicsKt__IntrinsicsKt;
import kotlin.coroutines.jvm.internal.DebugMetadata;
import kotlin.coroutines.jvm.internal.SuspendLambda;
import kotlin.jvm.functions.Function2;
@DebugMetadata(c = "com.unity3d.ads.adplayer.AndroidFullscreenWebViewAdPlayer$show$5", f = "AndroidFullscreenWebViewAdPlayer.kt", l = {72}, m = "invokeSuspend")
/* loaded from: classes4.dex */
public final class AndroidFullscreenWebViewAdPlayer$show$5 extends SuspendLambda implements Function2 {
int label;
final /* synthetic */ AndroidFullscreenWebViewAdPlayer this$0;
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public AndroidFullscreenWebViewAdPlayer$show$5(AndroidFullscreenWebViewAdPlayer androidFullscreenWebViewAdPlayer, Continuation continuation) {
super(2, continuation);
this.this$0 = androidFullscreenWebViewAdPlayer;
}
@Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl
public final Continuation create(Object obj, Continuation continuation) {
return new AndroidFullscreenWebViewAdPlayer$show$5(this.this$0, continuation);
}
@Override // kotlin.jvm.functions.Function2
public final Object invoke(ShowEvent showEvent, Continuation continuation) {
return ((AndroidFullscreenWebViewAdPlayer$show$5) create(showEvent, continuation)).invokeSuspend(Unit.INSTANCE);
}
@Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl
public final Object invokeSuspend(Object obj) {
Object coroutine_suspended;
coroutine_suspended = IntrinsicsKt__IntrinsicsKt.getCOROUTINE_SUSPENDED();
int i = this.label;
if (i == 0) {
ResultKt.throwOnFailure(obj);
AndroidFullscreenWebViewAdPlayer androidFullscreenWebViewAdPlayer = this.this$0;
this.label = 1;
if (androidFullscreenWebViewAdPlayer.destroy(this) == coroutine_suspended) {
return coroutine_suspended;
}
} else {
if (i != 1) {
throw new IllegalStateException("call to 'resume' before 'invoke' with coroutine");
}
ResultKt.throwOnFailure(obj);
}
return Unit.INSTANCE;
}
}