Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Svetlana Zemlyanskaya
Total activity
44
Last activity
March 29, 2019 15:00
Member since
October 11, 2013 14:15
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
14
Activity overview
Articles (0)
Posts (0)
Comments (30)
Sort by recent activity
Recent activity
Votes
Created
March 29, 2019 15:00
@Mikhail, "Listen for debug connection" is an action in PhpStorm which starts listening for all incoming Xdebug connections on port configured in `Settings | Languages & Frameworks | PHP | Debug` -...
Community
IntelliJ IDEA Open API and Plugin Development
Creating a custom debug configuration for PhpStorm
0 votes
Created
June 12, 2017 12:15
Official comment
Hi David, sorry for the long response. You've solved your problem, haven't you? The behavior looks consistent to me, `getContainingClass()` is not equals to null in both real execution and tests wh...
Community
IntelliJ IDEA Open API and Plugin Development
Unit test: checking for a NPE where exists an error before
0 votes
Created
May 02, 2017 10:14
In your pattern, you write that function call should be a parent of a string not a parent of a parameter list. It would be better to use: psiWithParentString.withSuperParent(2, psiWithTypeParamList...
Community
IntelliJ IDEA Open API and Plugin Development
Advanced Php element pattern
0 votes
Edited
April 28, 2017 12:23
Official comment
You need to provide completion inside a string, so instead of psiElement().withElementType(PhpElementTypes.STRING). you need psiElement().withParent(StringLiteralExpression.class).
Community
IntelliJ IDEA Open API and Plugin Development
Advanced Php element pattern
0 votes
Created
April 25, 2017 15:50
Great! I'm happy to help.
Community
IntelliJ IDEA Open API and Plugin Development
How do I get parameter data from Php method under current offset?
0 votes
Created
April 25, 2017 15:24
I see, 'GetTemplate' is a function, not a method, hence you need to adjust ''GetTemplateReferenceContributor'': @Overridepublic void registerReferenceProviders(@NotNull PsiReferenceRegistrar regist...
Community
IntelliJ IDEA Open API and Plugin Development
How do I get parameter data from Php method under current offset?
0 votes
Created
April 25, 2017 14:53
Breakpoints should work fine. Please make sure you registered reference contributor in plugin.xml. Also this method is called lazy, so you need to placed your cursor inside templateName string para...
Community
IntelliJ IDEA Open API and Plugin Development
How do I get parameter data from Php method under current offset?
0 votes
Created
April 25, 2017 13:17
> Are there any examples of that, other than on your website? Yes, see the section "Define a reference" in http://www.jetbrains.org/intellij/sdk/docs/tutorials/custom_language_support/reference_con...
Community
IntelliJ IDEA Open API and Plugin Development
How do I get parameter data from Php method under current offset?
0 votes
Created
April 25, 2017 12:55
I guess word reference was not clear? In terms of Intellij plugin development, it's a link between different psi elements. Here you can read more about this term: http://www.jetbrains.org/intellij/...
Community
IntelliJ IDEA Open API and Plugin Development
How do I get parameter data from Php method under current offset?
0 votes
Created
April 25, 2017 11:23
Official comment
Have you tried to implement "PsiReferenceContributor"? It's very powerful technic which allows you to provide custom navigation from one element to another. In your case, it makes sense to add a r...
Community
IntelliJ IDEA Open API and Plugin Development
How do I get parameter data from Php method under current offset?
0 votes
Next
›
Last
»