Re: Exceptions in event listeners triggered by dispatchEvent().

On 6/4/13 11:19 AM, Domenic Denicola wrote:
>> Using the event loop system just to change the way an exception is handled doesn't make any sense to me.
>
> Really? To JavaScript programmers, it's the only thing that makes sense. There is no way in native JavaScript semantics to do the magic thing the web platform currently does, wherein (a) code is executed synchronously, but (b) exceptions thrown from that code bypass any surrounding `try`/`catch` blocks, and instead reach `window.onerror`.

Uh... Sure there is.  It's as simple as a function that catches the 
exception and then calls window.onerror, no?

-Boris

Received on Tuesday, 4 June 2013 17:48:06 UTC