[Wasm/WASI] Implementation of a callback on root exported function exit
Fixed #KT-64486
This commit is contained in:
committed by
Space Team
parent
d3864c841a
commit
931cc48def
@@ -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()
|
||||
}
|
||||
@@ -74,6 +74,7 @@ fun createStdLibVersionedDocTask(version: String, isLatest: Boolean) =
|
||||
"kotlin.native.internal",
|
||||
"kotlin.jvm.functions",
|
||||
"kotlin.coroutines.jvm.internal",
|
||||
"kotlin.wasm.internal",
|
||||
)
|
||||
|
||||
val kotlinLanguageVersion = version
|
||||
|
||||
Reference in New Issue
Block a user