Comment #2 on issue 1826 by [email protected]: Combination of return and with statements breaks debugger scope enumeration
http://code.google.com/p/v8/issues/detail?id=1826

doing anything with eval breaks stuff:

function fourth() {
  debugger;
  eval("1");
}

also in strict mode

function fifth() {
  'use strict';
  debugger;
  eval("1");
}


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

Reply via email to