[Wasm/WASI] Implementation of a callback on root exported function exit

Fixed #KT-64486
This commit is contained in:
Igor Yakovlev
2023-09-21 18:55:02 +02:00
committed by Space Team
parent d3864c841a
commit 931cc48def
8 changed files with 208 additions and 2 deletions
@@ -0,0 +1,20 @@
/*
* Copyright 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package kotlin.wasm.internal
@RequiresOptIn
private annotation class InternalWasmApi
/*
This is internal API which is not intended to use on user-side.
*/
@InternalWasmApi
public var onExportedFunctionExit: (() -> Unit)? = null
internal fun invokeOnExportedFunctionExit() {
@OptIn(InternalWasmApi::class)
onExportedFunctionExit?.invoke()
}