AmiriMoha
- Total activity 20
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 7
-
AmiriMoha created a post, Answereduse a native dart library (package) inside a plugin for dart.
I need to use the (analyzer) dart package to analyze dart code and extract dart variables static types to use in a plugin that i'm developing. i tried to use dart analysis server API, but the serve... -
AmiriMoha commented, -
-
-
AmiriMoha created a post, Answeredwhat is the PSI data structure responsible for retrieving static types of a language?
i need to know how intellij idea features like (quick documentation) reach the static types of a language local variables and methods parameters. examples: this is a java local variable and this... -
-
AmiriMoha created a post, Answeredtrigger an action button passively or on certain instigator
i have a plugin that does an action through a button click event, if i want to trigger the same action through multiple instigators, is it possible? for example if i want to trigger the action ever... -
AmiriMoha commented, -
AmiriMoha created a post, AnsweredAction Button enabled and visible when editor on specific file type.
i'm trying to make an action button only visible and enabled on "Dart programming language" files only. and this is my update method: @Overridepublic void update(@NotNull AnActionEvent e) { PsiF... -
AmiriMoha created a post, AnsweredJetbrains products inlay hints
i'm planning on developing a plugin that does an inlay hints just like java in intellij idea or c# in rider but for other language, and i want to see how jetbrains developers implemented the hints ...