Updates:
Labels: -Priority-Medium Priority-High
Comment #54 on issue 3093 by [email protected]: Debugging promises
http://code.google.com/p/v8/issues/detail?id=3093
@yangguo,
DevTools no longer prints exception messages upon promise exceptions. This
seems to be a regression after your recent changes.
Repro:
var resolve, reject;
var p = new Promise(function(_resolve, _reject) { resolve = _resolve;
reject = _reject; });
p.then(function() {
console.log("p.then 1");
throw new Error("123");
});
setTimeout(resolve, 0);
--
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.