minor: rename TargetBackend enum values
This commit is contained in:
@@ -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";
|
||||||
|
|||||||
Reference in New Issue
Block a user