Pausing code execution in chrome from within JS. Possible?
Asked Answered
V

1

8

Can I pause execution from within JS code? I am working on a simple haxe-based debug util, and I want to be able to simulate breakpoints, by calling a util method which will trigger the execution pause.

Vedic answered 20/11, 2011 at 9:23 Comment(0)
R
17

Not sure if this is what you're looking for, but in Chrome (and Firefox if Firebug is installed) you can use the built-in JavaScript debugger statement. This causes the execution to pause, and is effectively like setting a breakpoint. For example, the following would break on every iteration of the loop allowing you to examine the value of i (stupidly simple example):

for(var i = 0; i < 10; i++) {
    debugger;
    console.log(i);
}
Runaway answered 20/11, 2011 at 9:27 Comment(2)
In Haxe, this can be done untyped __js__('debugger'); Hopefully for haxe 3 we can add a simple function, such as js.Lib.debugger();Azaria
Pretty cool. Now if there was a keyboard shortcut that could inject the debugger statement into the console, that would be amazing.Faucal

© 2022 - 2024 — McMap. All rights reserved.