5b3816cce5
treat it as a general one, introduce *_K1 and *_K2 variants for more specific ignoring
51 lines
2.7 KiB
Kotlin
Vendored
51 lines
2.7 KiB
Kotlin
Vendored
// IGNORE_BACKEND_K1: JVM_IR
|
|
package test
|
|
|
|
import kotlin.reflect.KFunction
|
|
import kotlin.collections.*
|
|
|
|
@CompileTimeCalculation
|
|
class A(val a: Int, val b: String) {
|
|
val String.propertyWithExtension: Int
|
|
get() = this.length * a
|
|
|
|
fun Int.funWithExtension(other: Int) = this + other
|
|
}
|
|
|
|
const val aSimpleName = <!EVALUATED: `A`!>A::class.simpleName!!<!>
|
|
const val aQualifiedName = <!EVALUATED: `test.A`!>A::class.qualifiedName!!<!>
|
|
const val aMembers = <!EVALUATED: `val test.A.a: kotlin.Int, val test.A.b: kotlin.String, val test.A.(kotlin.String.)propertyWithExtension: kotlin.Int, fun test.A.(kotlin.Int.)funWithExtension(kotlin.Int): kotlin.Int, fun test.A.equals(kotlin.Any?): kotlin.Boolean, fun test.A.hashCode(): kotlin.Int, fun test.A.toString(): kotlin.String`!>A::class.members.joinToString()<!>
|
|
const val aConstructors = <!EVALUATED: `fun <init>(kotlin.Int, kotlin.String): test.A`!>A::class.constructors.joinToString()<!>
|
|
const val aVisibility = <!EVALUATED: `PUBLIC`!>A::class.visibility.toString()<!>
|
|
const val aSupertypes = <!EVALUATED: `kotlin.Any`!>A::class.supertypes.joinToString()<!>
|
|
|
|
@CompileTimeCalculation
|
|
interface Base<T>
|
|
|
|
@CompileTimeCalculation
|
|
class B<T, E : T, D : Any>(val prop: T) : Base<T> {
|
|
fun get(): T = prop
|
|
|
|
fun getThis(): B<T, out E, in D> = this
|
|
|
|
fun <E : Number> withTypeParameter(num: E) = num.toString()
|
|
}
|
|
|
|
const val bMembers = <!EVALUATED: `val test.B<T, E, D>.prop: T, fun test.B<T, E, D>.get(): T, fun test.B<T, E, D>.getThis(): test.B<T, out E, in D>, fun test.B<T, E, D>.withTypeParameter(E): kotlin.String, fun test.B<T, E, D>.equals(kotlin.Any?): kotlin.Boolean, fun test.B<T, E, D>.hashCode(): kotlin.Int, fun test.B<T, E, D>.toString(): kotlin.String`!>B::class.members.joinToString()<!>
|
|
const val bTypeParameters = <!EVALUATED: `T, E, D`!>B::class.typeParameters.joinToString()<!>
|
|
const val bSupertypes = <!EVALUATED: `test.Base<T>, kotlin.Any`!>B::class.supertypes.joinToString()<!>
|
|
const val bReturnType1 = <!EVALUATED: `T`!>B::class.members.toList()[1].returnType.toString()<!>
|
|
const val bReturnType2 = <!EVALUATED: `kotlin.String`!>B::class.members.toList()[3].returnType.toString()<!>
|
|
|
|
const val arguments1 = <!EVALUATED: `T, out E, in D`!>(B<Number, Double, Int>(1)::getThis as KFunction<*>).returnType.arguments.joinToString()<!>
|
|
const val arguments2 = <!EVALUATED: `T`!>(arrayOf(1)::iterator as KFunction<*>).returnType.arguments.joinToString()<!>
|
|
|
|
@CompileTimeCalculation
|
|
class C {
|
|
val String.getLength
|
|
get() = this.length
|
|
}
|
|
|
|
const val cMember = <!EVALUATED: `val test.C.(kotlin.String.)getLength: kotlin.Int`!>C::class.members.toList()[0].toString()<!>
|
|
const val cMemberReturnType = <!EVALUATED: `class kotlin.Int`!>C::class.members.toList()[0].returnType.classifier.toString()<!>
|