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

Unified Diff: runtime/vm/bootstrap_natives.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_natives.cc
diff --git a/runtime/vm/bootstrap_natives.cc b/runtime/vm/bootstrap_natives.cc
index 319a0cc714c52307abc2c463536f112f4242a3ee..47a8c3a4a9350dfcc3417d3c23982a15f8ca86b0 100644
--- a/runtime/vm/bootstrap_natives.cc
+++ b/runtime/vm/bootstrap_natives.cc
@@ -60,10 +60,6 @@ void Bootstrap::SetupNativeResolver() {
ASSERT(!library.IsNull());
library.set_native_entry_resolver(resolver);
- library = Library::CoreImplLibrary();
- ASSERT(!library.IsNull());
- library.set_native_entry_resolver(resolver);
-
library = Library::CollectionLibrary();
Ivan Posva 2012/11/13 18:26:28 Does the collection library have any native code?
Anders Johnsen 2012/11/13 18:40:26 This is actually not the change, it's a bad merge.
ASSERT(!library.IsNull());
library.set_native_entry_resolver(resolver);

Powered by Google App Engine
This is Rietveld 408576698