Comment #7 on issue 222 by [email protected]: Arguments object is copied on each access using Function.arguments.
http://code.google.com/p/v8/issues/detail?id=222

This issue is not fixed, and it is the same underlying issue as issue 701.

function f() { return f.arguments === f.arguments); f() // ==> false

Note that the example in issue 701 is subtly different. This is a related case but simpler:

function f() { arguments; return f.arguments === f.arguments}; f() // ==> true

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

Reply via email to