Comment #2 on issue 701 by michaeljohnthethird: arguments.callee.caller.arguments different on every access
http://code.google.com/p/v8/issues/detail?id=701

I'm not sure this is a duplicate of 222. 222 states that the problem occurs when
accessing arguments like

function a(){
    console.log(arguments===arguments);
    console.log(a.arguments===a.arguments);
}
(function(){ a(); })();

which seems to work correctly. This specific issue only occurs when arguments is
referenced through arguments.callee.caller.

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to