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

Unified Diff: bin/builtin.cc

Issue 9359009: Implement support for specifying string interopolation style variable substitution in the import ... (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: '' Created 8 years, 10 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 | bin/dartutils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/builtin.cc
===================================================================
--- bin/builtin.cc (revision 4054)
+++ bin/builtin.cc (working copy)
@@ -55,7 +55,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 | bin/dartutils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698