David Bruant (2013-11-13T16:20:47.000Z)
domenic at domenicdenicola.com (2013-11-17T18:10:51.662Z)
Le 13/11/2013 08:11, Boris Zbarsky a écrit : > Defining "unhandled promise error" is not trivial, actually, unless > you just mean "rejected promise that no one ever sets any reject > callbacks on". That would be my definition. "no one ever sets any reject callback on" is itself undecidable (the "ever" part), but I feel it works well enough in practice. Cases where it doesn't, people have memory leaks. Domain#intercept which looks at the Node error convention (error in async callback first argument) certainly suffer from the same issue, but looks practical enough. I lack the experience with Node domains. If some have it, it'd be interesting to share it.