CC-Archived / promise-as3

Promises/A+ compliant implementation in ActionScript 3.0
168 stars 55 forks source link

Dangerous try/catch blocks in fireCallbacks #10

Closed pmowrer closed 11 years ago

pmowrer commented 12 years ago

The try/catch blocks in Callbacks.as's fireCallbacks method seem unnecessary and are somewhat dangerous since they wrap execution of the callback. Any error in the call stack that results from the callback will be much harder to track down as a result. I think they should just be removed.

johnyanarella commented 11 years ago

This issue refers to the now-abandoned jQuery 1.4-style implementation.

promise-as3 has been rewritten to implement the Promises/A+ specification.