Tab Atkins Jr. (2013-08-22T16:13:49.000Z)
domenic at domenicdenicola.com (2013-08-29T19:26:14.270Z)
On Thu, Aug 22, 2013 at 8:04 AM, Mark S. Miller <erights at google.com> wrote: > In other words, the Promise constructor might get supplied as its "this" an > object that passes "p instanceof Promise" for innocent reasons other that > "new" or .call. The question is, what does the Promise constructor test in > order to determine whether it should use its coercion behavior or > constructor behavior. If the test were "p instanceof Promise", then the > above call, which was clearly intending to invoke its coercion behavior, > would accidentally invoke its constructor behavior instead. Okay, that's still defending a user from themselves, but whatever, I'm fine with that. > In any case, postponing subclassing till ES6 when we have the needed > support, I think I know how to "solve" the problem. It is a bit weird. 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`. Use whatever method you feel like for determining that you were called as a constructor. Otherwise, yeah, your code is how to do it, until we get the ability to specifically respond to being called vs being constructed.