| Index: src/isolate.cc
|
| diff --git a/src/isolate.cc b/src/isolate.cc
|
| index 9a5bc5ad43b16e9bc7fabb2fe07cf06bee7b858c..4cdcef338456c601e88fd9ff802cfd33c5fe9b9f 100644
|
| --- a/src/isolate.cc
|
| +++ b/src/isolate.cc
|
| @@ -1055,7 +1055,8 @@ void Isolate::DoThrow(Object* exception, MessageLocation* location) {
|
| #ifdef ENABLE_DEBUGGER_SUPPORT
|
| // Notify debugger of exception.
|
| if (catchable_by_javascript) {
|
| - debugger_->OnException(exception_handle, report_exception);
|
| + debugger_->OnException(
|
| + exception_handle, report_exception, factory()->undefined_value());
|
| }
|
| #endif
|
|
|
|
|