Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
English (United States)
简体中文
Sign in
Anna Kozlova
Total activity
1422
Last activity
June 12, 2023 14:16
Member since
October 25, 2005 10:47
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
503
Activity overview
Articles (0)
Posts (0)
Comments (919)
Sort by recent activity
Recent activity
Votes
Created
August 22, 2018 15:02
Try to look at `com.intellij.psi.util.InheritanceUtil#findEnclosingInstanceInScope` where you find class by `call.resolveMethod().getContainingClass()`
Community
IntelliJ IDEA Open API and Plugin Development
Receiver type given a possibly unqualified PsiMethodCallExpression?
0 votes
Created
August 22, 2018 08:34
If you resolve a method call and call `getContainingClass()` it will return a class where the method is defined and thus the receiver type. Or do you mean that you need the current "this" of the ca...
Community
IntelliJ IDEA Open API and Plugin Development
Receiver type given a possibly unqualified PsiMethodCallExpression?
0 votes
Created
August 21, 2018 08:14
Official comment
Hi Christian, what is "actual static receiver type", e.g. if the method is instance method? I believe that you need to check if `call.getMethodExpression().getQualifierExpression()` is `null`. If y...
Community
IntelliJ IDEA Open API and Plugin Development
Receiver type given a possibly unqualified PsiMethodCallExpression?
0 votes
Created
August 02, 2018 16:41
Please see the implementation of `com.intellij.execution.testframework.sm.runner.history.actions.AbstractImportTestsAction` Thanks, Anna
Community
IntelliJ IDEA Users
programmatically import unit test results from xml into Junit view in IntelliJ
0 votes
Created
August 02, 2018 12:42
You may provide your own delegate to process directories?
Community
IntelliJ IDEA Open API and Plugin Development
Delete action listener, capturing what's deleted
0 votes
Created
August 02, 2018 12:01
so files you remove are referenced in the xml? I would expect that safe delete would find them then, no? You try to separate delete action into two parts and that could lead to e.g. undo problems (...
Community
IntelliJ IDEA Open API and Plugin Development
Delete action listener, capturing what's deleted
0 votes
Created
August 02, 2018 09:21
Hi John, you may of cause watch VFS when files are deleted (`com.intellij.openapi.vfs.VirtualFileListener#fileDeleted`) but it looks incorrect to me. How is the xml and the deleted files connected ...
Community
IntelliJ IDEA Open API and Plugin Development
Delete action listener, capturing what's deleted
0 votes
Created
August 02, 2018 07:29
Why do you need junit 5 plugin in your tests? Anyway, you need to pass required plugin ids in one property, comma (",") separated. And most important, you need to add your plugin explicitly here, ...
Community
IntelliJ IDEA Open API and Plugin Development
LightCodeInsightFixtureTestCase unable to resolve PsiReferenceExpression
0 votes
Created
August 01, 2018 07:12
Classes from jdk should be resolved, cause mock jdk is added automatically to the dependencies based on project descriptor of the test. The light tests (e.g. LightCodeInsightFixturetestCase) should...
Community
IntelliJ IDEA Open API and Plugin Development
LightCodeInsightFixtureTestCase unable to resolve PsiReferenceExpression
0 votes
Created
July 31, 2018 19:03
They are hard coded as far as I can tell. Sorry
Community
IntelliJ IDEA Open API and Plugin Development
"custom scope" based on changed lines instead of whole files?
0 votes
«
First
‹
Previous
Next
›
Last
»