Files
kotlin-fork/js/js.translator/testData/jsCode/cases/catchScope.kt
T
2014-12-15 19:16:20 +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"
}