| Index: runtime/bin/dartutils.cc
|
| diff --git a/runtime/bin/dartutils.cc b/runtime/bin/dartutils.cc
|
| index eabd4f37a581cdb020a182a0aa3757499470ce99..9d3370692e624e7c6c308e25fa7510a4be8ccc11 100644
|
| --- a/runtime/bin/dartutils.cc
|
| +++ b/runtime/bin/dartutils.cc
|
| @@ -485,7 +485,8 @@ Dart_Handle DartUtils::LibraryTagHandler(Dart_LibraryTag tag,
|
| if (DartUtils::IsDartIOLibURL(url_string)) {
|
| return Builtin::LoadAndCheckLibrary(Builtin::kIOLibrary);
|
| }
|
| - return Dart_Error("Do not know how to load '%s'", url_string);
|
| + return Dart_Error("The built-in library '%s' is not available"
|
| + " on the stand-alone VM.\n", url_string);
|
| } else {
|
| ASSERT(tag == Dart_kSourceTag);
|
| return Dart_Error("Unable to load source '%s' ", url_string);
|
|
|