Mark S. Miller (2013-08-22T16:29:05.000Z)
domenic at domenicdenicola.com (2013-08-29T19:13:57.947Z)
On Thu, Aug 22, 2013 at 9:22 AM, Brandon Benvie <bbenvie at mozilla.com> wrote: > I'd make one small change to this: > > > ```js > if (Object.getPrototypeOf(this) === Promise.prototype && !(brand.has(this))) { > ``` > > to > > ```js > if (this instanceof Promise && !(brand.has(this))) { > ``` > > or an alternative that I think is functionally identical, if you want to > avoid instanceof: > > ```js > if (Promise.prototype.isPrototypeOf(this) && !(brand.has(this))) { > ``` > > This change would allow subclassing of Promise. This change would mislead my example Object.create(p, {Promise: {value: Promise}}).Promise(....) into calling Promise's construct behavior instead of its coerce behavior.