Hey! Is it possible to get the class that a `Kotli...
# arrow-meta
a
Hey! Is it possible to get the class that a
KotlinType
(type parameter) is pointing to, in the analysis phase?
r
Hi @Ahmed Mourad, if you have a kotlin type you should be able to just access it’s type constructor descriptor accessing the constructor property.
If I recall it’s something like
type.constructor.declarationDescriptor
😅 1
a
Oh .. cool 😅 Thank you!
👍 1