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

for the following
<code>
function f(x, y) {
  x = 10;
  console.log(
    arguments[0],
    arguments[1]
  );
}

f();
</code>

results in
10, undefined

Changing the named argument’s value should not automatically change the corresponding value in arguments.

should of resulted in
undefined, undefined

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

Reply via email to