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
interface T {
fun foo(): String
}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
// WITH_RUNTIME
import Host.x
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
// WITH_RUNTIME
import Host.x
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
public abstract class FList<T>() {
public abstract val head: T
public abstract val tail: FList<T>
@@ -1,4 +1,5 @@
// !LANGUAGE: +NestedClassesInAnnotations
// IGNORE_BACKEND: JS_IR
// WITH_RUNTIME
import kotlin.test.*
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS, NATIVE
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
enum class Color(val rgb : Int) {
RED(0xFF0000),
GREEN(0x00FF00),
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS, NATIVE
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
fun box() : String {
var a = 1
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS, NATIVE
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS, NATIVE
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS, NATIVE
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS, NATIVE
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
enum class Test {
A,
B,
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
object O {
val mmmap = HashMap<String, Int>();
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
object A {
val a = "OK"
val b = A.a
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
public inline fun <T> T.with(f: T.() -> Unit): T {
this.f()
return this
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
class A(val result: String)
fun a(body: A.() -> String): String {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
interface T
object Foo {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
class Test {
companion object {
fun ok() = "OK"
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
abstract class Base(val fn: () -> String)
class Host {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
interface Test {
companion object {
fun ok() = "OK"
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
abstract class Base(val fn: () -> String)
interface Host {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
object Test {
fun ok() = "OK"
val x = run { Test.ok() }
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
abstract class Base(val fn: () -> String)
object Test : Base(run { { Test.ok() } }) {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JS_IR
// KT-5869
operator fun <T> Iterator<T>.iterator(): Iterator<T> = this