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

Unified Diff: runtime/bin/main.cc

Issue 1043513002: Enable strict flags for all service tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 9 months 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/main.cc
diff --git a/runtime/bin/main.cc b/runtime/bin/main.cc
index 693ab902d30f28f5c8107e305b8cc49606ecf3a3..2fd9a7bf50cb734632b09ebc0796c2023f4e3e60 100644
--- a/runtime/bin/main.cc
+++ b/runtime/bin/main.cc
@@ -611,6 +611,10 @@ static Dart_Isolate CreateIsolateAndSetupHelper(const char* script_uri,
return NULL;
}
Dart_ExitScope();
+ if (has_compile_all) {
+ result = Dart_CompileAll();
+ CHECK_RESULT(result);
+ }
Dart_ExitIsolate();
return isolate;
}
« no previous file with comments | « no previous file | runtime/observatory/test/allocations_test.dart » ('j') | runtime/observatory/test/allocations_test.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698