Allen Wirfs-Brock (2013-05-08T15:41:02.000Z)
On May 8, 2013, at 8:31 AM, Mark Miller wrote:

> What about your triangle argument?

There is another way:

let obj = Object.setPrototypeOf({x:0, y:0}, pointProto};

Let's keep {__proto__: foo} in the slightly  disrespectable  Annex B box.  That keeps it together with O.p.__proto and leaves room for future, more elegant object literal syntax extensions if we decided we really need them (and we probably won't).

Allen
github at esdiscuss.org (2013-07-12T02:27:20.680Z)
On May 8, 2013, at 8:31 AM, Mark Miller wrote:

> What about your triangle argument?

There is another way:

```js
let obj = Object.setPrototypeOf({x:0, y:0}, pointProto};
```

Let's keep `{__proto__: foo}` in the slightly  disrespectable  Annex B box.  That keeps it together with `O.p.__proto__` and leaves room for future, more elegant object literal syntax extensions if we decided we really need them (and we probably won't).