[JS IR] Support per-file mode and ES modules

This commit is contained in:
Svyatoslav Kuzmich
2021-02-23 15:44:06 +03:00
parent f479ac5c3a
commit 3f8dce4b53
140 changed files with 5136 additions and 609 deletions
@@ -0,0 +1,15 @@
// DONT_TARGET_EXACT_BACKEND: JS
// ES_MODULES
@JsModule("./topLevelVarargFun.mjs")
external fun foo(vararg arg: String): String
fun box(): String {
val x = arrayOf("a", "b")
var r = foo(*x)
if (r != "(ab)") return "fail1: $r"
r = foo("c", "d")
if (r != "(cd)") return "fail2: $r"
return "OK"
}