Tab Atkins Jr. (2013-08-22T01:04:10.000Z)
domenic at domenicdenicola.com (2013-08-29T19:24:46.919Z)
On Wed, Aug 21, 2013 at 6:00 PM, Brendan Eich <brendan at mozilla.com> wrote: > Can someone summarize for those of us who accidentally skipped a bunch of > unread messages here? It sounds good from the last post ;-). Yup! 1. Keep Promise.resolve() as it currently works (but make sure that it merely adopts promises passed to it, rather than deep-flattens). 2. Rename Promise.accept() to Promise.of() (for consistency with Array.of, and to provide a better naming base for monads in the future). 3. Kill PromiseResolver#accept(). 4. Make Promise() called without new analogous to String/etc - passing it a promise returns the argument unchanged, passing it anything else wraps it in a fresh promise. ~TJ