Mark S. Miller (2013-08-22T16:24:15.000Z)
domenic at domenicdenicola.com (2013-08-29T19:16:28.311Z)
On Thu, Aug 22, 2013 at 9:13 AM, Tab Atkins Jr. <jackalmage at gmail.com>wrote: > There's an even easier method. Using "new" doesn't do anything > magical, it just sets `this` to be a fresh object with the right > proto. We can do that ourselves, and you can return whatever object > you want from the constructor, so you can avoid the > HiddenPromiseConstructor by just using an Object.create() call: > > var self = Object.create(Promise.prototype); > > Put that at the top of your constructor code, and return it at the > end, rather than `this`. Yes, this is equivalent to the HiddenPromiseConstructor approach. > Use whatever method you feel like for > determining that you were called as a constructor. > What test to use for this determination was the entire question! > Otherwise, yeah, your code is how to do it, until we get the ability > to specifically respond to being called vs being constructed. > Ok, I think we have our ES5 polyfill.