D
D
Delias2013-12-18 11:56:39
JavaScript
Delias, 2013-12-18 11:56:39

Fast navigation between overridden JS methods in PHPStorm

When I had all the methods in one class, it was very convenient, from anywhere in the IDE I can go to this method if I press Ctrl + the name of the method.
But after I overridden these methods (depending on whether the site is mobile or not) in the main class, I left an empty method to understand that it was overridden.
moveNextDoc: function () { },
Now the implementation of these methods lies in other files, and is connected depending on the conditions.
If you write in PHP, it pulls all the methods from other files, and you can choose which file to open.
In the case of JS, I automatically get into an empty method. It turns out to be very unproductive, you have to manually go to the desired file and search for the method.
Can somehow it is possible to solve this problem? How do you speed up this process?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
N
Nikolai Vasilchuk, 2013-12-18
@Anonym

phpStorm offers me a choice of method.

P
Par Mactep, 2013-12-18
@parmactep

PhpStorm jumps you to the place where the method was defined, not where its implementation is.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question