| Index: runtime/vm/dart_api_impl.cc
|
| ===================================================================
|
| --- runtime/vm/dart_api_impl.cc (revision 8117)
|
| +++ runtime/vm/dart_api_impl.cc (working copy)
|
| @@ -3114,6 +3114,7 @@
|
| CURRENT_FUNC, library_url.ToCString());
|
| }
|
| library = Library::New(url_str);
|
| + library.set_debuggable(true);
|
| library.Register();
|
| isolate->object_store()->set_root_library(library);
|
| Dart_Handle result;
|
| @@ -3154,6 +3155,7 @@
|
| CURRENT_FUNC);
|
| }
|
| library ^= tmp.raw();
|
| + library.set_debuggable(true);
|
| isolate->object_store()->set_root_library(library);
|
| return Api::NewHandle(isolate, library.raw());
|
| }
|
|
|