Tom Van Cutsem (2015-04-22T06:39:22.000Z)
d at domenic.me (2015-05-01T13:06:11.355Z)
2015-04-21 22:15 GMT+02:00 Allen Wirfs-Brock <allen at wirfs-brock.com>: > That would result in an infinite [[Set]] recursion. For example: Assuming `x` here is the object where "prop" is bound to an accessor, can you clarify how this would lead to an infinite recursion? ```js y.prop = 42; // 9.1.9 step 2 binds ownDesc to y's accessor, and calls it in step 9 super.prop = v; // 9.1.9 step 2 binds ownDesc to x's accessor, and calls it in step 9 ``` x's setter then runs `v = n;` and the assignment terminates I must be missing something?