| Index: runtime/vm/bootstrap.cc
|
| diff --git a/runtime/vm/bootstrap.cc b/runtime/vm/bootstrap.cc
|
| index f7a8f8aafe43da7d5bc058931a7f1d67be362e2b..06527b7df7108cb2e619ea157dc4d75b5108e9a1 100644
|
| --- a/runtime/vm/bootstrap.cc
|
| +++ b/runtime/vm/bootstrap.cc
|
| @@ -43,7 +43,7 @@ RawScript* Bootstrap::LoadCoreScript(bool patch) {
|
|
|
| RawScript* Bootstrap::LoadCollectionScript(bool patch) {
|
| const char* url = patch ? "dart:collection-patch" : "dart:collection";
|
| - const char* source = patch ? collection_source_ : collection_source_;
|
| + const char* source = patch ? collection_patch_ : collection_source_;
|
| return LoadScript(url, source, patch);
|
| }
|
|
|
|
|