Nikita Eshkeev
- Total activity 16
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 5
-
-
Nikita Eshkeev created a post, How do I access INJECTION of a PsiField's initializer, which is a PsiLanguageInjectionHost?
What I have done: I defined my own language "MyLanguage" I need to inject this language to both annotations' values and fields' initializers, so I defined a com.intellij.lang.injection.MultiHostIn... -
-
Nikita Eshkeev created a post, AnsweredAutocompletion hangs in custom MultiHostInjector
I defined the following instance of MultiHostInjector to treat comments a java methods' bodies: public class MyCustomMultiHostInjector implements MultiHostInjector { @Override public void get... -
-
-
Nikita Eshkeev created a post, AnsweredHow do I enhance java parser to capture information from PsiComment and PsiDocComment?
I would like to capture some valuable information from a comment block either PsiComment or PsiDocComment which, say, is enclosed into curly brackets, for example: /** * Documentation string 1 * { ... -
-
Nikita Eshkeev created a post, How do I add a completion contributor for a composite element?
I need to add additional entries to the completion dialog for method references (e.g. Objects::toString). The article says that I need to use withParent or withSuperParent for composite elements, b... -