1 /* 2 * Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. 3 */ 4 package kotlin.coroutines 5 6 // DOKKA STUB 7 public interface Continuation<in T> { 8 public val context: CoroutineContext resumeWithnull9 public fun resumeWith(result: Result<T>) 10 }