Bug 818023 - fun_getProperty: Use non-buitin script iterator. r=waldo

This commit is contained in:
Nicolas B. Pierron 2013-01-10 11:19:21 -08:00
parent f77ce07867
commit e608fa0ad2
2 changed files with 54 additions and 1 deletions

View File

@ -0,0 +1,53 @@
Function.prototype.callX = Function.prototype.call;
var x;
function f() {
x = f.caller;
return x;
}
function g() {
return f.callX(null);
}
function h1() {
// native
return ([0].map(f))[0];
}
function h2() {
// self-hosted
x = null;
[0].forEach(f);
return x;
}
function k() {
x = null;
[0, 1].sort(f);
return x;
}
function l() {
return f();
}
assertEq(g(), g);
assertEq(h1(), h1);
assertEq(h2(), h2);
assertEq(k(), k);
assertEq(l(), l);
var baz;
var foo = {callX: function() { return "m"; }};
function bar() {
return baz.caller;
}
function m() {
return baz.callX(null);
}
baz = foo;
assertEq(m(), "m");
baz = bar;
assertEq(m(), m);
assertEq(m(), m);

View File

@ -106,7 +106,7 @@ fun_getProperty(JSContext *cx, HandleObject obj_, HandleId id, MutableHandleValu
vp.setNull();
/* Find fun's top-most activation record. */
StackIter iter(cx);
NonBuiltinScriptFrameIter iter(cx);
for (; !iter.done(); ++iter) {
if (!iter.isFunctionFrame() || iter.isEvalFrame())
continue;