When developing js with myeclipse, why can't some js methods on this page jump?

can"t spreads jump?
Why are there so many things on this page that can"t be redirected?

Apr.03,2021

maybe it's because IDE cannot parse the declaration location of the method you want to jump to.

even if it is webstorm , I think its jump is based on global matching + context inference, because sometimes it prompts some options with the same name but are obviously unreasonable, such as giving priority to functions in the three-party library.

after all, js is a dynamic language, and I feel that there is no way to know exactly when and where a method enters a context without running it.

Menu