What is step into, step out and step over in Firebug? [duplicate]
问题 This question already has an answer here: How to use Firebug's debugger functions? 1 answer I am new to FireBug Debugger can anyone say what is step into,step over and step out 回答1: Step into will cause the debugger to descend into any method calls on the current line. If there are multiple method calls, they'll be visited in order of execution; if there are no method calls, this is same as step over. This is broadly equivalent to following every individual line of execution as would be seen