OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 702 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
713 if (caught_exception) { | 713 if (caught_exception) { |
714 Handle<Object> message = MessageHandler::MakeMessageObject( | 714 Handle<Object> message = MessageHandler::MakeMessageObject( |
715 "error_loading_debugger", NULL, Vector<Handle<Object> >::empty(), | 715 "error_loading_debugger", NULL, Vector<Handle<Object> >::empty(), |
716 Handle<String>()); | 716 Handle<String>()); |
717 MessageHandler::ReportMessage(NULL, message); | 717 MessageHandler::ReportMessage(NULL, message); |
718 return false; | 718 return false; |
719 } | 719 } |
720 | 720 |
721 // Mark this script as native and return successfully. | 721 // Mark this script as native and return successfully. |
722 Handle<Script> script(Script::cast(function->shared()->script())); | 722 Handle<Script> script(Script::cast(function->shared()->script())); |
| 723 script->set_type(Smi::FromInt(Script::TYPE_NATIVE)); |
723 return true; | 724 return true; |
724 } | 725 } |
725 | 726 |
726 | 727 |
727 bool Debug::Load() { | 728 bool Debug::Load() { |
728 // Return if debugger is already loaded. | 729 // Return if debugger is already loaded. |
729 if (IsLoaded()) return true; | 730 if (IsLoaded()) return true; |
730 | 731 |
731 // Bail out if we're already in the process of compiling the native | 732 // Bail out if we're already in the process of compiling the native |
732 // JavaScript source code for the debugger. | 733 // JavaScript source code for the debugger. |
(...skipping 2044 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2777 { | 2778 { |
2778 Locker locker; | 2779 Locker locker; |
2779 Debugger::CallMessageDispatchHandler(); | 2780 Debugger::CallMessageDispatchHandler(); |
2780 } | 2781 } |
2781 } | 2782 } |
2782 } | 2783 } |
2783 | 2784 |
2784 #endif // ENABLE_DEBUGGER_SUPPORT | 2785 #endif // ENABLE_DEBUGGER_SUPPORT |
2785 | 2786 |
2786 } } // namespace v8::internal | 2787 } } // namespace v8::internal |
OLD | NEW |