[Wasm] Add bootstrap declarations

This commit is contained in:
Igor Yakovlev
2024-01-25 20:07:20 +01:00
committed by Space Team
parent be6b9e8a9a
commit 7cf793f308
@@ -23,4 +23,16 @@ internal fun tryGetAssociatedObject(
// if (C2.klassId == klassId) if (Key2.klassId == keyId) return OBJ2
// ...
return null
}
}
// Remove after bootstrap KT-65322
@Suppress("UNUSED_PARAMETER")
internal fun addAssociatedObject(
mapToInit: MutableMap<ULong, Any>,
klassId: Int,
keyId: Int,
instance: Any
): Unit = error("Remove after bootstrap")
// Remove after bootstrap KT-65322
internal fun initAssociatedObjects(): Unit = error("Remove after bootstrap")