Updates:
Status: Fixed
Comment #6 on issue 1080 by [email protected]: Breakpoint is set in
wrong position
http://code.google.com/p/v8/issues/detail?id=1080
Maybe this issue was valid when it was posted, but is not anymore. The test
case in #0 still seems to fail because:
- code with debug slots is only generated if debugger is "active"
- the debugger is "active" if there is a debug break listener (there is
none) or if the debugger is forced to be active (only done when we
recompile activated functions)
- in actual use cases the there is always at least one listener, so that
the code ist recompiled with debug slots, so that the break point is set
correctly
So the "bug" can only be observed if a break point is set without having
defined a listener and when trying to show where the break point has been
set. This is not relevant for actual use cases. The test can be made to
pass if any listener is added using Debug.setListener.
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev