Comment #58 on issue 3093 by [email protected]: Debugging promises
http://code.google.com/p/v8/issues/detail?id=3093

Ignore default reject handler when looking for reject handlers.

I don't know exactly what implementation strategy you guys are pursuing, so I could be wrong, but I don't think this is what is wanted by either the telemetry solution or the devtools solution. Default reject handlers should count toward being handled. That is, in

var p = Promise.reject(new Error("foo"));
var q = p.then(function () { });

Only (q, [Error: foo]) should be in the unhandled-rejections list; (p, [Error: foo]) should not be in the list.

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to