Home
IDEs Support (IntelliJ Platform) | JetBrains
Submit a request
Community
Sign in
Vladimir Dolzhenko
Total activity
5
Last activity
July 13, 2022 07:18
Member since
August 19, 2021 10:01
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
2
Activity overview
Articles (0)
Posts (0)
Comments (3)
Vladimir Dolzhenko
commented,
July 13, 2022 07:18
Kotlin looks up classes from `KotlinJavaPsiFacade` (it is visible on your screenshot) that effectively delegates requests to PsiElementFinder extension points (e.g. one special hack is `KotlinScrip...
Community
IntelliJ IDEA Open API and Plugin Development
Is there a PsiElementFinder for kotlin?
0 votes
Vladimir Dolzhenko
commented,
July 12, 2022 15:46
No, there is no specific PsiElementFinder for Kotlin - no reason for that as Kotlin is compiled into java bytecode. To maintain java-kotlin interop plugin uses so called LightClasses to mimic Java...
Community
IntelliJ IDEA Open API and Plugin Development
Is there a PsiElementFinder for kotlin?
0 votes
Vladimir Dolzhenko
commented,
August 19, 2021 10:01
There is quite useful action View PSI Structure that is enabled in so-called internal mode http://www.jetbrains.org/intellij/sdk/docs/reference_guide/internal_actions/enabling_internal.html : so, ...
Community
IntelliJ IDEA Open API and Plugin Development
How to check if PsiElement is a kotlin constant
1 vote