| Index: runtime/vm/bootstrap.cc
|
| diff --git a/runtime/vm/bootstrap.cc b/runtime/vm/bootstrap.cc
|
| index 1e1ddd72c88e4adf26a283c19009e1c608dcbe46..868e8ea75a01dff011def2abe01f24b0ac7f219f 100644
|
| --- a/runtime/vm/bootstrap.cc
|
| +++ b/runtime/vm/bootstrap.cc
|
| @@ -42,6 +42,13 @@ RawScript* Bootstrap::LoadCoreImplScript(bool patch) {
|
| }
|
|
|
|
|
| +RawScript* Bootstrap::LoadCollectionsScript(bool patch) {
|
| + const char* url = patch ? "dart:collections-patch" : "dart:collections";
|
| + const char* source = patch ? collections_source_ : collections_source_;
|
| + return LoadScript(url, source, patch);
|
| +}
|
| +
|
| +
|
| RawScript* Bootstrap::LoadMathScript(bool patch) {
|
| const char* url = patch ? "dart:math-patch" : "dart:math";
|
| const char* source = patch ? math_patch_ : math_source_;
|
|
|