anyone knows what is the kotlin equivalent to `Psi...
# intellij-plugins
m
anyone knows what is the kotlin equivalent to
PsiPolyadicExpression
in java?
d
The Kotlin doesn’t have a direct equivalent. It uses nested
KtBinaryExpression
to build a complex expression
m
thank you very much!