OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <stdlib.h> | 5 #include <stdlib.h> |
6 | 6 |
7 #include "v8.h" | 7 #include "v8.h" |
8 | 8 |
9 #include "ast.h" | 9 #include "ast.h" |
10 #include "bootstrapper.h" | 10 #include "bootstrapper.h" |
(...skipping 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1024 bool report_exception = catchable_by_javascript && should_report_exception; | 1024 bool report_exception = catchable_by_javascript && should_report_exception; |
1025 bool try_catch_needs_message = | 1025 bool try_catch_needs_message = |
1026 can_be_caught_externally && try_catch_handler()->capture_message_ && | 1026 can_be_caught_externally && try_catch_handler()->capture_message_ && |
1027 !thread_local_top()->rethrowing_message_; | 1027 !thread_local_top()->rethrowing_message_; |
1028 bool bootstrapping = bootstrapper()->IsActive(); | 1028 bool bootstrapping = bootstrapper()->IsActive(); |
1029 | 1029 |
1030 thread_local_top()->rethrowing_message_ = false; | 1030 thread_local_top()->rethrowing_message_ = false; |
1031 | 1031 |
1032 // Notify debugger of exception. | 1032 // Notify debugger of exception. |
1033 if (catchable_by_javascript) { | 1033 if (catchable_by_javascript) { |
1034 debugger_->OnException(exception_handle, report_exception); | 1034 debugger_->OnException( |
| 1035 exception_handle, report_exception, factory()->undefined_value()); |
1035 } | 1036 } |
1036 | 1037 |
1037 // Generate the message if required. | 1038 // Generate the message if required. |
1038 if (report_exception || try_catch_needs_message) { | 1039 if (report_exception || try_catch_needs_message) { |
1039 MessageLocation potential_computed_location; | 1040 MessageLocation potential_computed_location; |
1040 if (location == NULL) { | 1041 if (location == NULL) { |
1041 // If no location was specified we use a computed one instead. | 1042 // If no location was specified we use a computed one instead. |
1042 ComputeLocation(&potential_computed_location); | 1043 ComputeLocation(&potential_computed_location); |
1043 location = &potential_computed_location; | 1044 location = &potential_computed_location; |
1044 } | 1045 } |
(...skipping 1201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2246 handle_scope_implementer()->IncrementCallDepth(); | 2247 handle_scope_implementer()->IncrementCallDepth(); |
2247 if (run_microtasks) Execution::RunMicrotasks(this); | 2248 if (run_microtasks) Execution::RunMicrotasks(this); |
2248 for (int i = 0; i < call_completed_callbacks_.length(); i++) { | 2249 for (int i = 0; i < call_completed_callbacks_.length(); i++) { |
2249 call_completed_callbacks_.at(i)(); | 2250 call_completed_callbacks_.at(i)(); |
2250 } | 2251 } |
2251 handle_scope_implementer()->DecrementCallDepth(); | 2252 handle_scope_implementer()->DecrementCallDepth(); |
2252 } | 2253 } |
2253 | 2254 |
2254 | 2255 |
2255 } } // namespace v8::internal | 2256 } } // namespace v8::internal |
OLD | NEW |