Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

suppose I look at a webpage and I see something like: MysteriousClass mc = new MysteriousClass(); mc.CallMysteriousMethod()

Now, the problem is that there are a zillion javascript files included into this page, and how am I supposed to find the one file that contains definition of this MysteriousClass? I know that this could be dealt with using a spider and grep and things like that, but is there a professional and elegant way to do this?

Clarification: yeah, so I would like to do it statically, without debugging. So Firebug is the right way to go?

As far as IDE go, which IDE should I use? Are there IDEs that will automatically download a website with all of its javascript dependencies and then allow static searches for methods and classes?

share|improve this question
Is this really about JavaScript? MysteriousClass mc = new MysteriousClass(); does not strike me as JavaScript syntax... – Jani Hartikainen Sep 17 '09 at 5:56
@Jani If you initiate the object as a proper variable (no spaces) it is JavaScript! But you're right - that looks like something else. – alex Sep 17 '09 at 6:02

2 Answers

Firebug plugin of Firefox can help. Place a break point where mysterious method is called and follow the code flow.

share|improve this answer
+1 on firebug the most easy I think – RageZ Sep 17 '09 at 5:55
firebug is very good at providing links to functions as well if you're in the DOM view, or even just ctrl+f – annakata Sep 17 '09 at 6:08

What's unprofessional about grep?

grep -R "function CallMysteriousMethod" *

or similar.

Or maybe just use a modern IDE which will sort this all out for you.

share|improve this answer
don't forget it can be CallMysteriousMethod = function() { .... – Cem Kalyoncu Sep 17 '09 at 5:52
I think he meant professional = automated tool – alex Sep 17 '09 at 5:53
1  
Professionals use simple tools, pipes, and io redirection, dag-nab-it! – timdev Sep 17 '09 at 5:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.