abbreviated Type
Abbreviation of this type. Note that all types are expanded for metadata produced by the Kotlin compiler. For example:
typealias A<T> = MutableList<T>
fun foo(a: A<Any>) {}The type of the foo's parameter in the metadata is actually MutableList<Any>, and its abbreviation is A<Any>.