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

Unified Diff: utils/archive/archive.dart

Issue 11358145: Update utils to new library syntax. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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 | « utils/apidoc/scripts/list_files.dart ('k') | utils/archive/entry.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/archive/archive.dart
===================================================================
--- utils/archive/archive.dart (revision 14646)
+++ utils/archive/archive.dart (working copy)
@@ -6,10 +6,10 @@
* The primary library file for the archive library. This is the only file that
* should be imported by clients.
*/
-#library("archive");
+library archive;
-#import("entry.dart", prefix: "entry");
-#import("reader.dart", prefix: "reader");
+import 'entry.dart' as entry;
+import 'reader.dart' as reader;
// TODO(nweiz): Remove this when 3071 is fixed.
/** An error raised by the archive library. */
« no previous file with comments | « utils/apidoc/scripts/list_files.dart ('k') | utils/archive/entry.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698