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

Unified Diff: runtime/bin/io.dart

Issue 11337019: Use patching for dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments Created 8 years, 2 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/io.dart
diff --git a/runtime/bin/io.dart b/runtime/bin/io.dart
index 36d02bb268ec580cf70e5145b5e8e9153f484d9f..f260f68d80e211f454297eb0a9238633c375f7b0 100644
--- a/runtime/bin/io.dart
+++ b/runtime/bin/io.dart
@@ -2,11 +2,11 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-// The dart:io library is the concatenation of all the files in
-// io_sources.gypi. This file needs to be the first file in that
-// concatenation.
+// We should be able to get rid of this file. This is used to set up
+// the dart:io library for the VM because it cannot use the actual library
+// file which is in lib/io/io.dart.
-#library("io");
+#library("dart:io");
Anders Johnsen 2012/10/30 10:43:06 Afaik, this is not how we do this. It should just
Mads Ager (google) 2012/10/30 11:12:40 I'm making this consistent with what is in the lib
#import("dart:coreimpl");
#import("dart:crypto");
#import("dart:isolate");

Powered by Google App Engine
This is Rietveld 408576698