OLD | NEW |
1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
627 BAILOUT("TryCatchStatement"); | 627 BAILOUT("TryCatchStatement"); |
628 } | 628 } |
629 | 629 |
630 | 630 |
631 void CodeGenSelector::VisitTryFinallyStatement(TryFinallyStatement* stmt) { | 631 void CodeGenSelector::VisitTryFinallyStatement(TryFinallyStatement* stmt) { |
632 BAILOUT("TryFinallyStatement"); | 632 BAILOUT("TryFinallyStatement"); |
633 } | 633 } |
634 | 634 |
635 | 635 |
636 void CodeGenSelector::VisitDebuggerStatement(DebuggerStatement* stmt) { | 636 void CodeGenSelector::VisitDebuggerStatement(DebuggerStatement* stmt) { |
637 BAILOUT("DebuggerStatement"); | 637 // Debugger statement is supported. |
638 } | 638 } |
639 | 639 |
640 | 640 |
641 void CodeGenSelector::VisitFunctionLiteral(FunctionLiteral* expr) { | 641 void CodeGenSelector::VisitFunctionLiteral(FunctionLiteral* expr) { |
642 if (!expr->AllowsLazyCompilation()) { | 642 if (!expr->AllowsLazyCompilation()) { |
643 BAILOUT("FunctionLiteral does not allow lazy compilation"); | 643 BAILOUT("FunctionLiteral does not allow lazy compilation"); |
644 } | 644 } |
645 } | 645 } |
646 | 646 |
647 | 647 |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
977 | 977 |
978 void CodeGenSelector::VisitThisFunction(ThisFunction* expr) { | 978 void CodeGenSelector::VisitThisFunction(ThisFunction* expr) { |
979 BAILOUT("ThisFunction"); | 979 BAILOUT("ThisFunction"); |
980 } | 980 } |
981 | 981 |
982 #undef BAILOUT | 982 #undef BAILOUT |
983 #undef CHECK_BAILOUT | 983 #undef CHECK_BAILOUT |
984 | 984 |
985 | 985 |
986 } } // namespace v8::internal | 986 } } // namespace v8::internal |
OLD | NEW |