Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Tagir Valeev
Total activity
15
Last activity
September 08, 2022 12:47
Member since
August 13, 2018 09:21
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
7
Activity overview
Articles (0)
Posts (0)
Comments (8)
Tagir Valeev
commented,
September 08, 2022 12:47
Hm... I don't know this code pretty well but from what I see, you are creating the setters private (getAccessorsVisibility(): String = PsiModifier.PRIVATE) but you are encapsulating public fields (...
Community
IntelliJ IDEA Open API and Plugin Development
Error while executing EncapsulateFieldsProcessor
0 votes
Tagir Valeev
commented,
August 27, 2021 04:53
> and the first thing I have to do is undo what was done based on the lookup string to then do the actual completion Looks like it's an ok approach, given the currently existing API. Do you have an...
Community
IntelliJ IDEA Open API and Plugin Development
Code-completion without applying initial lookupString
0 votes
Tagir Valeev
commented,
August 24, 2021 05:38
Using separate dummy identifiers for different contributors would likely be slow, as when a dummy identifier is introduced, a complete non-physical copy of the file is created and parsed. Usually, ...
Community
IntelliJ IDEA Open API and Plugin Development
DummyIdentifier and CompletionContributor order
0 votes
Tagir Valeev
commented,
December 04, 2020 02:56
Official comment
Hello! It looks like you've hit a java compiler bug that was introduced in Java 9. Reported it to OpenJDK issue tracker: JDK-8257740. Unfortunately, we cannot fix it on the IntelliJ IDEA side. But ...
Community
IntelliJ IDEA Open API and Plugin Development
Issue Compiling Plugin with Java 11
0 votes
Tagir Valeev
commented,
October 18, 2019 11:28
From what I can see, you've hit a problem which I filed as IDEA-225113. We fixed it and will backport to 2019.3.
Community
IntelliJ IDEA Users
Any trick to getting @MagicConstant work in libraries?
0 votes
Tagir Valeev
commented,
November 26, 2018 09:01
Root, my previous answer answers your question as well: > Unfortunately our Java data flow analysis is not part of open API and can be changed without notice, so I would not recommend reusing parts...
Community
IntelliJ IDEA Open API and Plugin Development
Need pointers for implementing my own data flow analysis
0 votes
Tagir Valeev
commented,
September 24, 2018 08:15
Official comment
This is a feature, not bug. Some users like it, as often you declare variable with more abstract type, then want to make it more specific to access more methods, especially together with "Too weak ...
Community
IntelliJ IDEA Users
Code Completion shows subclass methods
0 votes
Tagir Valeev
commented,
August 13, 2018 09:21
Official comment
Hello! Unfortunately our Java data flow analysis is not part of open API and can be changed without notice, so I would not recommend reusing parts of it in the plugin. Could you explain in more det...
Community
IntelliJ IDEA Open API and Plugin Development
Need pointers for implementing my own data flow analysis
0 votes