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

Unified Diff: runtime/bin/vmservice_impl.cc

Issue 112223002: WebSocket client for VM service (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years 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
Index: runtime/bin/vmservice_impl.cc
diff --git a/runtime/bin/vmservice_impl.cc b/runtime/bin/vmservice_impl.cc
index 74fb83688dffbc21d4dabbb180319c86ad5567b7..61bd48f43f07775b9839e9b96a9ffafe391a4567 100644
--- a/runtime/bin/vmservice_impl.cc
+++ b/runtime/bin/vmservice_impl.cc
@@ -126,6 +126,9 @@ bool VmService::_Start(intptr_t server_port) {
SHUTDOWN_ON_ERROR(library);
}
+ result = Dart_CompileAll();
+ SHUTDOWN_ON_ERROR(result);
+
// Make the isolate runnable so that it is ready to handle messages.
Dart_ExitScope();
Dart_ExitIsolate();

Powered by Google App Engine
This is Rietveld 408576698