efafb6585e
- support object expression - do not wrap in function in statement-level position - support implicit return - code clean up
9 lines
157 B
Kotlin
Vendored
9 lines
157 B
Kotlin
Vendored
// EXPECTED_REACHABLE_NODES: 1280
|
|
fun box(): String {
|
|
return js("""
|
|
function foo() {
|
|
return "OK";
|
|
}
|
|
foo();
|
|
""")
|
|
} |