Luke Hoban (2013-07-17T01:55:56.000Z)
domenic at domenicdenicola.com (2013-07-23T02:38:17.185Z)
> What is the relevant part of the new spec? In B.2.2.1, step #2 throws a `TypeError` instead of doing a ToObject. ``` get Object.prototype.__proto__ The value of the [[Get]] attribute is a built-in function that requires no arguments. It performs the following steps: 1. Let O be the this value. 2. If Type(O) is not Object, then throw a TypeError exception. 3. Return the result of calling the [[GetInheritance]] internal method of O. ```
domenic at domenicdenicola.com (2013-07-23T02:37:25.504Z)
> What is the relevant part of the new spec? In B.2.2.1, step #2 throws a `TypeError` instead of doing a `ToObject`. ``` get Object.prototype.__proto__ The value of the [[Get]] attribute is a built-in function that requires no arguments. It performs the following steps: 1. Let O be the this value. 2. If Type(O) is not Object, then throw a TypeError exception. 3. Return the result of calling the [[GetInheritance]] internal method of O. ```