Comment #5 on issue 375 by [email protected]: Optimize handling of catch
variables.
http://code.google.com/p/v8/issues/detail?id=375
Oops. Yes, thanks to Brendan for the correction. I was thinking about the
code
example in a nested scope as follows, but I hadn't tested that way. Tested
nested, it
works fine. Sorry for the misunderstanding.
(function(){
function foo(){this.x = 11;}
var x = 'bar';
try { throw foo; } catch(e) { e(); print(x); }
})();
// prints bar
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev