[Wasm] Implement IrLinkageError end enable partial linker

KT-58088
This commit is contained in:
Igor Yakovlev
2024-03-04 13:58:33 +01:00
committed by Space Team
parent 6114264325
commit 1e798a2527
4 changed files with 18 additions and 1 deletions
@@ -0,0 +1,12 @@
/*
* Copyright 2010-2024 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
internal class IrLinkageError(message: String?) : Error(message)
internal fun throwLinkageError(message: String?): Nothing {
throw IrLinkageError(message)
}