以编程方式停止Firebug中的JavaScript执行

我目前正在用Firebugdebugging复杂的JavaScript代码。 我正在寻找一种方法来停止JavaScript的执行,就像它是一个断点编程。

例:

instructions ... degugger.breakpoint(); // the execution stops here as if a breakpoint was // manually set other instructions ... 

您可以使用debugger语句:

 // your JS code ... // break here debugger; 

它适用于所有主stream浏览器。