Files
kotlin-fork/js/js.translator/testData/box/jsCode/catchScope.kt
T
2016-09-29 12:00:41 +03:00

20 lines
329 B
Kotlin
Vendored

package foo
fun test(action: ()->Unit): String = js("""
var e = { message: "ok" };
try {
action();
} catch (e) {
return e.message;
}
return e.message;
""")
fun box(): String {
assertEquals("ok", test {})
assertEquals("not ok", test { throw Exception("not ok") })
return "OK"
}