2012/9/19 David Bruant <[email protected]> > Once again, just to state how things are, all algorithms in the > harmony:proxies_spec page will have the largest part of their internal > revealed if either the target or the handler are themselves proxies. It may > necessitate a careful review of each algorithm before adding them to the > spec.
Absolutely. This reminds me that Jason spotted a couple of places where the current spec algorithms actually redundantly query the [[Target]]. For instance: at one point an algorithm may check whether a property exists on the target by calling [[HasOwnProperty]], and later it checks whether that property is non-configurable by calling [[GetOwnProperty]]. A single [[GetOwnProperty]] call would suffice to perform both checks. I intend to go over the algorithms and remove those redundancies shortly. Cheers, Tom
_______________________________________________ es-discuss mailing list [email protected] https://mail.mozilla.org/listinfo/es-discuss

