Chromium Code Reviews| Index: runtime/vm/unit_test.cc |
| diff --git a/runtime/vm/unit_test.cc b/runtime/vm/unit_test.cc |
| index 9c89d9c7d8bde2be03b5d08a71fa437a2bbb370c..728c8f93350d48cc9b1106b4f31880d0a475224b 100644 |
| --- a/runtime/vm/unit_test.cc |
| +++ b/runtime/vm/unit_test.cc |
| @@ -280,10 +280,12 @@ void TestCase::SetReloadTestScript(const char* script) { |
| Dart_Handle TestCase::TriggerReload() { |
| Isolate* isolate = Isolate::Current(); |
| + JSONStream js; |
| { |
| TransitionNativeToVM transition(Thread::Current()); |
| - isolate->ReloadSources(false, // force_reload |
| + isolate->ReloadSources(&js, |
| + false, // force_reload |
| true); // dont_delete_reload_context |
| } |
|
turnidge
2016/08/01 17:24:25
Perhaps we should dump the json stream here in som
|