> Before commenting on the general question, I'm confused about
> something in your code. How did a proxy get bound to "this" in your
> example?
>

This is what I was thinking:

    var blackHole = new Purse();

    var blackHole = new Proxy(blackHolePurse, {

        get: function(obj, name) {

            if (name === "somethingInocuous") throw new Error("Up in
smoke!");
            return obj[name];
        }
    });

    blackHole.deposit(1000, myPurse);

It's a pretty silly "attack", obviously : )  Apparently I'm not very good
at being evil.

{ Kevin }
_______________________________________________
es-discuss mailing list
es-discuss@mozilla.org
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to