Mark S. Miller (2013-07-31T05:39:23.000Z)
domenic at domenicdenicola.com (2013-08-02T20:39:42.112Z)
On Tue, Jul 30, 2013 at 9:19 PM, Brendan Eich <brendan at mozilla.com> wrote: > Lots of ways, e.g., `this` in bound methods, Only useful for instance-private instance variables, in which case you may as well use lexically captured per-instance state. > `this` after suitable instanceof tests with no mutable [[Prototype]] > (e.g., A and B are sealed, manually in ES6 alas, but still doable). Doesn't resist theft by proxy, since one can easily construct a proxy that passes that instanceof test.