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

Unified Diff: runtime/vm/bootstrap.cc

Issue 11365196: Move JSSyntaxRegExp to core as a private member. This removes the last refrences to dart:coreimpl. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix two pending TODO's. Created 8 years, 1 month 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
Index: runtime/vm/bootstrap.cc
diff --git a/runtime/vm/bootstrap.cc b/runtime/vm/bootstrap.cc
index f71cf5a3a37d36d8eb0677a0ccf2ca28c622d0f2..bab1d4b0d89ac05b910fd9ae75a85b67041916a8 100644
--- a/runtime/vm/bootstrap.cc
+++ b/runtime/vm/bootstrap.cc
@@ -34,14 +34,6 @@ RawScript* Bootstrap::LoadCoreScript(bool patch) {
}
-RawScript* Bootstrap::LoadCoreImplScript(bool patch) {
- // TODO(iposva): Use proper library name.
- const char* url = patch ? "dart:coreimpl-patch" : "bootstrap_impl";
- const char* source = patch ? corelib_impl_patch_ : corelib_impl_source_;
- return LoadScript(url, source, patch);
-}
-
-
RawScript* Bootstrap::LoadCollectionScript(bool patch) {
const char* url = patch ? "dart:collection-patch" : "dart:collection";
const char* source = patch ? collection_source_ : collection_source_;

Powered by Google App Engine
This is Rietveld 408576698