Comment #2 on issue 1640 by [email protected]: Debugger does not break on
exceptions
http://code.google.com/p/v8/issues/detail?id=1640
The issue can also be reproduced with the d8 shell:
V8 version 3.6.4 (candidate) [console: dumb]
JavaScript debugger enabled
d8> function a() { throw 42; }
d8> debugger;
break in [anonymous](), (d8) line 1 column 1
debugger;
^
dbg> en exc all
Break on all exceptions: enabled
dbg> c
(running)
d8> a()
Uncaught: "42", (d8) line 1 column 16
function a() { throw 42; }
^
dbg> c
(running)
(d8):15: Uncaught 42
d8> debugger;
break in [anonymous](), (d8) line 1 column 1
debugger;
^
dbg> p a()
42
dbg>
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev