46 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package kotlinx.coroutines;
 | |
| 
 | |
| import kotlin.Metadata;
 | |
| import kotlin.jvm.internal.Intrinsics;
 | |
| 
 | |
| /* compiled from: JobSupport.kt */
 | |
| @Metadata(d1 = {"\u00008\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\b \u0018\u00002\u00020\u00012\u00020\u00022\u00020\u0003B\u0005¢\u0006\u0002\u0010\u0004J\b\u0010\u0012\u001a\u00020\u0013H\u0016J\b\u0010\u0014\u001a\u00020\u0015H\u0016R\u0014\u0010\u0005\u001a\u00020\u00068VX\u0096\u0004¢\u0006\u0006\u001a\u0004\b\u0005\u0010\u0007R\u001a\u0010\b\u001a\u00020\tX\u0086.¢\u0006\u000e\n\u0000\u001a\u0004\b\n\u0010\u000b\"\u0004\b\f\u0010\rR\u0016\u0010\u000e\u001a\u0004\u0018\u00010\u000f8VX\u0096\u0004¢\u0006\u0006\u001a\u0004\b\u0010\u0010\u0011¨\u0006\u0016"}, d2 = {"Lkotlinx/coroutines/JobNode;", "Lkotlinx/coroutines/CompletionHandlerBase;", "Lkotlinx/coroutines/DisposableHandle;", "Lkotlinx/coroutines/Incomplete;", "()V", "isActive", "", "()Z", "job", "Lkotlinx/coroutines/JobSupport;", "getJob", "()Lkotlinx/coroutines/JobSupport;", "setJob", "(Lkotlinx/coroutines/JobSupport;)V", "list", "Lkotlinx/coroutines/NodeList;", "getList", "()Lkotlinx/coroutines/NodeList;", "dispose", "", "toString", "", "kotlinx-coroutines-core"}, k = 1, mv = {1, 8, 0}, xi = 48)
 | |
| /* loaded from: classes.dex */
 | |
| public abstract class JobNode extends CompletionHandlerBase implements DisposableHandle, Incomplete {
 | |
|     public JobSupport job;
 | |
| 
 | |
|     @Override // kotlinx.coroutines.Incomplete
 | |
|     public NodeList getList() {
 | |
|         return null;
 | |
|     }
 | |
| 
 | |
|     @Override // kotlinx.coroutines.Incomplete
 | |
|     /* renamed from: isActive */
 | |
|     public boolean getIsActive() {
 | |
|         return true;
 | |
|     }
 | |
| 
 | |
|     public final void setJob(JobSupport jobSupport) {
 | |
|         this.job = jobSupport;
 | |
|     }
 | |
| 
 | |
|     public final JobSupport getJob() {
 | |
|         JobSupport jobSupport = this.job;
 | |
|         if (jobSupport != null) {
 | |
|             return jobSupport;
 | |
|         }
 | |
|         Intrinsics.throwUninitializedPropertyAccessException("job");
 | |
|         return null;
 | |
|     }
 | |
| 
 | |
|     @Override // kotlinx.coroutines.DisposableHandle
 | |
|     public void dispose() {
 | |
|         getJob().removeNode$kotlinx_coroutines_core(this);
 | |
|     }
 | |
| 
 | |
|     @Override // kotlinx.coroutines.internal.LockFreeLinkedListNode
 | |
|     public String toString() {
 | |
|         return DebugStringsKt.getClassSimpleName(this) + '@' + DebugStringsKt.getHexAddress(this) + "[job@" + DebugStringsKt.getHexAddress(getJob()) + ']';
 | |
|     }
 | |
| }
 |