- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
42 lines
1.6 KiB
Java
42 lines
1.6 KiB
Java
package kotlinx.coroutines;
|
|
|
|
import java.util.concurrent.atomic.AtomicIntegerFieldUpdater;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class CancelledContinuation extends CompletedExceptionally {
|
|
public static final AtomicIntegerFieldUpdater _resumed$FU = AtomicIntegerFieldUpdater.newUpdater(CancelledContinuation.class, "_resumed");
|
|
private volatile int _resumed;
|
|
|
|
/* JADX WARN: Illegal instructions before constructor call */
|
|
/*
|
|
Code decompiled incorrectly, please refer to instructions dump.
|
|
To view partially-correct add '--show-bad-code' argument
|
|
*/
|
|
public CancelledContinuation(kotlin.coroutines.Continuation r3, java.lang.Throwable r4, boolean r5) {
|
|
/*
|
|
r2 = this;
|
|
if (r4 != 0) goto L1d
|
|
java.util.concurrent.CancellationException r4 = new java.util.concurrent.CancellationException
|
|
java.lang.StringBuilder r0 = new java.lang.StringBuilder
|
|
r0.<init>()
|
|
java.lang.String r1 = "Continuation "
|
|
r0.append(r1)
|
|
r0.append(r3)
|
|
java.lang.String r3 = " was cancelled normally"
|
|
r0.append(r3)
|
|
java.lang.String r3 = r0.toString()
|
|
r4.<init>(r3)
|
|
L1d:
|
|
r2.<init>(r4, r5)
|
|
r3 = 0
|
|
r2._resumed = r3
|
|
return
|
|
*/
|
|
throw new UnsupportedOperationException("Method not decompiled: kotlinx.coroutines.CancelledContinuation.<init>(kotlin.coroutines.Continuation, java.lang.Throwable, boolean):void");
|
|
}
|
|
|
|
public final boolean makeResumed() {
|
|
return _resumed$FU.compareAndSet(this, 0, 1);
|
|
}
|
|
}
|