Status: Accepted
Owner: [email protected]
CC: [email protected]
Labels: Type-Bug Priority-Medium
New issue 1523 by [email protected]: Debugger doesn't stop on if
statement
http://code.google.com/p/v8/issues/detail?id=1523
In the following example:
function test(x)
{
if (x && (bar === this.baz)) // <- set breakpoint on this line.
return 0;
return 1;
}
breakpoint would be set on "this.baz" member expression, and debugger would
never stop on that line as long as x evaluates to false.
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev