blob: 1052ada52a48626f26779e9e55c0c0129f0f03c4 [file] [log] [blame]
this.name = "outer";
var sb = evalcx('');
sb.name = "inner";
sb.parent = this;
function f() {
assertEq(this.name, "outer");
}
evalcx('with(this) { ff = parent.f; }; (function() { eval(""); for(var i=0; i<10; i++) { ff() } })()', sb);