Chromium Code Reviews| Index: runtime/vm/dart_api_impl.cc |
| diff --git a/runtime/vm/dart_api_impl.cc b/runtime/vm/dart_api_impl.cc |
| index c4410a529d83ac4b73f3dec1f90f943c41e0abd8..fddab02a30ec1c786c4c97fcf0a974897655f9bf 100644 |
| --- a/runtime/vm/dart_api_impl.cc |
| +++ b/runtime/vm/dart_api_impl.cc |
| @@ -827,6 +827,7 @@ DART_EXPORT void* Dart_CurrentIsolateData() { |
| DART_EXPORT Dart_Handle Dart_DebugName() { |
| Isolate* isolate = Isolate::Current(); |
| CHECK_ISOLATE(isolate); |
| + DARTSCOPE(isolate); |
|
Ivan Posva
2013/08/07 23:33:38
DARTSCOPE does include CHECK_ISOLATE, so you can d
Cutch
2013/08/08 14:26:39
Done.
|
| return Api::NewHandle(isolate, String::New(isolate->name())); |
| } |