aab1959cc4
#KT-57835 Fixed
13 lines
164 B
Kotlin
Vendored
13 lines
164 B
Kotlin
Vendored
// TARGET_BACKEND: JS
|
|
|
|
fun jso(
|
|
block: dynamic.() -> Unit,
|
|
): dynamic {
|
|
val o = js("{}")
|
|
block(o)
|
|
return o
|
|
}
|
|
|
|
fun box() = jso {
|
|
bar = "OK"
|
|
}.bar |