Remove configuration kind from AbstractDumpDeclarationsTest tests
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
// WITH_RUNTIME
|
||||
public class ClassWithProperties {
|
||||
|
||||
public val publicVal: Int = 1
|
||||
|
||||
+1
@@ -1,3 +1,4 @@
|
||||
// WITH_RUNTIME
|
||||
interface A<T> {
|
||||
suspend fun foo(): T
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// WITH_RUNTIME
|
||||
// FILE: Part1.kt
|
||||
class A {
|
||||
fun a() : String {
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// WITH_RUNTIME
|
||||
// FILE: Part1.kt
|
||||
@file:kotlin.jvm.JvmMultifileClass
|
||||
@file:kotlin.jvm.JvmName("MultifileFacade")
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// WITH_RUNTIME
|
||||
public fun invokeCoroutineBuilder() {
|
||||
return buildCoroutine {
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// WITH_RUNTIME
|
||||
interface A {
|
||||
suspend fun foo(): Boolean
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// WITH_RUNTIME
|
||||
// properties
|
||||
|
||||
public val publicVal: Int = 1
|
||||
|
||||
-4
@@ -28,8 +28,4 @@ abstract class AbstractDumpDeclarationsTest : CodegenTestCase() {
|
||||
override fun updateConfiguration(configuration: CompilerConfiguration) {
|
||||
configuration.put(JVMConfigurationKeys.DECLARATIONS_JSON_PATH, dumpToFile.path)
|
||||
}
|
||||
|
||||
override fun extractConfigurationKind(files: MutableList<TestFile>): ConfigurationKind {
|
||||
return ConfigurationKind.NO_KOTLIN_REFLECT
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user