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

Unified Diff: runtime/bin/dartutils.cc

Issue 267353005: - Change when the library being loaded is registered. Now (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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
Index: runtime/bin/dartutils.cc
===================================================================
--- runtime/bin/dartutils.cc (revision 35776)
+++ runtime/bin/dartutils.cc (working copy)
@@ -508,7 +508,7 @@
if (tag == Dart_kImportTag) {
// Handle imports of other built-in libraries present in the SDK.
if (DartUtils::IsDartIOLibURL(url_string)) {
- return Builtin::LoadAndCheckLibrary(Builtin::kIOLibrary);
+ return Builtin::LoadLibrary(url, Builtin::kIOLibrary);
}
return NewError("The built-in library '%s' is not available"
" on the stand-alone VM.\n", url_string);

Powered by Google App Engine
This is Rietveld 408576698