[JS IR] Unmute tests and add KJS_WITH_FULL_RUNTIME

This commit is contained in:
Svyatoslav Kuzmich
2019-12-02 17:10:10 +03:00
parent e32ec2a789
commit f099277210
3 changed files with 3 additions and 3 deletions
@@ -1,7 +1,7 @@
// !LANGUAGE: +NewInference
// IGNORE_BACKEND_FIR: JVM_IR
// WITH_RUNTIME
// IGNORE_BACKEND: JS_IR
// KJS_WITH_FULL_RUNTIME
fun test(foo: MutableList<String>?): List<String> {
val bar = foo ?: listOf()
@@ -1,6 +1,6 @@
// IGNORE_BACKEND_FIR: JVM_IR
// WITH_RUNTIME
// IGNORE_BACKEND: JS_IR
// KJS_WITH_FULL_RUNTIME
fun test() {
fun returnMutableList(): MutableList<Int>? = null
@@ -1,5 +1,5 @@
// WITH_RUNTIME
// IGNORE_BACKEND: JS_IR
// KJS_WITH_FULL_RUNTIME
// IGNORE_BACKEND_FIR: JVM_IR
fun takeUByte(u: UByte) = u.toByte()