On 13 March 2013 14:56, Michael Schwartz <[email protected]> wrote: > Can Harmony Proxies be used to detect when the prototypes or builtins are > being overridden? > > If so, you could save the original and provide a new API to fetch the > original.
I don't see how proxies help here. Saving the originals certainly doesn't require proxies (nor private symbols). Once ES6 actually becomes an option, however, module loaders could be used to sandbox extensions into their own set of globals. Short of that, immutability always is your best friend. Would it be possible to freeze the globals that extensions are given access to? /Andreas -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
