JS IR: mute codegen box tests automatically

This commit is contained in:
Anton Bannykh
2018-06-07 14:17:45 +03:00
parent 7e1713af44
commit 96355e2732
2384 changed files with 2384 additions and 0 deletions
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
class A {
class B1
class B2(val x: Int)
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
class Outer {
enum class Nested {
O,
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
open class A(val s: String) {
open inner class B(s: String): A(s)
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
fun box(): String {
abstract class L1 {
abstract fun foo(): String
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
// KT-3581
open class A(val result: String = "OK") {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
open class SomeClass(val some: Double, val other: Int, vararg val args: String) {
fun result() = args[1]
}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
class A {
open inner class Inner(val result: String = "OK", val int: Int)
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
fun box(): String {
val capture = "oh"
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
fun box(): String {
val d = 42.0
val c = 'C'