Revision: 3241 Author: [email protected] Date: Mon Nov 9 01:43:24 2009 Log: Add function literals that always require non-lazy compilation to the top-level compiler.
Review URL: http://codereview.chromium.org/371064 http://code.google.com/p/v8/source/detail?r=3241 Modified: /branches/bleeding_edge/src/compiler.cc ======================================= --- /branches/bleeding_edge/src/compiler.cc Thu Nov 5 09:33:50 2009 +++ /branches/bleeding_edge/src/compiler.cc Mon Nov 9 01:43:24 2009 @@ -757,9 +757,7 @@ void CodeGenSelector::VisitFunctionLiteral(FunctionLiteral* expr) { - if (!expr->AllowsLazyCompilation()) { - BAILOUT("FunctionLiteral does not allow lazy compilation"); - } + // FunctionLiteral is supported. } --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
