backend/tests: Ignore all tests with IGNORE_BACKEND: JS directive

This commit is contained in:
Ilya Matveev
2017-01-19 14:06:38 +03:00
parent 89a74c0591
commit 2ef49da2fe
819 changed files with 819 additions and 819 deletions
@@ -1,5 +1,5 @@
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
// IGNORE_BACKEND: JS, NATIVE
data class A(var x: Int) : Cloneable {
public override fun clone(): A = A(x)
@@ -1,5 +1,5 @@
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
// IGNORE_BACKEND: JS, NATIVE
data class A(var x: Int) : Cloneable {
public override fun clone(): A = super.clone() as A
@@ -1,5 +1,5 @@
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
// IGNORE_BACKEND: JS, NATIVE
data class A(var x: Int) : Cloneable {
public override fun clone(): A {
@@ -1,5 +1,5 @@
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
// IGNORE_BACKEND: JS, NATIVE
data class A(val s: String) : Cloneable {
fun externalClone(): A = clone() as A