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

Unified Diff: runtime/bin/builtin.cc

Issue 10332257: Revert my last change. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 7 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 | « no previous file | runtime/bin/builtin.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/builtin.cc
===================================================================
--- runtime/bin/builtin.cc (revision 7756)
+++ runtime/bin/builtin.cc (working copy)
@@ -90,7 +90,8 @@
}
Dart_Handle library = Dart_LookupLibrary(url);
if (Dart_IsError(library)) {
- library = Dart_LoadLibrary(url, Source(id));
+ Dart_Handle import_map = Dart_NewList(0);
+ library = Dart_LoadLibrary(url, Source(id), import_map);
if (!Dart_IsError(library)) {
SetupLibrary(library, id);
}
« no previous file with comments | « no previous file | runtime/bin/builtin.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698