| Index: runtime/bin/main.cc
|
| diff --git a/runtime/bin/main.cc b/runtime/bin/main.cc
|
| index df010169452e9282d51ca221ef79c3a8d50d56f3..3c4a8c8c46b81e7f88f5220de1b0f586763987ea 100644
|
| --- a/runtime/bin/main.cc
|
| +++ b/runtime/bin/main.cc
|
| @@ -322,7 +322,7 @@ static Dart_Handle SetupRuntimeOptions(CommandLineOptions* options,
|
| return result;
|
| }
|
| }
|
| - Dart_Handle core_lib_url = Dart_NewString("dart:coreimpl");
|
| + Dart_Handle core_lib_url = Dart_NewString("dart:core");
|
| if (Dart_IsError(core_lib_url)) {
|
| return core_lib_url;
|
| }
|
| @@ -330,7 +330,7 @@ static Dart_Handle SetupRuntimeOptions(CommandLineOptions* options,
|
| if (Dart_IsError(core_lib)) {
|
| return core_lib;
|
| }
|
| - Dart_Handle runtime_options_class_name = Dart_NewString("RuntimeOptions");
|
| + Dart_Handle runtime_options_class_name = Dart_NewString("_OptionsImpl");
|
| if (Dart_IsError(runtime_options_class_name)) {
|
| return runtime_options_class_name;
|
| }
|
|
|