mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
Introduce MetadataSource as a way to store the original descriptor for any element (before any lowerings) and maintain it until the end of the codegen where it's used in generating the metadata. Note that JVM signatures written to the metadata are formed from the _resulting_ generated elements, not by mapping the original descriptors. Some corner cases are not supported yet, namely properties declared in companion objects, synthetic methods for property annotations, JvmPackageName, etc. #KT-29119 Fixed
78 lines
1.8 KiB
Kotlin
Vendored
78 lines
1.8 KiB
Kotlin
Vendored
// IGNORE_BACKEND: JS_IR
|
|
// TODO: muted automatically, investigate should it be ran for JS or not
|
|
// IGNORE_BACKEND: JS, NATIVE
|
|
|
|
// WITH_REFLECT
|
|
|
|
import kotlin.reflect.full.createInstance
|
|
import kotlin.test.assertTrue
|
|
import kotlin.test.fail
|
|
|
|
// Good classes
|
|
|
|
class Simple
|
|
class PrimaryWithDefaults(val d1: String = "d1", val d2: Int = 2)
|
|
class Secondary(val s: String) {
|
|
constructor() : this("s")
|
|
}
|
|
class SecondaryWithDefaults(val s: String) {
|
|
constructor(x: Int = 0) : this(x.toString())
|
|
}
|
|
class SecondaryWithDefaultsNoPrimary {
|
|
constructor(x: Int) {}
|
|
constructor(s: String = "") {}
|
|
}
|
|
|
|
// Bad classes
|
|
|
|
class NoNoArgConstructor(val s: String) {
|
|
constructor(x: Int) : this(x.toString())
|
|
}
|
|
class NoArgAndDefault() {
|
|
constructor(x: Int = 0) : this()
|
|
}
|
|
class DefaultPrimaryAndDefaultSecondary(val s: String = "") {
|
|
constructor(x: Int = 0) : this(x.toString())
|
|
}
|
|
class SeveralDefaultSecondaries {
|
|
constructor(x: Int = 0) {}
|
|
constructor(s: String = "") {}
|
|
constructor(d: Double = 3.14) {}
|
|
}
|
|
class PrivateConstructor private constructor()
|
|
object Object
|
|
|
|
// -----------
|
|
|
|
inline fun <reified T : Any> test() {
|
|
val instance = T::class.createInstance()
|
|
assertTrue(instance is T)
|
|
}
|
|
|
|
inline fun <reified T : Any> testFail() {
|
|
try {
|
|
T::class.createInstance()
|
|
fail("createInstance should have failed on ${T::class}")
|
|
} catch (e: Exception) {
|
|
// OK
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
test<Any>()
|
|
test<Simple>()
|
|
test<PrimaryWithDefaults>()
|
|
test<Secondary>()
|
|
test<SecondaryWithDefaults>()
|
|
test<SecondaryWithDefaultsNoPrimary>()
|
|
|
|
testFail<NoNoArgConstructor>()
|
|
testFail<NoArgAndDefault>()
|
|
testFail<DefaultPrimaryAndDefaultSecondary>()
|
|
testFail<SeveralDefaultSecondaries>()
|
|
testFail<PrivateConstructor>()
|
|
testFail<Object>()
|
|
|
|
return "OK"
|
|
}
|