Comment #1 on issue 2081 by [email protected]: Expose function's (closure's) inner context in debugger.
http://code.google.com/p/v8/issues/detail?id=2081

Example.

The user sees an array of callbacks in debugger. He can inspect where each of the callbacks is defined and can see its text. However the text could be like this:
function() {
  handler.handle(param);
}
where both handler and param are variables from outer scopes.
Their value are precisely defined. However there is not way user could inspect them before the program actually calls the callback function.

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to