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>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
package kotlinx.coroutines;
/* loaded from: classes5.dex */
public class JobImpl extends JobSupport implements CompletableJob {
public final boolean handlesException;
@Override // kotlinx.coroutines.JobSupport
public boolean getHandlesException$kotlinx_coroutines_core() {
return this.handlesException;
}
@Override // kotlinx.coroutines.JobSupport
public boolean getOnCancelComplete$kotlinx_coroutines_core() {
return true;
}
public JobImpl(Job job) {
super(true);
initParentJob(job);
this.handlesException = handlesException();
}
public final boolean handlesException() {
JobSupport job;
ChildHandle parentHandle$kotlinx_coroutines_core = getParentHandle$kotlinx_coroutines_core();
ChildHandleNode childHandleNode = parentHandle$kotlinx_coroutines_core instanceof ChildHandleNode ? (ChildHandleNode) parentHandle$kotlinx_coroutines_core : null;
if (childHandleNode != null && (job = childHandleNode.getJob()) != null) {
while (!job.getHandlesException$kotlinx_coroutines_core()) {
ChildHandle parentHandle$kotlinx_coroutines_core2 = job.getParentHandle$kotlinx_coroutines_core();
ChildHandleNode childHandleNode2 = parentHandle$kotlinx_coroutines_core2 instanceof ChildHandleNode ? (ChildHandleNode) parentHandle$kotlinx_coroutines_core2 : null;
if (childHandleNode2 != null && (job = childHandleNode2.getJob()) != null) {
}
}
return true;
}
return false;
}
}