Skip to content

Commit

Permalink
Reference a coroutines feature request
Browse files Browse the repository at this point in the history
  • Loading branch information
squarejesse committed Dec 8, 2023
1 parent 947f79d commit 1e87a9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ public class StandardAppLifecycle(
override fun start(host: Host) {
check(!started) { "already started" }
this.started = true

this.host = host
this.broadcastFrameClock = BroadcastFrameClock { host.requestFrame() }
this.frameClock = broadcastFrameClock
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import kotlinx.coroutines.CoroutineExceptionHandler
*
* This assumes we're the [StandardAppLifecycle] owns the entire JS runtime.
*/
@Suppress("INVISIBLE_MEMBER")
@Suppress("INVISIBLE_MEMBER") // https://github.com/Kotlin/kotlinx.coroutines/issues/3978
internal actual fun prepareEnvironment(
coroutineExceptionHandler: CoroutineExceptionHandler,
) {
Expand Down

0 comments on commit 1e87a9c

Please sign in to comment.