50 lines
2.6 KiB
Java
50 lines
2.6 KiB
Java
package com.sistemasolton.itranvias.home.presentation.nearby;
|
|
|
|
import kotlin.Metadata;
|
|
import kotlin.Pair;
|
|
import kotlin.ResultKt;
|
|
import kotlin.Unit;
|
|
import kotlin.coroutines.Continuation;
|
|
import kotlin.coroutines.intrinsics.IntrinsicsKt;
|
|
import kotlin.coroutines.jvm.internal.DebugMetadata;
|
|
import kotlin.coroutines.jvm.internal.SuspendLambda;
|
|
import kotlin.jvm.functions.Function2;
|
|
import kotlinx.coroutines.CoroutineScope;
|
|
|
|
/* JADX INFO: compiled from: NearbyScreen.kt */
|
|
/* JADX INFO: loaded from: classes2.dex */
|
|
@Metadata(d1 = {"\u0000\n\n\u0000\n\u0002\u0010\u0002\n\u0002\u0018\u0002\u0010\u0000\u001a\u00020\u0001*\u00020\u0002H\n"}, d2 = {"<anonymous>", "", "Lkotlinx/coroutines/CoroutineScope;"}, k = 3, mv = {2, 1, 0}, xi = 48)
|
|
@DebugMetadata(c = "com.sistemasolton.itranvias.home.presentation.nearby.NearbyScreenKt$NearbyScreen$6$1", f = "NearbyScreen.kt", i = {}, l = {}, m = "invokeSuspend", n = {}, s = {})
|
|
final class NearbyScreenKt$NearbyScreen$6$1 extends SuspendLambda implements Function2<CoroutineScope, Continuation<? super Unit>, Object> {
|
|
final /* synthetic */ Pair<Double, Double> $coords;
|
|
final /* synthetic */ NearbyViewModel $viewModel;
|
|
int label;
|
|
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
NearbyScreenKt$NearbyScreen$6$1(NearbyViewModel nearbyViewModel, Pair<Double, Double> pair, Continuation<? super NearbyScreenKt$NearbyScreen$6$1> continuation) {
|
|
super(2, continuation);
|
|
this.$viewModel = nearbyViewModel;
|
|
this.$coords = pair;
|
|
}
|
|
|
|
@Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl
|
|
public final Continuation<Unit> create(Object obj, Continuation<?> continuation) {
|
|
return new NearbyScreenKt$NearbyScreen$6$1(this.$viewModel, this.$coords, continuation);
|
|
}
|
|
|
|
@Override // kotlin.jvm.functions.Function2
|
|
public final Object invoke(CoroutineScope coroutineScope, Continuation<? super Unit> continuation) {
|
|
return ((NearbyScreenKt$NearbyScreen$6$1) create(coroutineScope, continuation)).invokeSuspend(Unit.INSTANCE);
|
|
}
|
|
|
|
@Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl
|
|
public final Object invokeSuspend(Object obj) throws Throwable {
|
|
IntrinsicsKt.getCOROUTINE_SUSPENDED();
|
|
if (this.label != 0) {
|
|
throw new IllegalStateException("call to 'resume' before 'invoke' with coroutine");
|
|
}
|
|
ResultKt.throwOnFailure(obj);
|
|
this.$viewModel.loadInfoAndNearbyStops(this.$coords.getFirst().doubleValue(), this.$coords.getSecond().doubleValue());
|
|
return Unit.INSTANCE;
|
|
}
|
|
} |