michael@0: // |jit-test| debug michael@0: setDebug(true); michael@0: michael@0: this.__defineGetter__("someProperty", function () { evalInFrame(1, "var x = 'success'"); }); michael@0: function caller(obj) { michael@0: var x = 'ignominy'; michael@0: obj.someProperty; michael@0: return x; michael@0: } michael@0: assertEq(caller(this), "success");