minor: rename TargetBackend enum values

This commit is contained in:
Michael Nedzelsky
2014-10-09 00:21:50 +04:00
parent 869487ac82
commit aa3d0fe1d7
3 changed files with 4 additions and 4 deletions
@@ -1,4 +1,4 @@
// TARGET_BACKEND: ONLY_JVM // TARGET_BACKEND: JVM
import java.util.HashSet import java.util.HashSet
trait A : Set<String> trait A : Set<String>
@@ -648,7 +648,7 @@ fun main(args: Array<String>) {
testGroup("js/js.tests/test", "compiler/testData") { testGroup("js/js.tests/test", "compiler/testData") {
testClass(javaClass<AbstractBridgeTest>()) { testClass(javaClass<AbstractBridgeTest>()) {
model("codegen/box/bridges", targetBackend = TargetBackend.ONLY_JS) model("codegen/box/bridges", targetBackend = TargetBackend.JS)
} }
} }
} }
@@ -37,8 +37,8 @@ public class TestGenerator {
public static enum TargetBackend { public static enum TargetBackend {
ANY, ANY,
ONLY_JVM, JVM,
ONLY_JS JS
} }
public static final String NAVIGATION_METADATA = "navigationMetadata"; public static final String NAVIGATION_METADATA = "navigationMetadata";