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

Unified Diff: dart/runtime/vm/bootstrap.cc

Issue 14173005: Update dart:mirrors to use Symbol. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Also use _symbol_dev.Symbol.getName in dart2js Created 7 years, 8 months 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
« no previous file with comments | « dart/runtime/vm/bootstrap.h ('k') | dart/runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/runtime/vm/bootstrap.cc
diff --git a/dart/runtime/vm/bootstrap.cc b/dart/runtime/vm/bootstrap.cc
index 06527b7df7108cb2e619ea157dc4d75b5108e9a1..d52fc5e3109665ce3db34dae3138e6391f01ebfa 100644
--- a/dart/runtime/vm/bootstrap.cc
+++ b/dart/runtime/vm/bootstrap.cc
@@ -51,7 +51,7 @@ RawScript* Bootstrap::LoadCollectionScript(bool patch) {
RawScript* Bootstrap::LoadCollectionDevScript(bool patch) {
const char* url =
patch ? "dart:_collection-dev-patch" : "dart:_collection-dev";
- const char* source = patch ? collection_dev_source_ : collection_dev_source_;
+ const char* source = patch ? collection_dev_patch_ : collection_dev_source_;
return LoadScript(url, source, patch);
}
« no previous file with comments | « dart/runtime/vm/bootstrap.h ('k') | dart/runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698