Is KtLightClass the PsiClass equivalent for Kotlin...
# intellij-plugins
e
Is KtLightClass the PsiClass equivalent for Kotlin sources? And If I have a KtCallableDeclaration, is it possible to get a KtLightClass or PsiClass for the return type of the declaration? I used
resolveToDescriptor()
but that gives me a FunctionDescriptor that has a
returnType
property, but this is of type
KotlinType
which is not part of the Psi structure, so I can't use it easily with the available JListRenderers etc when I want to present a dialog. Does this make sense?