>
> ```
> var parent = {};
> var v = 1;
> var x = Object.create(parent, {
>   prop: { get: function() { return v; }, set: function(n) { v = n; },
> configurable: true }
> });
>

> Reflect.set(parent, "prop", 2, x); // under Allen's proposed changes, this
> will return false while I think it should just call the setter?
>

Another interpretation might be that since you've explicitly stated an
intention to bypass the receiver's setter, falling back to that setter
would be a bug.

Maybe?
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to