現在、Firebugを使用して複雑なJavaScriptコードをデバッグしています。プログラムでブレークポイントであるかのようにJavaScriptの実行を停止する方法を探しています。
例:
instructions ... degugger.breakpoint(); // the execution stops here as if a breakpoint was // manually set other instructions ...
debugger ステートメントを使用できます。
debugger
// your JS code ... // break here debugger;
すべての主要なブラウザーで動作します。