33 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package kotlinx.coroutines;
 | |
| 
 | |
| import kotlin.Metadata;
 | |
| import kotlin.Result;
 | |
| import kotlin.Unit;
 | |
| import kotlin.coroutines.Continuation;
 | |
| 
 | |
| /* compiled from: JobSupport.kt */
 | |
| @Metadata(d1 = {"\u0000\u001c\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0010\u0002\n\u0002\b\u0003\n\u0002\u0010\u0003\n\u0000\b\u0002\u0018\u00002\u00020\u0001B\u0013\u0012\f\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003¢\u0006\u0002\u0010\u0005J\u0013\u0010\u0006\u001a\u00020\u00042\b\u0010\u0007\u001a\u0004\u0018\u00010\bH\u0096\u0002R\u0014\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003X\u0082\u0004¢\u0006\u0002\n\u0000¨\u0006\t"}, d2 = {"Lkotlinx/coroutines/ResumeOnCompletion;", "Lkotlinx/coroutines/JobNode;", "continuation", "Lkotlin/coroutines/Continuation;", "", "(Lkotlin/coroutines/Continuation;)V", "invoke", "cause", "", "kotlinx-coroutines-core"}, k = 1, mv = {1, 8, 0}, xi = 48)
 | |
| /* loaded from: classes.dex */
 | |
| final class ResumeOnCompletion extends JobNode {
 | |
|     private final Continuation<Unit> continuation;
 | |
| 
 | |
|     @Override // kotlin.jvm.functions.Function1
 | |
|     public /* bridge */ /* synthetic */ Unit invoke(Throwable th) {
 | |
|         invoke2(th);
 | |
|         return Unit.INSTANCE;
 | |
|     }
 | |
| 
 | |
|     /* JADX WARN: Multi-variable type inference failed */
 | |
|     public ResumeOnCompletion(Continuation<? super Unit> continuation) {
 | |
|         this.continuation = continuation;
 | |
|     }
 | |
| 
 | |
|     @Override // kotlinx.coroutines.CompletionHandlerBase
 | |
|     /* renamed from: invoke, reason: avoid collision after fix types in other method */
 | |
|     public void invoke2(Throwable cause) {
 | |
|         Continuation<Unit> continuation = this.continuation;
 | |
|         Result.Companion companion = Result.INSTANCE;
 | |
|         continuation.resumeWith(Result.m288constructorimpl(Unit.INSTANCE));
 | |
|     }
 | |
| }
 |