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

Unified Diff: runtime/bin/dartutils.cc

Issue 1152833002: Add a runtime flag to control availability of dart:mirrors. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « no previous file | runtime/vm/bootstrap.cc » ('j') | runtime/vm/dart.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/dartutils.cc
diff --git a/runtime/bin/dartutils.cc b/runtime/bin/dartutils.cc
index c443fc91f6ed86d008b3a41397230ab16a79b657..afe5a7e22f890e748dadc40f72ac12934267995b 100644
--- a/runtime/bin/dartutils.cc
+++ b/runtime/bin/dartutils.cc
@@ -392,8 +392,8 @@ Dart_Handle DartUtils::LibraryTagHandler(Dart_LibraryTag tag,
if (DartUtils::IsDartIOLibURL(url_string)) {
return Builtin::LoadLibrary(url, Builtin::kIOLibrary);
}
- return NewError("The built-in library '%s' is not available"
- " on the stand-alone VM.\n", url_string);
+ return NewError("The built-in library '%s' is not available\n",
+ url_string);
} else {
ASSERT(tag == Dart_kSourceTag);
return NewError("Unable to load source '%s' ", url_string);
« no previous file with comments | « no previous file | runtime/vm/bootstrap.cc » ('j') | runtime/vm/dart.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698