Status: New
Owner: ----

New issue 2103 by [email protected]: ReferenceError: arguments is not defined
http://code.google.com/p/v8/issues/detail?id=2103

I have this script called test.js:
for(var xx=0; xx < arguments.length; xx++) print(arguments[xx]);

If I run "d8 test.js -- aa bb cc", d8 should print "aa bb cc", right?

But I got this error:
test.js:1: ReferenceError: arguments is not defined
for(var xx=0; xx < arguments.length; xx++) print(arguments[xx]);
                   ^
ReferenceError: arguments is not defined
    at test.js:1:20

BTW this is the latest d8 from svn (rev 11458). I test this on Win 7 64.

Attachments:
        test.js  68 bytes

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

Reply via email to