Comment #1 on issue 265 by [email protected]: Assertion failure: CHECK(0 <= i && i < length_) failed http://code.google.com/p/v8/issues/detail?id=265
This is a problem in returning out of deeply nested try/finally statements. There is a stack height mismatch due to the extra state kept on the stack by try/finally. The problem manifests if there are two returns nested at different levels exiting through the same finally block. An analogous problem occurs with break and presumably continue from try/finally. A failing test case has been committed a failing test case with revision 1460. -- 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 -~----------~----~----~----~------~----~------~--~---
