| Index: runtime/vm/isolate.cc
|
| diff --git a/runtime/vm/isolate.cc b/runtime/vm/isolate.cc
|
| index 2f05c7d959aa30066037c755ed1534e7c571b0b9..22809978efd8af806947bb305316f687aa279ae2 100644
|
| --- a/runtime/vm/isolate.cc
|
| +++ b/runtime/vm/isolate.cc
|
| @@ -1130,11 +1130,13 @@ bool Isolate::MakeRunnable() {
|
| // isolate on thread pool for execution.
|
| ASSERT(object_store()->root_library() != Library::null());
|
| set_is_runnable(true);
|
| +#ifndef PRODUCT
|
| if (FLAG_support_debugger && !ServiceIsolate::IsServiceIsolate(this)) {
|
| if (FLAG_pause_isolates_on_unhandled_exceptions) {
|
| debugger()->SetExceptionPauseInfo(kPauseOnUnhandledExceptions);
|
| }
|
| }
|
| +#endif // !PRODUCT
|
| IsolateSpawnState* state = spawn_state();
|
| if (state != NULL) {
|
| ASSERT(this == state->isolate());
|
|
|