Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2944)

Unified Diff: runtime/vm/unit_test.cc

Issue 2512483002: Support reloading from source on top of a script snapshot. (Closed)
Patch Set: ... Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/service.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/unit_test.cc
diff --git a/runtime/vm/unit_test.cc b/runtime/vm/unit_test.cc
index 1c138e7495ccf10564a107b80959b0d2f927ce9e..c036981f40df69af708bdcc060313e7348cab9a3 100644
--- a/runtime/vm/unit_test.cc
+++ b/runtime/vm/unit_test.cc
@@ -288,8 +288,9 @@ Dart_Handle TestCase::TriggerReload() {
TransitionNativeToVM transition(Thread::Current());
success = isolate->ReloadSources(&js,
false, // force_reload
+ NULL, NULL,
true); // dont_delete_reload_context
- fprintf(stderr, "RELOAD REPORT:\n%s\n", js.ToCString());
+ OS::PrintErr("RELOAD REPORT:\n%s\n", js.ToCString());
}
if (success) {
« no previous file with comments | « runtime/vm/service.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698