[Wasm] Rename JsHandle to JsReference

Decision to do this was made at Kotlin/Wasm interop design meeting
This commit is contained in:
Svyatoslav Kuzmich
2023-04-19 15:38:47 +02:00
committed by teamcity
parent 7ba8f7cce2
commit 933f47aaf9
8 changed files with 29 additions and 29 deletions
+1 -1
View File
@@ -57,6 +57,6 @@ class AsyncTest {
@Test
fun testJsValueToThrowableOrNull2() {
val e = MyThrowable()
assertEquals((e.toJsHandle()).toThrowableOrNull(), e)
assertEquals((e.toJsReference()).toThrowableOrNull(), e)
}
}