On 2012/02/06 16:43:14, Yang wrote:
Not sure whether this makes sense, as this is not really part of the spec.
Basically this changes chaining Errors when rethrown from this
try {
error;
} catch (e) {
throw new Error(e.stack);
}
to
try {
error;
} catch (e) {
throw new Error(e);
}
Also see the thread here:
http://code.google.com/p/chromium/issues/detail?id=60240
Also note that this CL depends on http://codereview.chromium.org/9310122/
http://codereview.chromium.org/9333001/
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev