Comment #1 on issue 172 by erik.corry: There is a limit to the size of the  
argument array passed to function.apply
http://code.google.com/p/v8/issues/detail?id=172

The limit is there because the arguments array is unpacked and put onto the  
stack.
There is limited space on the stack.  This is very efficient when the  
number of
arguments is small and the receiving function is going to treat them as  
normal
arguments and not an array.

For the case of a receiver that is going to use the arguments in the form  
of the
arguments array it is not sensible and could do with being fixed.

-- 
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

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

Reply via email to