package androidx.compose.foundation.gestures; import androidx.compose.animation.core.AnimationSpec; import androidx.compose.animation.core.SuspendAnimationKt; import kotlin.Metadata; 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 kotlin.jvm.internal.Ref; /* JADX INFO: Access modifiers changed from: package-private */ /* compiled from: ScrollExtensions.kt */ @Metadata(d1 = {"\u0000\n\n\u0000\n\u0002\u0010\u0002\n\u0002\u0018\u0002\u0010\u0000\u001a\u00020\u0001*\u00020\u0002H\u008a@"}, d2 = {"", "", "Landroidx/compose/foundation/gestures/ScrollScope;"}, k = 3, mv = {1, 8, 0}, xi = 48) @DebugMetadata(c = "androidx.compose.foundation.gestures.ScrollExtensionsKt$animateScrollBy$2", f = "ScrollExtensions.kt", i = {}, l = {41}, m = "invokeSuspend", n = {}, s = {}) /* loaded from: classes.dex */ public final class ScrollExtensionsKt$animateScrollBy$2 extends SuspendLambda implements Function2, Object> { final /* synthetic */ AnimationSpec $animationSpec; final /* synthetic */ Ref.FloatRef $previousValue; final /* synthetic */ float $value; private /* synthetic */ Object L$0; int label; /* JADX INFO: Access modifiers changed from: package-private */ /* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */ public ScrollExtensionsKt$animateScrollBy$2(float f, AnimationSpec animationSpec, Ref.FloatRef floatRef, Continuation continuation) { super(2, continuation); this.$value = f; this.$animationSpec = animationSpec; this.$previousValue = floatRef; } @Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl public final Continuation create(Object obj, Continuation continuation) { ScrollExtensionsKt$animateScrollBy$2 scrollExtensionsKt$animateScrollBy$2 = new ScrollExtensionsKt$animateScrollBy$2(this.$value, this.$animationSpec, this.$previousValue, continuation); scrollExtensionsKt$animateScrollBy$2.L$0 = obj; return scrollExtensionsKt$animateScrollBy$2; } @Override // kotlin.jvm.functions.Function2 public final Object invoke(ScrollScope scrollScope, Continuation continuation) { return ((ScrollExtensionsKt$animateScrollBy$2) create(scrollScope, continuation)).invokeSuspend(Unit.INSTANCE); } @Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl public final Object invokeSuspend(Object obj) { Object coroutine_suspended = IntrinsicsKt.getCOROUTINE_SUSPENDED(); int i = this.label; if (i == 0) { ResultKt.throwOnFailure(obj); final ScrollScope scrollScope = (ScrollScope) this.L$0; float f = this.$value; AnimationSpec animationSpec = this.$animationSpec; final Ref.FloatRef floatRef = this.$previousValue; this.label = 1; if (SuspendAnimationKt.animate$default(0.0f, f, 0.0f, animationSpec, new Function2() { // from class: androidx.compose.foundation.gestures.ScrollExtensionsKt$animateScrollBy$2.1 /* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */ { super(2); } @Override // kotlin.jvm.functions.Function2 public /* bridge */ /* synthetic */ Unit invoke(Float f2, Float f3) { invoke(f2.floatValue(), f3.floatValue()); return Unit.INSTANCE; } public final void invoke(float f2, float f3) { Ref.FloatRef.this.element += scrollScope.scrollBy(f2 - Ref.FloatRef.this.element); } }, this, 4, null) == 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; } }