Comment #4 on issue 457 by erik.corry: Tail call elimination (feature request) http://code.google.com/p/v8/issues/detail?id=457
It is true that you can't see invocations other than the top one (except using the debugger or the .stack property on exceptions). However, this doesn't help us for general tail call elimination. I don't think tail call elimination is worth doing if it restricted to recursive calls to the function itself. These cases can be easily rewritten to use iteration instead. -- 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
